pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <groupId>org.jeecgframework.boot</groupId>
  6. <artifactId>jeecg-boot-parent</artifactId>
  7. <version>2.4.5</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>jeecg-boot-module-system</artifactId>
  11. <repositories>
  12. <repository>
  13. <id>aliyun</id>
  14. <name>aliyun Repository</name>
  15. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  16. <snapshots>
  17. <enabled>false</enabled>
  18. </snapshots>
  19. </repository>
  20. <repository>
  21. <id>jeecg</id>
  22. <name>jeecg Repository</name>
  23. <url>http://maven.jeecg.org/nexus/content/repositories/jeecg</url>
  24. <snapshots>
  25. <enabled>false</enabled>
  26. </snapshots>
  27. </repository>
  28. </repositories>
  29. <dependencies>
  30. <dependency>
  31. <groupId>org.jeecgframework.boot</groupId>
  32. <artifactId>jeecg-system-local-api</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.jeecgframework.boot</groupId>
  36. <artifactId>module-engineer</artifactId>
  37. <version>${jeecgboot.version}</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.jeecgframework</groupId>
  41. <artifactId>jeewx-api</artifactId>
  42. <version>1.4.2</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.jeecgframework.jimureport</groupId>
  46. <artifactId>spring-boot-starter-jimureport</artifactId>
  47. <version>1.3.4-beta</version>
  48. <exclusions>
  49. <exclusion>
  50. <groupId>org.jeecgframework</groupId>
  51. <artifactId>autopoi-web</artifactId>
  52. </exclusion>
  53. </exclusions>
  54. </dependency>
  55. <!-- oracle驱动 -->
  56. <dependency>
  57. <groupId>com.oracle</groupId>
  58. <artifactId>ojdbc6</artifactId>
  59. <version>${ojdbc6.version}</version>
  60. </dependency>
  61. <!-- lucene核心库 -->
  62. <dependency>
  63. <groupId>org.apache.lucene</groupId>
  64. <artifactId>lucene-core</artifactId>
  65. <version>7.6.0</version>
  66. </dependency>
  67. <!-- Lucene的查询解析器 -->
  68. <dependency>
  69. <groupId>org.apache.lucene</groupId>
  70. <artifactId>lucene-queryparser</artifactId>
  71. <version>7.6.0</version>
  72. </dependency>
  73. <!-- lucene的默认分词器库 -->
  74. <dependency>
  75. <groupId>org.apache.lucene</groupId>
  76. <artifactId>lucene-analyzers-common</artifactId>
  77. <version>7.6.0</version>
  78. </dependency>
  79. <!-- lucene的高亮显示 -->
  80. <dependency>
  81. <groupId>org.apache.lucene</groupId>
  82. <artifactId>lucene-highlighter</artifactId>
  83. <version>7.6.0</version>
  84. </dependency>
  85. <!-- ik分词器 -->
  86. <dependency>
  87. <groupId>com.janeluo</groupId>
  88. <artifactId>ikanalyzer</artifactId>
  89. <version>2012_u6</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>io.netty</groupId>
  93. <artifactId>netty-all</artifactId>
  94. <version>${netty-all.version}</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.apache.logging.log4j</groupId>
  98. <artifactId>log4j-api</artifactId>
  99. <version>${log4j-api.version}</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.jasig.cas.client</groupId>
  103. <artifactId>cas-client-support-springboot</artifactId>
  104. <version>3.6.4</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.springframework.boot</groupId>
  108. <artifactId>spring-boot-starter-security</artifactId>
  109. </dependency>
  110. </dependencies>
  111. <build>
  112. <plugins>
  113. <plugin>
  114. <groupId>org.springframework.boot</groupId>
  115. <artifactId>spring-boot-maven-plugin</artifactId>
  116. <configuration>
  117. <!--微服务模式下修改为true,跳过此打包插件,否则微服务模块无法引用-->
  118. <skip>false</skip>
  119. </configuration>
  120. </plugin>
  121. </plugins>
  122. </build>
  123. </project>