lucene-multilingual

Multilingual enhancements for the Lucene text search library
git clone https://code.djc.id.au/git/lucene-multilingual/

pom.xml (3277B) - raw

      1 <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">
      2   <modelVersion>4.0.0</modelVersion>
      3 
      4   <groupId>au.id.djc</groupId>
      5   <artifactId>lucene-multilingual</artifactId>
      6   <packaging>jar</packaging>
      7   <version>1.2-SNAPSHOT</version>
      8 
      9   <name>Lucene Multilingual</name>
     10   <description>Lucene classes for working with text in multiple languages</description>
     11   <url>http://code.djc.id.au/</url>
     12     
     13     <distributionManagement>
     14         <repository>
     15             <id>code.djc.id.au</id>
     16             <name>code.djc.id.au Maven repository</name>
     17             <url>dav:http://code.djc.id.au/maven2/</url>
     18         </repository>
     19     </distributionManagement>
     20     
     21     <scm>
     22         <url>https://github.com/danc86/lucene-multilingual/</url>
     23         <connection>scm:git:git://github.com/danc86/lucene-multilingual.git</connection>
     24         <developerConnection>scm:git:file://${project.basedir}</developerConnection>
     25     </scm>
     26 
     27     <build>
     28         <extensions>
     29             <extension>
     30                 <groupId>org.apache.maven.wagon</groupId>
     31                 <artifactId>wagon-webdav-jackrabbit</artifactId>
     32                 <version>2.2</version>
     33             </extension>
     34         </extensions>
     35         <pluginManagement>
     36             <plugins>
     37                 <plugin>
     38                     <groupId>org.apache.maven.plugins</groupId>
     39                     <artifactId>maven-compiler-plugin</artifactId>
     40                     <configuration>
     41                         <source>1.6</source>
     42                         <target>1.6</target>
     43                         <showDeprecation>true</showDeprecation>
     44                         <showWarnings>true</showWarnings>
     45                         <encoding>UTF-8</encoding>
     46                     </configuration>
     47                 </plugin>
     48                 <plugin>
     49                     <groupId>org.apache.maven.plugins</groupId>
     50                     <artifactId>maven-resources-plugin</artifactId>
     51                     <configuration>
     52                         <encoding>UTF-8</encoding>
     53                     </configuration>
     54                 </plugin>
     55                 <plugin>
     56                     <groupId>org.apache.maven.plugins</groupId>
     57                     <artifactId>maven-source-plugin</artifactId>
     58                     <executions>
     59                         <execution>
     60                             <id>attach-sources</id>
     61                             <goals>
     62                                 <goal>jar</goal>
     63                             </goals>
     64                         </execution>
     65                     </executions>
     66                 </plugin>
     67             </plugins>
     68         </pluginManagement>
     69     </build>
     70 
     71   <dependencies>
     72   	<dependency>
     73   		<groupId>junit</groupId>
     74   		<artifactId>junit</artifactId>
     75         <version>4.10</version>
     76   		<scope>test</scope>
     77   	</dependency>
     78   	<dependency>
     79   		<groupId>org.apache.lucene</groupId>
     80   		<artifactId>lucene-core</artifactId>
     81         <version>3.6.0</version>
     82   	</dependency>
     83   	<dependency>
     84   		<groupId>org.easymock</groupId>
     85   		<artifactId>easymock</artifactId>
     86         <version>3.1</version>
     87         <scope>test</scope>
     88   	</dependency>
     89   </dependencies>
     90 </project>