diff options
| author | bjculkin <bjculkin@WIT-136XG42.wvu-ad.wvu.edu> | 2017-04-03 10:50:00 -0400 |
|---|---|---|
| committer | bjculkin <bjculkin@WIT-136XG42.wvu-ad.wvu.edu> | 2017-04-03 10:50:00 -0400 |
| commit | 741d09bfc2323ea97fd587542fe395aa2923883f (patch) | |
| tree | 5c3362135ae26d1c6261f92ac395cb4e205d49dc /pom.xml | |
| parent | e4e28b578d5a8a61b2ed306fd9108f22492746cb (diff) | |
Work on utility functions
Diffstat (limited to 'pom.xml')
| -rw-r--r-- | pom.xml | 35 |
1 files changed, 28 insertions, 7 deletions
@@ -1,8 +1,29 @@ -<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>inflexion</groupId>
- <artifactId>inflexion</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <name>Inflexion</name>
- <description>Java based implementation of Damian Conway's pluralization algorithm.</description>
+<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>inflexion</groupId>
+ <artifactId>inflexion</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ <name>Inflexion</name>
+ <description>Java based implementation of Damian Conway's pluralization algorithm.</description>
+
+ <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>
</project>
\ No newline at end of file |
