pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>com.taais</groupId>
  7. <artifactId>taais</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <artifactId>taais-admin</artifactId>
  13. <description>
  14. web服务入口
  15. </description>
  16. <dependencies>
  17. <!-- spring-boot-devtools -->
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-devtools</artifactId>
  21. <optional>true</optional> <!-- 表示依赖不会传递 -->
  22. </dependency>
  23. <!-- Mysql驱动包 -->
  24. <dependency>
  25. <groupId>com.mysql</groupId>
  26. <artifactId>mysql-connector-j</artifactId>
  27. </dependency>
  28. <!-- PostgreSql -->
  29. <dependency>
  30. <groupId>org.postgresql</groupId>
  31. <artifactId>postgresql</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.taais</groupId>
  35. <artifactId>taais-common-tenant</artifactId>
  36. </dependency>
  37. <!-- system模块-->
  38. <dependency>
  39. <groupId>com.taais</groupId>
  40. <artifactId>taais-system</artifactId>
  41. </dependency>
  42. <!-- PowerJob定时任务处理器-->
  43. <dependency>
  44. <groupId>com.taais</groupId>
  45. <artifactId>taais-job</artifactId>
  46. </dependency>
  47. <!-- 代码生成-->
  48. <dependency>
  49. <groupId>com.taais</groupId>
  50. <artifactId>taais-generator</artifactId>
  51. </dependency>
  52. <!-- spring-boot-admin 监控客户端 -->
  53. <dependency>
  54. <groupId>de.codecentric</groupId>
  55. <artifactId>spring-boot-admin-starter-client</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.security</groupId>
  59. <artifactId>spring-security-core</artifactId>
  60. </dependency>
  61. <!-- powerjob 客户端 -->
  62. <!-- <dependency>-->
  63. <!-- <groupId>tech.powerjob</groupId>-->
  64. <!-- <artifactId>powerjob-worker-spring-boot-starter</artifactId>-->
  65. <!-- </dependency>-->
  66. <dependency>
  67. <groupId>com.taais</groupId>
  68. <artifactId>taais-biz</artifactId>
  69. </dependency>
  70. </dependencies>
  71. <build>
  72. <plugins>
  73. <plugin>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-maven-plugin</artifactId>
  76. <version>${spring-boot.version}</version>
  77. <executions>
  78. <execution>
  79. <goals>
  80. <goal>repackage</goal>
  81. </goals>
  82. </execution>
  83. </executions>
  84. </plugin>
  85. <plugin>
  86. <groupId>org.apache.maven.plugins</groupId>
  87. <artifactId>maven-jar-plugin</artifactId>
  88. <version>${maven-jar-plugin.version}</version>
  89. </plugin>
  90. <plugin>
  91. <groupId>org.apache.maven.plugins</groupId>
  92. <artifactId>maven-war-plugin</artifactId>
  93. <version>${maven-war-plugin.version}</version>
  94. <configuration>
  95. <failOnMissingWebXml>false</failOnMissingWebXml>
  96. <warName>${project.artifactId}</warName>
  97. </configuration>
  98. </plugin>
  99. </plugins>
  100. <finalName>${project.artifactId}</finalName>
  101. </build>
  102. </project>