pom.xml 4.4 KB

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