summaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorAdrien Hopkins <ahopk127@my.yorku.ca>2021-05-22 14:05:44 -0500
committerAdrien Hopkins <ahopk127@my.yorku.ca>2021-05-22 14:05:44 -0500
commit8645325803f8580c823cc4c2cec2ad76906b52bb (patch)
treefff893611dfd82aca4af5e677ab782045d5543d9 /pom.xml
parent184b7cc697ffc2dcbd49cfb3d0fd7b14bdac8803 (diff)
parent277500e27010839e03659870bc5890f1535aa8c8 (diff)
Merge branch 'develop' into feature-settings-tab
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml55
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>