pom.xml 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. <dependency>
  48. <groupId>com.hotent</groupId>
  49. <artifactId>sys</artifactId>
  50. <version>8.0.7</version>
  51. <scope>compile</scope>
  52. </dependency>
  53. </dependencies>
  54. <!-- 用于生成jar文件-->
  55. <build>
  56. <finalName>assistMg</finalName>
  57. <plugins>
  58. <plugin>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-maven-plugin</artifactId>
  61. <version>${spring.boot.version}</version>
  62. <configuration>
  63. <mainClass>com.hotent.assist.mg.Application</mainClass>
  64. <layout>JAR</layout>
  65. </configuration>
  66. <executions>
  67. <execution>
  68. <goals>
  69. <goal>repackage</goal>
  70. </goals>
  71. <configuration>
  72. <attach>false</attach>
  73. <classifier>boot</classifier>
  74. </configuration>
  75. </execution>
  76. </executions>
  77. </plugin>
  78. </plugins>
  79. </build>
  80. </project>