54 lines
1.5 KiB
XML
54 lines
1.5 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">
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
|
||
|
|
<groupId>org.tartarus</groupId>
|
||
|
|
<artifactId>snowball</artifactId>
|
||
|
|
<packaging>jar</packaging>
|
||
|
|
<version>@VERSION@</version>
|
||
|
|
|
||
|
|
<name>Snowball</name>
|
||
|
|
<inceptionYear>2002</inceptionYear>
|
||
|
|
<url>http://snowball.tartarus.org/</url>
|
||
|
|
<description>Snowball is a small string processing language designed for creating stemming algorithms for use in Information Retrieval.</description>
|
||
|
|
|
||
|
|
<properties>
|
||
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
|
</properties>
|
||
|
|
|
||
|
|
<!--dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>junit</groupId>
|
||
|
|
<artifactId>junit</artifactId>
|
||
|
|
<version>4.8</version>
|
||
|
|
<scope>test</scope>
|
||
|
|
</dependency>
|
||
|
|
</dependencies-->
|
||
|
|
|
||
|
|
<build>
|
||
|
|
|
||
|
|
<directory>target</directory>
|
||
|
|
|
||
|
|
<sourceDirectory>java</sourceDirectory>
|
||
|
|
<testSourceDirectory>java</testSourceDirectory>
|
||
|
|
|
||
|
|
<outputDirectory>target/classes</outputDirectory>
|
||
|
|
<testOutputDirectory>target/test-classes</testOutputDirectory>
|
||
|
|
|
||
|
|
<plugins>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
|
<version>3.0</version>
|
||
|
|
<configuration>
|
||
|
|
<fork>true</fork>
|
||
|
|
<meminitial>128m</meminitial>
|
||
|
|
<maxmem>512m</maxmem>
|
||
|
|
<source>1.6</source>
|
||
|
|
<target>1.6</target>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
</plugins>
|
||
|
|
</build>
|
||
|
|
</project>
|