summaryrefslogtreecommitdiff
path: root/morfologik-stemming/pom.xml
diff options
context:
space:
mode:
authorAndrej Shadura <andrewsh@debian.org>2018-12-26 20:22:36 +0100
committerAndrej Shadura <andrewsh@debian.org>2018-12-26 20:22:36 +0100
commit991420c6b1ebc1f041818ffeaee65e5dcaa1581d (patch)
treef8537e1dc33fcdbaaebe0801a7598c2d7f5baea2 /morfologik-stemming/pom.xml
parent0abd94bb0cc3d7cc07da074acccffcfbc27b0352 (diff)
Import Upstream version 1.9.0+dfsg
Diffstat (limited to 'morfologik-stemming/pom.xml')
-rw-r--r--morfologik-stemming/pom.xml71
1 files changed, 71 insertions, 0 deletions
diff --git a/morfologik-stemming/pom.xml b/morfologik-stemming/pom.xml
new file mode 100644
index 0000000..475b9da
--- /dev/null
+++ b/morfologik-stemming/pom.xml
@@ -0,0 +1,71 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<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">
+
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.carrot2</groupId>
+ <artifactId>morfologik-parent</artifactId>
+ <version>1.9.0</version>
+ <relativePath>../pom.xml</relativePath>
+ </parent>
+
+ <artifactId>morfologik-stemming</artifactId>
+ <packaging>jar</packaging>
+
+ <name>Morfologik Stemming APIs</name>
+ <description>Morfologik Stemming APIs.</description>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.carrot2</groupId>
+ <artifactId>morfologik-fsa</artifactId>
+ <version>${project.version}</version>
+
+ <exclusions>
+ <!-- Not needed at runtime. -->
+ <exclusion>
+ <groupId>com.carrotsearch</groupId>
+ <artifactId>hppc</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+
+ <dependency>
+ <groupId>com.carrotsearch</groupId>
+ <artifactId>junit-benchmarks</artifactId>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.easytesting</groupId>
+ <artifactId>fest-assert-core</artifactId>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <defaultGoal>install</defaultGoal>
+
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <archive>
+ <manifest>
+ <addClasspath>true</addClasspath>
+ </manifest>
+ </archive>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>