summaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorbjculkin <bjculkin@WIT-136XG42.wvu-ad.wvu.edu>2017-04-03 10:50:00 -0400
committerbjculkin <bjculkin@WIT-136XG42.wvu-ad.wvu.edu>2017-04-03 10:50:00 -0400
commit741d09bfc2323ea97fd587542fe395aa2923883f (patch)
tree5c3362135ae26d1c6261f92ac395cb4e205d49dc /pom.xml
parente4e28b578d5a8a61b2ed306fd9108f22492746cb (diff)
Work on utility functions
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml35
1 files changed, 28 insertions, 7 deletions
diff --git a/pom.xml b/pom.xml
index 77538c2..b1364e4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -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