summaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorAdrien Hopkins <adrien.p.hopkins@gmail.com>2019-10-15 21:41:12 +0000
committerAdrien Hopkins <adrien.p.hopkins@gmail.com>2019-10-15 21:41:12 +0000
commit6392274ccc360c241cf31b10f1489cd6fc416eb8 (patch)
tree4cc27769316255030685fbe16fd9410d0b33e64f /pom.xml
parent074d48df131f073965fa1a1106c4be1bed9d2b51 (diff)
parentbb844c776230a2d51ec1fbdacec43148b9c5b424 (diff)
Merge branch 'revert-074d48df' into 'develop'
Revert "Moved project out of Maven." See merge request abcd_127/unit-converter!1
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml55
1 files changed, 55 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..5b3e468
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,55 @@
+<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>