diff options
| author | Benjamin J. Culkin <bjculkin@mix.wvu.edu> | 2017-09-15 15:21:34 -0300 |
|---|---|---|
| committer | Benjamin J. Culkin <bjculkin@mix.wvu.edu> | 2017-09-15 15:21:34 -0300 |
| commit | 46cb1f6c030991d314d0ef1fafa53e53ef3e03c9 (patch) | |
| tree | 35944ecbd4c7e4af3aecc30520dfa76f636cbdb6 /pom.xml | |
| parent | eb78499c6f5c991d6abaca766ae0831e411c74af (diff) | |
Format
Diffstat (limited to 'pom.xml')
| -rw-r--r-- | pom.xml | 15 |
1 files changed, 14 insertions, 1 deletions
@@ -1,14 +1,19 @@ <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>bjc</groupId> <artifactId>inflexion</artifactId> <version>0.0.1-SNAPSHOT</version> + <name>Inflexion</name> <description>Java based implementation of Damian Conway's Lingua::EN::Inflexion module for perl</description> + <properties> <main.class>bjc.inflexion.examples.InflexionTester</main.class> </properties> + <licenses> <license> <name>Apache License, Version 2.0</name> @@ -26,36 +31,44 @@ <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> + <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> + <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.5.0</version> + <configuration> <executable>java</executable> + <arguments> <argument>-agentlib:jdwp=transport=dt_socket,server=y,suspend=n</argument> <argument>-classpath</argument> <classpath /> <argument>${main.class}</argument> </arguments> + <mainClass>${main.class}</mainClass> </configuration> </plugin> </plugins> + <resources> <resource> <directory>data/</directory> + <includes> <include>**/*.txt</include> </includes> </resource> </resources> </build> + <dependencies> <dependency> <groupId>org.apache.commons</groupId> @@ -63,4 +76,4 @@ <version>1.13</version> </dependency> </dependencies> -</project>
\ No newline at end of file +</project> |
