pom.xml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. <!-- 依赖 uc 模块获取用户信息 -->
  32. <dependency>
  33. <groupId>com.hotent</groupId>
  34. <artifactId>uc</artifactId>
  35. <version>${parent.version}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.belerweb</groupId>
  39. <artifactId>pinyin4j</artifactId>
  40. <version>2.5.1</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.scijava</groupId>
  44. <artifactId>jep</artifactId>
  45. <version>2.4.2</version>
  46. </dependency>
  47. </dependencies>
  48. <!-- 用于生成jar文件-->
  49. <build>
  50. <finalName>assistMg</finalName>
  51. <plugins>
  52. <plugin>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-maven-plugin</artifactId>
  55. <version>${spring.boot.version}</version>
  56. <configuration>
  57. <mainClass>com.hotent.assist.mg.Application</mainClass>
  58. <layout>JAR</layout>
  59. </configuration>
  60. <executions>
  61. <execution>
  62. <goals>
  63. <goal>repackage</goal>
  64. </goals>
  65. <configuration>
  66. <attach>false</attach>
  67. <classifier>boot</classifier>
  68. </configuration>
  69. </execution>
  70. </executions>
  71. </plugin>
  72. </plugins>
  73. </build>
  74. </project>