pom.xml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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>spring-boot-starter-captcha</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>cn.afterturn</groupId>
  24. <artifactId>easypoi-spring-boot-starter</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.github.xiaoymin</groupId>
  28. <artifactId>knife4j-openapi3-spring-boot-starter</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.koobietech.eas</groupId>
  32. <artifactId>security</artifactId>
  33. <version>${project.version}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-web</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-test</artifactId>
  42. <scope>test</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.koobietech.eas</groupId>
  46. <artifactId>mbg</artifactId>
  47. <version>${project.version}</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.koobietech.eas</groupId>
  51. <artifactId>common</artifactId>
  52. <version>${project.version}</version>
  53. <scope>compile</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.koobietech.eas</groupId>
  57. <artifactId>service</artifactId>
  58. <version>${project.version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.koobietech.eas</groupId>
  62. <artifactId>dao</artifactId>
  63. <version>0.0.1-SNAPSHOT</version>
  64. <scope>compile</scope>
  65. </dependency>
  66. </dependencies>
  67. <dependencyManagement>
  68. <dependencies>
  69. <dependency>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-dependencies</artifactId>
  72. <version>${spring-boot.version}</version>
  73. <type>pom</type>
  74. <scope>import</scope>
  75. </dependency>
  76. </dependencies>
  77. </dependencyManagement>
  78. <build>
  79. <!-- <resources>-->
  80. <!-- <resource>-->
  81. <!-- <directory>src/main/resources</directory>-->
  82. <!-- <filtering>true</filtering>-->
  83. <!-- <includes>-->
  84. <!-- <include>**/*.png</include>-->
  85. <!-- <include>**/*.jpeg</include>-->
  86. <!-- <include>**/*.xml</include>-->
  87. <!-- <include>**/*.docx</include>-->
  88. <!-- <include>**/*.xlsx</include>-->
  89. <!-- <include>**/*.yaml</include>-->
  90. <!-- <include>**/*.properties</include>-->
  91. <!-- </includes>-->
  92. <!-- </resource>-->
  93. <!-- </resources>-->
  94. <plugins>
  95. <plugin>
  96. <groupId>org.apache.maven.plugins</groupId>
  97. <artifactId>maven-compiler-plugin</artifactId>
  98. <version>${maven.compiler.plugin.version}</version>
  99. <configuration>
  100. <source>${maven.compiler.source}</source>
  101. <target>${maven.compiler.target}</target>
  102. <encoding>${maven.compiler.encoding}</encoding>
  103. </configuration>
  104. </plugin>
  105. <plugin>
  106. <groupId>org.springframework.boot</groupId>
  107. <artifactId>spring-boot-maven-plugin</artifactId>
  108. <version>${spring-boot.version}</version>
  109. <configuration>
  110. <mainClass>com.koobietech.eas.ControllerApplication</mainClass>
  111. <skip>false</skip>
  112. </configuration>
  113. <executions>
  114. <execution>
  115. <id>repackage</id>
  116. <goals>
  117. <goal>repackage</goal>
  118. </goals>
  119. </execution>
  120. </executions>
  121. </plugin>
  122. </plugins>
  123. </build>
  124. <repositories>
  125. <repository>
  126. <id>aliyun</id>
  127. <name>aliyun</name>
  128. <url>https://maven.aliyun.com/repository/public</url>
  129. <releases>
  130. <enabled>true</enabled>
  131. </releases>
  132. <snapshots>
  133. <enabled>false</enabled>
  134. </snapshots>
  135. </repository>
  136. </repositories>
  137. </project>