2018-05-10 01:52:58 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2018-05-11 01:54:01 -04:00
|
|
|
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>
|
2018-05-10 01:52:58 -04:00
|
|
|
|
2018-05-11 01:54:01 -04:00
|
|
|
<groupId>com.github.magese</groupId>
|
2018-07-23 02:53:45 -04:00
|
|
|
<artifactId>ik-analyzer</artifactId>
|
2019-02-27 20:46:10 -05:00
|
|
|
<version>7.7.1</version>
|
2018-05-11 01:54:01 -04:00
|
|
|
<packaging>jar</packaging>
|
2018-05-10 01:52:58 -04:00
|
|
|
|
2018-05-11 01:54:01 -04:00
|
|
|
<name>ik-analyzer-solr7</name>
|
|
|
|
<url>http://code.google.com/p/ik-analyzer/</url>
|
2019-02-27 20:46:10 -05:00
|
|
|
<description>IK-Analyzer for solr7.7.1</description>
|
2018-05-10 01:52:58 -04:00
|
|
|
|
2018-05-11 01:54:01 -04:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2019-02-27 20:46:10 -05:00
|
|
|
<lucene.version>7.7.1</lucene.version>
|
2018-05-11 01:54:01 -04:00
|
|
|
<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>
|
2018-05-10 01:52:58 -04:00
|
|
|
|
2018-05-11 01:54:01 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.11</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2018-05-10 01:52:58 -04:00
|
|
|
|
2018-05-11 01:54:01 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.lucene</groupId>
|
|
|
|
<artifactId>lucene-core</artifactId>
|
|
|
|
<version>${lucene.version}</version>
|
|
|
|
</dependency>
|
2018-05-10 01:52:58 -04:00
|
|
|
|
2018-05-11 01:54:01 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.lucene</groupId>
|
|
|
|
<artifactId>lucene-queryparser</artifactId>
|
|
|
|
<version>${lucene.version}</version>
|
|
|
|
</dependency>
|
2018-05-10 01:52:58 -04:00
|
|
|
|
2018-05-11 01:54:01 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.lucene</groupId>
|
|
|
|
<artifactId>lucene-analyzers-common</artifactId>
|
|
|
|
<version>${lucene.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2018-05-10 01:52:58 -04:00
|
|
|
|
2018-05-11 01:54:01 -04:00
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>The Apache Software License, Version 2.0</name>
|
|
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
<scm>
|
|
|
|
<tag>master</tag>
|
|
|
|
<url>https://github.com/magese/ik-analyzer-solr7</url>
|
|
|
|
<connection>scm:git:git@github.com:magese/ik-analyzer-solr7.git</connection>
|
|
|
|
<developerConnection>scm:git:git@github.com:magese/ik-analyzer-solr7.git</developerConnection>
|
|
|
|
</scm>
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<name>magese</name>
|
|
|
|
<email>magese@live.cn</email>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
2018-05-10 01:52:58 -04:00
|
|
|
|
2018-05-11 01:54:01 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.5.1</version>
|
|
|
|
<configuration>
|
|
|
|
<source>${javac.src.version}</source>
|
|
|
|
<target>${javac.src.version}</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>2.10.4</version>
|
|
|
|
<configuration>
|
|
|
|
<aggregate>true</aggregate>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
<defaultGoal>compile</defaultGoal>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>release</id>
|
|
|
|
<distributionManagement>
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>oss</id>
|
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
<repository>
|
|
|
|
<id>oss</id>
|
|
|
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
|
|
|
</repository>
|
|
|
|
</distributionManagement>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<!-- Source -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<version>3.0.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<!-- Javadoc -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>2.10.4</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<!-- Gpg Signature -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
<version>1.6</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>sign-artifacts</id>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>sign</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2018-05-10 01:52:58 -04:00
|
|
|
</project>
|
|
|
|
|