summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin J. Culkin <bjculkin@mix.wvu.edu>2019-01-05 10:16:25 -0400
committerBenjamin J. Culkin <bjculkin@mix.wvu.edu>2019-01-05 10:19:37 -0400
commit53427e7935e2bba6955b9647fa4d9367fce6d77d (patch)
treee4ba1f66a0f15215b541530e09b9f8abfb583368
parentc2a8954b3eac1b15cc27ccb962c249c2dfd7bacf (diff)
Begin maven conversion
Begin converting the project to use maven for compiling/running java so as to allow easier splitting of AffixLister.java into its constituent classes without having to continuously tweak the script files
-rw-r--r--.gitignore1
-rw-r--r--pom.xml45
2 files changed, 46 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index f151ca11..ab2a166a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,3 +3,4 @@ bin/
output/
tags
synfiles
+target/
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 00000000..86284491
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,45 @@
+
+<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>
+
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.8</source>
+ <target>1.8</target>
+ </configuration>
+ </plugin>
+ </plugins>
+
+ <resources>
+ <resource>
+ <directory>data/</directory>
+
+ <includes>
+ <include>**/*.txt</include>
+ </includes>
+ </resource>
+ </resources>
+ </build>
+
+ <groupId>bjc</groupId>
+ <artifactId>tlIITools</artifactId>
+ <version>1.0.0</version>
+ <packaging>jar</packaging>
+
+ <name>tlIITools</name>
+
+ <properties>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ </properties>
+
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.12</version>
+ </dependency>
+ </dependencies>
+</project>