diff options
author | Adrien Hopkins <ahopk127@my.yorku.ca> | 2021-05-22 14:03:45 -0500 |
---|---|---|
committer | Adrien Hopkins <ahopk127@my.yorku.ca> | 2021-05-22 14:03:45 -0500 |
commit | 277500e27010839e03659870bc5890f1535aa8c8 (patch) | |
tree | fff893611dfd82aca4af5e677ab782045d5543d9 | |
parent | 782cf0c76e09abab1c2e11288d610330f383e732 (diff) |
Gradle changes
-rw-r--r-- | bin/.gitignore | 2 | ||||
-rw-r--r-- | bin/main/.gitignore | 5 | ||||
-rw-r--r-- | bin/test/.gitignore | 1 | ||||
-rw-r--r-- | build.gradle | 2 |
4 files changed, 3 insertions, 7 deletions
diff --git a/bin/.gitignore b/bin/.gitignore new file mode 100644 index 0000000..7eed456 --- /dev/null +++ b/bin/.gitignore @@ -0,0 +1,2 @@ +/main/ +/test/ diff --git a/bin/main/.gitignore b/bin/main/.gitignore deleted file mode 100644 index e5fcaae..0000000 --- a/bin/main/.gitignore +++ /dev/null @@ -1,5 +0,0 @@ -/about.txt -/org/ -/dimensionfile.txt -/metric_exceptions.txt -/unitsfile.txt diff --git a/bin/test/.gitignore b/bin/test/.gitignore deleted file mode 100644 index cf1db2e..0000000 --- a/bin/test/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/org/ diff --git a/build.gradle b/build.gradle index 1a2ef44..2922695 100644 --- a/build.gradle +++ b/build.gradle @@ -22,7 +22,7 @@ dependencies { jar { manifest { - attributes 'Main-Class': "org.unitConverter.converterGUI.UnitConverterGUI" + attributes 'Main-Class': mainClassName } } |