summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrien Hopkins <masterofnumbers17@gmail.com>2019-10-15 17:18:22 -0400
committerAdrien Hopkins <masterofnumbers17@gmail.com>2019-10-15 17:18:22 -0400
commit074d48df131f073965fa1a1106c4be1bed9d2b51 (patch)
tree152727466ca2f4d6a281946f0b8bf07edf8ebe50
parentdc224f9fd9333a9921d3b94f49a169c139858754 (diff)
Moved project out of Maven.
-rw-r--r--.classpath1
-rw-r--r--.project6
-rw-r--r--pom.xml55
3 files changed, 1 insertions, 61 deletions
diff --git a/.classpath b/.classpath
index ef141e6..60b8884 100644
--- a/.classpath
+++ b/.classpath
@@ -5,6 +5,7 @@
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
+ <classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/5"/>
<classpathentry kind="src" output="target/classes" path="src">
<attributes>
<attribute name="optional" value="true"/>
diff --git a/.project b/.project
index 56f686e..656186b 100644
--- a/.project
+++ b/.project
@@ -10,14 +10,8 @@
<arguments>
</arguments>
</buildCommand>
- <buildCommand>
- <name>org.eclipse.m2e.core.maven2Builder</name>
- <arguments>
- </arguments>
- </buildCommand>
</buildSpec>
<natures>
- <nature>org.eclipse.m2e.core.maven2Nature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
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>