summaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2008-08-20 11:33:56 +0200
committerAndreas Baumann <abaumann@yahoo.com>2008-08-20 11:33:56 +0200
commit271357c05b42f2a32250f20e55a6ac3d99c9529d (patch)
tree3a8d20df61dda0c85bf66519aad9873bcc79c0cd /pom.xml
downloadLuceneAnalyzer-271357c05b42f2a32250f20e55a6ac3d99c9529d.tar.gz
LuceneAnalyzer-271357c05b42f2a32250f20e55a6ac3d99c9529d.tar.bz2
initial load
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml57
1 files changed, 57 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..e15d4c2
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,57 @@
+<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>luceneanalyzer</groupId>
+ <artifactId>luceneanalyzer</artifactId>
+ <version>0.0.1</version>
+ <description>Lucene Index Analysis Tool</description>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.lucene</groupId>
+ <artifactId>lucene-core</artifactId>
+ <version>2.3.2</version>
+ </dependency>
+ <dependency>
+ <groupId>jargs</groupId>
+ <artifactId>jargs</artifactId>
+ <version>1.0.0</version>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>dependency-maven-plugin</artifactId>
+ <version>1.0</version>
+ <executions>
+ <execution>
+ <id>copy-dependencies</id>
+ <phase>package</phase>
+ <goals>
+ <goal>copy-dependencies</goal>
+ </goals>
+ <configuration>
+ <outputDirectory>${project.build.directory}/lib</outputDirectory>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
+</project>