diff options
| author | Benjamin J. Culkin <bjculkin@mix.wvu.edu> | 2019-01-05 10:57:49 -0400 |
|---|---|---|
| committer | Benjamin J. Culkin <bjculkin@mix.wvu.edu> | 2019-01-05 11:01:04 -0400 |
| commit | 49722f7c7f3ebc2e1fa616adbabace419d08d0d2 (patch) | |
| tree | a73dff53622dd0933e651741ae557ee6c12628f8 /pom.xml | |
| parent | 8b83d0891ee267da498beb9eb28dc69f959fac0d (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.xml | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -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> |
