pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.hotent</groupId>
  7. <artifactId>eip</artifactId>
  8. <version>8.0.7</version>
  9. </parent>
  10. <artifactId>assistMg</artifactId>
  11. <properties>
  12. <maven.compiler.source>8</maven.compiler.source>
  13. <maven.compiler.target>8</maven.compiler.target>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. </properties>
  16. <name>assistMg</name>
  17. <description>辅助管理模块</description>
  18. <dependencies>
  19. <!-- Spring boot 测试 -->
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-test</artifactId>
  23. <scope>test</scope>
  24. </dependency>
  25. <!-- 依赖 base 模块获取基础功能 -->
  26. <dependency>
  27. <groupId>com.hotent</groupId>
  28. <artifactId>base</artifactId>
  29. <version>${parent.version}</version>
  30. </dependency>
  31. <!--中台对接数据初始化依赖-->
  32. <dependency>
  33. <groupId>com.integration</groupId>
  34. <artifactId>oauth2-sdk</artifactId>
  35. <version>1.0</version>
  36. </dependency>
  37. <!-- 依赖 uc 模块获取用户信息 -->
  38. <dependency>
  39. <groupId>com.hotent</groupId>
  40. <artifactId>uc</artifactId>
  41. <version>${parent.version}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.belerweb</groupId>
  45. <artifactId>pinyin4j</artifactId>
  46. <version>2.5.1</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.scijava</groupId>
  50. <artifactId>jep</artifactId>
  51. <version>2.4.2</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.hotent</groupId>
  55. <artifactId>sys</artifactId>
  56. <version>8.0.7</version>
  57. <scope>compile</scope>
  58. </dependency>
  59. <!-- PDF处理 -->
  60. <dependency>
  61. <groupId>org.apache.pdfbox</groupId>
  62. <artifactId>pdfbox</artifactId>
  63. <version>2.0.28</version>
  64. <exclusions>
  65. <exclusion>
  66. <groupId>org.apache.pdfbox</groupId>
  67. <artifactId>fontbox</artifactId>
  68. </exclusion>
  69. </exclusions>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.apache.pdfbox</groupId>
  73. <artifactId>fontbox</artifactId>
  74. <version>2.0.28</version>
  75. </dependency>
  76. </dependencies>
  77. <!-- 用于生成jar文件-->
  78. <build>
  79. <finalName>assistMg</finalName>
  80. <plugins>
  81. <plugin>
  82. <groupId>org.springframework.boot</groupId>
  83. <artifactId>spring-boot-maven-plugin</artifactId>
  84. <version>${spring.boot.version}</version>
  85. <configuration>
  86. <mainClass>com.hotent.assist.mg.Application</mainClass>
  87. <layout>JAR</layout>
  88. </configuration>
  89. <executions>
  90. <execution>
  91. <goals>
  92. <goal>repackage</goal>
  93. </goals>
  94. <configuration>
  95. <attach>false</attach>
  96. <classifier>boot</classifier>
  97. </configuration>
  98. </execution>
  99. </executions>
  100. </plugin>
  101. </plugins>
  102. </build>
  103. </project>