pom.xml 4.0 KB

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