179 lines
4.8 KiB
XML
179 lines
4.8 KiB
XML
<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/maven-v4_0_0.xsd">
|
|
<parent>
|
|
<groupId>com.sequencelogic</groupId>
|
|
<artifactId>scorewalker</artifactId>
|
|
<version>2.3.0</version>
|
|
<!-- relative path must be specified to pick up parent pom changes, otherwise
|
|
the parent POM must first be installed in the local repo-->
|
|
<relativePath>../</relativePath>
|
|
</parent>
|
|
<properties>
|
|
<jdk.version>1.8</jdk.version>
|
|
</properties>
|
|
|
|
<organization>
|
|
<name>Sequencelogic, LLC</name>
|
|
<url>http://www.sequencelogic.net</url>
|
|
</organization>
|
|
<contributors>
|
|
<contributor>
|
|
<name>Chris Diesch</name>
|
|
<email>cdiesch@sequencelogic.net</email>
|
|
<roles>
|
|
<role>Developer</role>
|
|
</roles>
|
|
</contributor>
|
|
<contributor>
|
|
<name>Dave Gustafson</name>
|
|
<email>daveg@sequencelogic.net</email>
|
|
<roles>
|
|
<role>Developer</role>
|
|
</roles>
|
|
</contributor>
|
|
</contributors>
|
|
<name>LuceneClassifier</name>
|
|
|
|
<groupId>com.sequencelogic.walkerclassifier</groupId>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>walker-classifier</artifactId>
|
|
<version>2.3.0</version>
|
|
|
|
<packaging>jar</packaging>
|
|
<url>http://maven.apache.org</url>
|
|
|
|
<build>
|
|
<finalName>walker-classifier-one-jar</finalName>
|
|
<sourceDirectory>src/main/java</sourceDirectory>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<filtering>true</filtering>
|
|
<includes>
|
|
<include>**/*.properties</include>
|
|
<include>**/*.png</include>
|
|
</includes>
|
|
</resource>
|
|
</resources>
|
|
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.6.1</version>
|
|
<configuration>
|
|
<source>${jdk.version}</source>
|
|
<target>${jdk.version}</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<version>3.0.0</version>
|
|
<configuration>
|
|
<appendAssemblyId>false</appendAssemblyId>
|
|
<archive>
|
|
<manifest>
|
|
<mainClass>com.sequencelogic.walkerclassifier.WalkerClassifier</mainClass>
|
|
</manifest>
|
|
</archive>
|
|
<descriptorRefs>
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
</descriptorRefs>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>jar-assembly</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>single</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>com.sequencelogic</groupId>
|
|
<artifactId>diffutils</artifactId>
|
|
<version>1.3.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.sequencelogic</groupId>
|
|
<artifactId>classification</artifactId>
|
|
<version>1.0.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.sequencelogic.walkercommon</groupId>
|
|
<artifactId>walker-common</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.12</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.dt</groupId>
|
|
<artifactId>dtcore</artifactId>
|
|
<version>1.1.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.dt</groupId>
|
|
<artifactId>dtdb</artifactId>
|
|
<version>1.0.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>log4j</groupId>
|
|
<artifactId>log4j</artifactId>
|
|
<version>1.2.16</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.dt</groupId>
|
|
<artifactId>dtcs</artifactId>
|
|
<version>1.1.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.lucene</groupId>
|
|
<artifactId>lucene-core</artifactId>
|
|
<version>3.0.2</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.lucene</groupId>
|
|
<artifactId>lucene-queries</artifactId>
|
|
<version>3.0.2</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-core</artifactId>
|
|
<version>2.4.6</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.json</groupId>
|
|
<artifactId>json</artifactId>
|
|
<version>20140107</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
<artifactId>jackson-datatype-jsr310</artifactId>
|
|
<version>2.4.6</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|