diff options
author | Adrien Hopkins <ahopk127@my.yorku.ca> | 2021-03-27 16:36:39 -0500 |
---|---|---|
committer | Adrien Hopkins <ahopk127@my.yorku.ca> | 2021-03-27 16:36:39 -0500 |
commit | 2eee97c9e64dca79fc6b1614b304b398d25a7f4b (patch) | |
tree | f14d4237a3ce71d21d02b29719a5fb6595fe4091 /pom.xml | |
parent | fe4135a68cfed92ef336eec663e9c42c2c97dcbc (diff) |
Added automatic building with Gradle
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/pom.xml b/pom.xml deleted file mode 100644 index 5b3e468..0000000 --- a/pom.xml +++ /dev/null @@ -1,55 +0,0 @@ -<project xmlns="http://maven.apache.org/POM/4.0.0" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> - <modelVersion>4.0.0</modelVersion> - <groupId>org.unitConverter</groupId> - <artifactId>unitConverter</artifactId> - <version>0.1.0</version> - <name>Unit Converter</name> - <description>A Java unit converter inspired by GNU Units</description> - <build> - <sourceDirectory>src</sourceDirectory> - <plugins> - <plugin> - <artifactId>maven-compiler-plugin</artifactId> - <version>3.8.0</version> - <configuration> - <source>1.8</source> - <target>1.8</target> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-surefire-plugin</artifactId> - <configuration> - <useSystemClassLoader>false</useSystemClassLoader> - </configuration> - </plugin> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>exec-maven-plugin</artifactId> - <configuration> - <mainClass>org.unitConverter.converterGUI.UnitConverterGUI</mainClass> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-jar-plugin</artifactId> - <configuration> - <archive> - <manifest> - <mainClass>org.unitConverter.converterGUI.UnitConverterGUI</mainClass> - </manifest> - </archive> - </configuration> - </plugin> - </plugins> - </build> - <dependencies> - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <version>4.11</version> - </dependency> - </dependencies> -</project> |