pom.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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>cn.afterturn</groupId>
  16. <artifactId>easypoi-spring-boot-starter</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>0.0.1-SNAPSHOT</version>
  56. <scope>compile</scope>
  57. </dependency>
  58. </dependencies>
  59. <dependencyManagement>
  60. <dependencies>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-dependencies</artifactId>
  64. <version>${spring-boot.version}</version>
  65. <type>pom</type>
  66. <scope>import</scope>
  67. </dependency>
  68. </dependencies>
  69. </dependencyManagement>
  70. <build>
  71. <plugins>
  72. <plugin>
  73. <groupId>org.apache.maven.plugins</groupId>
  74. <artifactId>maven-compiler-plugin</artifactId>
  75. <version>${maven.compiler.plugin.version}</version>
  76. <configuration>
  77. <source>${maven.compiler.source}</source>
  78. <target>${maven.compiler.target}</target>
  79. <encoding>${maven.compiler.encoding}</encoding>
  80. </configuration>
  81. </plugin>
  82. <plugin>
  83. <groupId>org.springframework.boot</groupId>
  84. <artifactId>spring-boot-maven-plugin</artifactId>
  85. <version>${spring-boot.version}</version>
  86. <configuration>
  87. <mainClass>com.koobietech.eas.ControllerApplication</mainClass>
  88. <skip>false</skip>
  89. </configuration>
  90. <executions>
  91. <execution>
  92. <id>repackage</id>
  93. <goals>
  94. <goal>repackage</goal>
  95. </goals>
  96. </execution>
  97. </executions>
  98. </plugin>
  99. </plugins>
  100. </build>
  101. <repositories>
  102. <repository>
  103. <id>aliyun</id>
  104. <name>aliyun</name>
  105. <url>https://maven.aliyun.com/repository/public</url>
  106. <releases>
  107. <enabled>true</enabled>
  108. </releases>
  109. <snapshots>
  110. <enabled>false</enabled>
  111. </snapshots>
  112. </repository>
  113. </repositories>
  114. </project>