65 lines
1.8 KiB
XML
65 lines
1.8 KiB
XML
|
<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/xsd/maven-4.0.0.xsd">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<groupId>org.wltea.ik-analyzer</groupId>
|
||
|
<artifactId>ik-analyzer-solr</artifactId>
|
||
|
<version>7.x</version>
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<name>ik-analyzer-solr</name>
|
||
|
<url>http://code.google.com/p/ik-analyzer/</url>
|
||
|
|
||
|
<properties>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
|
||
|
<lucene.version>7.3.0</lucene.version>
|
||
|
|
||
|
<javac.src.version>1.8</javac.src.version>
|
||
|
<javac.target.version>1.8</javac.target.version>
|
||
|
<maven.compiler.plugin.version>3.3</maven.compiler.plugin.version>
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
<version>4.11</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.apache.lucene</groupId>
|
||
|
<artifactId>lucene-core</artifactId>
|
||
|
<version>${lucene.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.apache.lucene</groupId>
|
||
|
<artifactId>lucene-queryparser</artifactId>
|
||
|
<version>${lucene.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.apache.lucene</groupId>
|
||
|
<artifactId>lucene-analyzers-common</artifactId>
|
||
|
<version>${lucene.version}</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<target>${javac.src.version}</target>
|
||
|
<source>${javac.target.version}</source>
|
||
|
</configuration>
|
||
|
<version>${maven.compiler.plugin.version}</version>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
</project>
|
||
|
|