pom.xml revision 381a9b85cf2c73401fc1bff06c2e0d86389a5e88
<?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>
<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/search/context/HistoryLineTokenizer.lex</lexDefinition>
</lexDefinitions>
</configuration>
</execution>
</executions>
</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>
</dependencies>
</project>