Skip to content

Commit 6562f04

Browse files
author
David Hadka
committed
Convert to Maven project
1 parent b96f42b commit 6562f04

File tree

178 files changed

+137
-27
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

178 files changed

+137
-27
lines changed

.classpath

Lines changed: 23 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,27 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
3-
<classpathentry kind="src" path="src"/>
4-
<classpathentry including="META-INF/" kind="src" path=""/>
5-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
6-
<accessrules>
7-
<accessrule kind="accessible" pattern="javafx/**"/>
8-
<accessrule kind="accessible" pattern="com/sun/javafx/**"/>
9-
</accessrules>
3+
<classpathentry kind="src" output="target/classes" path="src/main/java">
4+
<attributes>
5+
<attribute name="optional" value="true"/>
6+
<attribute name="maven.pomderived" value="true"/>
7+
</attributes>
108
</classpathentry>
11-
<classpathentry kind="lib" path="lib/controlsfx-8.40.11.jar"/>
12-
<classpathentry kind="lib" path="lib/commons-io-2.5.jar"/>
13-
<classpathentry kind="lib" path="lib/commons-csv-1.4.jar"/>
14-
<classpathentry kind="lib" path="lib/commons-lang3-3.4.jar"/>
15-
<classpathentry kind="lib" path="lib/dom4j-2.0.0-RC1.jar"/>
16-
<classpathentry kind="output" path="bin"/>
9+
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
10+
<attributes>
11+
<attribute name="maven.pomderived" value="true"/>
12+
</attributes>
13+
</classpathentry>
14+
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
15+
<attributes>
16+
<attribute name="optional" value="true"/>
17+
<attribute name="maven.pomderived" value="true"/>
18+
</attributes>
19+
</classpathentry>
20+
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
21+
<attributes>
22+
<attribute name="maven.pomderived" value="true"/>
23+
</attributes>
24+
</classpathentry>
25+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
26+
<classpathentry kind="output" path="target/classes"/>
1727
</classpath>

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/release/
2+
/.settings/
3+
/target/
4+
*.csv
5+
*.arff

.project

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,14 @@
1010
<arguments>
1111
</arguments>
1212
</buildCommand>
13+
<buildCommand>
14+
<name>org.eclipse.m2e.core.maven2Builder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
1318
</buildSpec>
1419
<natures>
20+
<nature>org.eclipse.m2e.core.maven2Nature</nature>
1521
<nature>org.eclipse.jdt.core.javanature</nature>
1622
</natures>
1723
</projectDescription>

lib/commons-csv-1.4.jar

-39 KB
Binary file not shown.

lib/commons-io-2.5.jar

-204 KB
Binary file not shown.

lib/commons-lang3-3.4.jar

-424 KB
Binary file not shown.

lib/controlsfx-8.40.11.jar

-962 KB
Binary file not shown.

lib/dom4j-2.0.0-RC1.jar

-305 KB
Binary file not shown.

pom.xml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<?xml version="1.0" encoding="UTF-8" ?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>org.j3</groupId>
8+
<version>0.0.1-SNAPSHOT</version>
9+
10+
<dependencies>
11+
12+
<dependency>
13+
<groupId>org.apache.commons</groupId>
14+
<artifactId>commons-lang3</artifactId>
15+
<version>3.5</version>
16+
</dependency>
17+
<dependency>
18+
<groupId>org.apache.commons</groupId>
19+
<artifactId>commons-csv</artifactId>
20+
<version>1.4</version>
21+
</dependency>
22+
<dependency>
23+
<groupId>commons-io</groupId>
24+
<artifactId>commons-io</artifactId>
25+
<version>2.5</version>
26+
</dependency>
27+
<dependency>
28+
<groupId>org.controlsfx</groupId>
29+
<artifactId>controlsfx</artifactId>
30+
<version>8.40.12</version>
31+
</dependency>
32+
<dependency>
33+
<groupId>org.dom4j</groupId>
34+
<artifactId>dom4j</artifactId>
35+
<version>2.0.0</version>
36+
</dependency>
37+
</dependencies>
38+
39+
<artifactId>j3</artifactId>
40+
</project>
File renamed without changes.

0 commit comments

Comments
 (0)