You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

pom.xml 3.4 kB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.indexea.ideaseg</groupId>
  7. <artifactId>ideaseg</artifactId>
  8. <version>${revision}</version>
  9. <packaging>pom</packaging>
  10. <properties>
  11. <revision>1.0</revision>
  12. <encoding>UTF-8</encoding>
  13. <java.version>8</java.version>
  14. <lucene.version>8.7.0</lucene.version>
  15. <assembly.version>3.4.2</assembly.version>
  16. </properties>
  17. <name>ideaseg</name>
  18. <description>a chinese tokenizer for elasticsearch and opensearch , based on HanLP.</description>
  19. <url>https://gitee.com/indexea/ideaseg</url>
  20. <licenses>
  21. <license>
  22. <name>The Apache Software License, Version 2.0</name>
  23. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  24. </license>
  25. </licenses>
  26. <scm>
  27. <connection>scm:git:git@gitee.com:indexea/ideaseg.git</connection>
  28. <developerConnection>scm:git:git@gitee.com:indexea/ideaseg.git</developerConnection>
  29. <url>git@gitee.com:indexea/ideaseg.git</url>
  30. </scm>
  31. <distributionManagement>
  32. <snapshotRepository>
  33. <id>snapshot</id>
  34. <name>IdeaSeg SnapShot</name>
  35. <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
  36. </snapshotRepository>
  37. <repository>
  38. <id>release</id>
  39. <name>IdeaSeg Release</name>
  40. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  41. </repository>
  42. </distributionManagement>
  43. <build>
  44. <sourceDirectory>src/main/java</sourceDirectory>
  45. <resources>
  46. <resource>
  47. <directory>src/main/resources</directory>
  48. </resource>
  49. <resource>
  50. <directory>src/main/java</directory>
  51. <excludes>
  52. <exclude>**/*.java</exclude>
  53. </excludes>
  54. </resource>
  55. </resources>
  56. <plugins>
  57. <!-- Compiler -->
  58. <plugin>
  59. <groupId>org.apache.maven.plugins</groupId>
  60. <artifactId>maven-compiler-plugin</artifactId>
  61. <version>3.10.1</version>
  62. <configuration>
  63. <source>${java.version}</source>
  64. <target>${java.version}</target>
  65. <encoding>${encoding}</encoding>
  66. </configuration>
  67. </plugin>
  68. <plugin>
  69. <groupId>org.apache.maven.plugins</groupId>
  70. <artifactId>maven-jar-plugin</artifactId>
  71. <version>3.3.0</version>
  72. <configuration>
  73. <excludes>
  74. <exclude>**/plugin.xml</exclude>
  75. </excludes>
  76. </configuration>
  77. </plugin>
  78. </plugins>
  79. </build>
  80. <modules>
  81. <module>core</module>
  82. <module>opensearch</module>
  83. <module>elasticsearch</module>
  84. </modules>
  85. <developers>
  86. <developer>
  87. <name>Indexea Inc.</name>
  88. <email>indexea.com@gmail.com</email>
  89. </developer>
  90. </developers>
  91. </project>

No Description

Contributors (1)