pom.xml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <artifactId>controller</artifactId>
  6. <name>controller</name>
  7. <description>controller</description>
  8. <parent>
  9. <artifactId>eas-system</artifactId>
  10. <groupId>com.koobietech.eas</groupId>
  11. <version>0.0.1-SNAPSHOT</version>
  12. </parent>
  13. <dependencies>
  14. <dependency>
  15. <groupId>xerces</groupId>
  16. <artifactId>xercesImpl</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.anji-plus</groupId>
  20. <artifactId>captcha</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>cn.afterturn</groupId>
  24. <artifactId>easypoi-base</artifactId>
  25. <version>4.3.0</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.github.xiaoymin</groupId>
  29. <artifactId>knife4j-openapi3-spring-boot-starter</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.koobietech.eas</groupId>
  33. <artifactId>security</artifactId>
  34. <version>${project.version}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-web</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-test</artifactId>
  43. <scope>test</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.koobietech.eas</groupId>
  47. <artifactId>mbg</artifactId>
  48. <version>${project.version}</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.koobietech.eas</groupId>
  52. <artifactId>common</artifactId>
  53. <version>${project.version}</version>
  54. <scope>compile</scope>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.koobietech.eas</groupId>
  58. <artifactId>service</artifactId>
  59. <version>${project.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.koobietech.eas</groupId>
  63. <artifactId>dao</artifactId>
  64. <version>0.0.1-SNAPSHOT</version>
  65. <scope>compile</scope>
  66. </dependency>
  67. </dependencies>
  68. <dependencyManagement>
  69. <dependencies>
  70. <dependency>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-dependencies</artifactId>
  73. <version>${spring-boot.version}</version>
  74. <type>pom</type>
  75. <scope>import</scope>
  76. </dependency>
  77. </dependencies>
  78. </dependencyManagement>
  79. <build>
  80. <!-- <resources>-->
  81. <!-- <resource>-->
  82. <!-- <directory>src/main/resources</directory>-->
  83. <!-- <filtering>true</filtering>-->
  84. <!-- <includes>-->
  85. <!-- <include>**/*.png</include>-->
  86. <!-- <include>**/*.jpeg</include>-->
  87. <!-- <include>**/*.xml</include>-->
  88. <!-- <include>**/*.docx</include>-->
  89. <!-- <include>**/*.xlsx</include>-->
  90. <!-- <include>**/*.yaml</include>-->
  91. <!-- <include>**/*.properties</include>-->
  92. <!-- </includes>-->
  93. <!-- </resource>-->
  94. <!-- </resources>-->
  95. <plugins>
  96. <plugin>
  97. <groupId>org.apache.maven.plugins</groupId>
  98. <artifactId>maven-compiler-plugin</artifactId>
  99. <version>${maven.compiler.plugin.version}</version>
  100. <configuration>
  101. <source>${maven.compiler.source}</source>
  102. <target>${maven.compiler.target}</target>
  103. <encoding>${maven.compiler.encoding}</encoding>
  104. </configuration>
  105. </plugin>
  106. <plugin>
  107. <groupId>org.springframework.boot</groupId>
  108. <artifactId>spring-boot-maven-plugin</artifactId>
  109. <version>${spring-boot.version}</version>
  110. <configuration>
  111. <mainClass>com.koobietech.eas.ControllerApplication</mainClass>
  112. <skip>false</skip>
  113. </configuration>
  114. <executions>
  115. <execution>
  116. <id>repackage</id>
  117. <goals>
  118. <goal>repackage</goal>
  119. </goals>
  120. </execution>
  121. </executions>
  122. </plugin>
  123. </plugins>
  124. </build>
  125. <repositories>
  126. <repository>
  127. <id>aliyun</id>
  128. <name>aliyun</name>
  129. <url>https://maven.aliyun.com/repository/public</url>
  130. <releases>
  131. <enabled>true</enabled>
  132. </releases>
  133. <snapshots>
  134. <enabled>false</enabled>
  135. </snapshots>
  136. </repository>
  137. </repositories>
  138. </project>