summaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorBenjamin J. Culkin <bjculkin@mix.wvu.edu>2019-01-05 10:57:49 -0400
committerBenjamin J. Culkin <bjculkin@mix.wvu.edu>2019-01-05 11:01:04 -0400
commit49722f7c7f3ebc2e1fa616adbabace419d08d0d2 (patch)
treea73dff53622dd0933e651741ae557ee6c12628f8 /pom.xml
parent8b83d0891ee267da498beb9eb28dc69f959fac0d (diff)
Convert to Maven II
This gets the main script working, and the pom compiling things. To get it working right, two options were added for outputting normal & error outputs to files instead of the standard streams (System.out & System.err)
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml11
1 files changed, 11 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 86284491..19eeb12d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -11,6 +11,16 @@
<target>1.8</target>
</configuration>
</plugin>
+
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>exec-maven-plugin</artifactId>
+ <version>1.5.0</version>
+
+ <configuration>
+ <mainClass>${main.class}</mainClass>
+ </configuration>
+ </plugin>
</plugins>
<resources>
@@ -33,6 +43,7 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ <main.class>AffixLister</main.class>
</properties>
<dependencies>