pom.xml 5.0 KB

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