summaryrefslogtreecommitdiff
path: root/RGens/pom.xml
diff options
context:
space:
mode:
authorBenjamin J. Culkin <bjculkin@mix.wvu.edu>2018-01-16 22:23:44 -0400
committerBenjamin J. Culkin <bjculkin@mix.wvu.edu>2018-01-16 22:23:44 -0400
commit9675e56458f701cca1a070a9700dcf30edf9ef66 (patch)
tree7b14382432e66c3837439fcdf3def926fcfb8718 /RGens/pom.xml
parent0c8618df90260fdb2213286fce274d0bc58f394a (diff)
Update
Diffstat (limited to 'RGens/pom.xml')
-rw-r--r--RGens/pom.xml43
1 files changed, 31 insertions, 12 deletions
diff --git a/RGens/pom.xml b/RGens/pom.xml
index 9926e95..b0de95c 100644
--- a/RGens/pom.xml
+++ b/RGens/pom.xml
@@ -2,6 +2,29 @@
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>RGens</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ <packaging>jar</packaging>
+
+ <name>RGens</name>
+ <url>http://maven.apache.org</url>
+
+ <properties>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ </properties>
+
+ <distributionManagement>
+ <snapshotRepository>
+ <id>ossrh</id>
+ <url>https://oss.sonatype.org/content/repositories/snapshots</url>
+ </snapshotRepository>
+ <repository>
+ <id>ossrh</id>
+ <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
+ </repository>
+ </distributionManagement>
+
<build>
<plugins>
<plugin>
@@ -11,20 +34,25 @@
<target>1.8</target>
</configuration>
</plugin>
+
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
+
<configuration>
<mainClass>bjc.rgens.newparser.RGrammarTest</mainClass>
+
<arguments>
</arguments>
</configuration>
</plugin>
</plugins>
+
<resources>
<resource>
<directory>data/</directory>
+
<includes>
<include>**/*.gram</include>
<include>**/*.cfg</include>
@@ -33,34 +61,25 @@
</resources>
</build>
- <groupId>bjc</groupId>
- <artifactId>RGens</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <packaging>jar</packaging>
-
- <name>RGens</name>
- <url>http://maven.apache.org</url>
-
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
-
<dependencies>
<dependency>
<groupId>bjc</groupId>
<artifactId>BJC-Utils2</artifactId>
<version>0.1.0-SNAPSHOT</version>
</dependency>
+
<dependency>
<groupId>com.github.mifmif</groupId>
<artifactId>generex</artifactId>
<version>1.0.2</version>
</dependency>
+
<dependency>
<groupId>edu.gatech.gtri.bk-tree</groupId>
<artifactId>bk-tree</artifactId>
<version>1.0</version>
</dependency>
+
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>