pom.xml 4.4 KB

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