commit a0132ba8190dd39aab3cf54001ef0bfab0600c2d
parent d68ee4363a7b25f747f2b58b3af6e909430e8b99
Author: Dan Callaghan <djc@djc.id.au>
Date: Sun, 16 May 2010 20:59:09 +1000
converted to standalone module
Diffstat:
M | pom.xml | | | 67 | +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------ |
1 file changed, 61 insertions(+), 6 deletions(-)
diff --git a/pom.xml b/pom.xml
@@ -1,28 +1,83 @@
<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>au.id.djc</groupId>
<artifactId>multilingual</artifactId>
<packaging>jar</packaging>
- <name>Multilingual Search</name>
+ <version>1.0-SNAPSHOT</version>
+
+ <name>Lucene Multilingual</name>
<description>Lucene classes for working with text in multiple languages</description>
- <parent>
- <groupId>au.com.miskinhill.search</groupId>
- <artifactId>search</artifactId>
- <version>1.0-SNAPSHOT</version>
- </parent>
+ <url>http://code.djc.id.au/</url>
+
+ <distributionManagement>
+ <repository>
+ <id>code.djc.id.au</id>
+ <name>code.djc.id.au Maven repository</name>
+ <url>dav:http://code.djc.id.au/maven2/</url>
+ </repository>
+ </distributionManagement>
+
+ <scm>
+ <url>http://code.djc.id.au/hg/lucene-multilingual-master/</url>
+ <connection>scm:hg:http://code.djc.id.au/hg/lucene-multilingual-master/</connection>
+ <developerConnection>scm:hg:file://${project.basedir}</developerConnection>
+ </scm>
+
+ <build>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.6</source>
+ <target>1.6</target>
+ <showDeprecation>true</showDeprecation>
+ <showWarnings>true</showWarnings>
+ <encoding>UTF-8</encoding>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-resources-plugin</artifactId>
+ <configuration>
+ <encoding>UTF-8</encoding>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-source-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>attach-sources</id>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ </build>
+
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
+ <version>4.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-core</artifactId>
+ <version>2.4.0</version>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymockclassextension</artifactId>
+ <version>2.5.2</version>
</dependency>
</dependencies>
</project>