pom.xml revision fcb68bae47907ba23c545e379c81c3ee6e19f778
<?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>
<artifactId>opengrok-indexer</artifactId>
<packaging>jar</packaging>
<version>0.10-SNAPSHOT</version>
<name>OpenGrok Indexer</name>
<parent>
<artifactId>opengrok</artifactId>
<version>0.10-SNAPSHOT</version>
</parent>
<build>
<resources>
<resource>
<excludes><exclude>*.java</exclude></excludes>
</resource>
<resource>
<excludes><exclude>*.java</exclude></excludes>
</resource>
<resource>
<excludes>
<exclude>*.java</exclude>
<exclude>*.html</exclude>
</excludes>
</resource>
<resource>
<excludes>
<exclude>*.java</exclude>
<exclude>*.html</exclude>
</excludes>
</resource>
</resources>
<testResources>
<testResource>
<excludes><exclude>*.java</exclude></excludes>
</testResource>
</testResources>
<plugins>
<plugin>
<artifactId>maven-jflex-plugin</artifactId>
<version>1.4.3</version>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<lexDefinitions>
<lexDefinition>/src/org/opensolaris/opengrok/analysis/document/TroffFullTokenizer.lex</lexDefinition>
<lexDefinition>/src/org/opensolaris/opengrok/analysis/fortran/FortranSymbolTokenizer.lex</lexDefinition>
<lexDefinition>/src/org/opensolaris/opengrok/analysis/plain/PlainSymbolTokenizer.lex</lexDefinition>
<lexDefinition>/src/org/opensolaris/opengrok/analysis/python/PythonSymbolTokenizer.lex</lexDefinition>
<lexDefinition>/src/org/opensolaris/opengrok/analysis/python/PerlSymbolTokenizer.lex</lexDefinition>
<lexDefinition>/src/org/opensolaris/opengrok/search/context/HistoryLineTokenizer.lex</lexDefinition>
</lexDefinitions>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>build-config-files</id>
<phase>process-test-classes</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks unless="maven.test.skip">
<ant antfile="${basedir}/build.xml">
<target name="-post-compile-test"/>
</ant>
</tasks>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<!-- Test helper class with name that confuses surefire -->
</excludes>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<artifactId>bcel</artifactId>
</dependency>
<dependency>
<artifactId>lucene-core</artifactId>
</dependency>
<dependency>
<artifactId>lucene-spellchecker</artifactId>
</dependency>
<dependency>
<artifactId>servlet-api</artifactId>
</dependency>
<dependency>
<groupId>oro</groupId>
<artifactId>oro</artifactId>
</dependency>
<dependency>
<artifactId>jrcs</artifactId>
</dependency>
<dependency>
<artifactId>ant</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<artifactId>derby</artifactId>
<scope>test</scope>
</dependency>
<!-- <dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derbyclient</artifactId>
<scope>run</scope>
</dependency>
-->
</dependencies>
</project>