pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>airway</artifactId>
  7. <groupId>cn.tr</groupId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <version>${revision}</version>
  12. <artifactId>tr-test</artifactId>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.redisson</groupId>
  16. <artifactId>redisson-spring-boot-starter</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>cn.tr</groupId>
  20. <artifactId>tr-spring-boot-starter-plugin-satoken</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>cn.tr</groupId>
  24. <artifactId>tr-spring-boot-starter-plugin-desensitize</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-data-redis</artifactId>
  29. <exclusions>
  30. <exclusion>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-logging</artifactId>
  33. </exclusion>
  34. </exclusions>
  35. </dependency>
  36. <dependency>
  37. <groupId>cn.tr</groupId>
  38. <artifactId>tr-module-system</artifactId>
  39. <version>0.0.9</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>cn.tr</groupId>
  43. <artifactId>tr-module-quartz</artifactId>
  44. <version>0.0.9</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>cn.tr</groupId>
  48. <artifactId>tr-module-gen</artifactId>
  49. <version>0.0.9</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>cn.tr</groupId>
  53. <artifactId>tr-module-airway</artifactId>
  54. <version>0.0.9</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>cn.tr</groupId>
  58. <artifactId>tr-module-export</artifactId>
  59. <version>0.0.9</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>cn.tr</groupId>
  63. <artifactId>tr-spring-boot-starter-plugin-banner</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.postgresql</groupId>
  67. <artifactId>postgresql</artifactId>
  68. <scope>compile</scope>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.flywaydb</groupId>
  72. <artifactId>flyway-core</artifactId>
  73. </dependency>
  74. </dependencies>
  75. <build>
  76. <defaultGoal>compile</defaultGoal>
  77. <finalName>${project.name}</finalName>
  78. <resources>
  79. <resource>
  80. <directory>src/main/resources</directory>
  81. <filtering>true</filtering>
  82. </resource>
  83. </resources>
  84. <!--<pluginManagement>-->
  85. <plugins>
  86. <plugin>
  87. <groupId>org.flywaydb</groupId>
  88. <artifactId>flyway-maven-plugin</artifactId>
  89. </plugin>
  90. <plugin>
  91. <groupId>org.springframework.boot</groupId>
  92. <artifactId>spring-boot-maven-plugin</artifactId>
  93. <version>${spring-boot.version}</version>
  94. <configuration>
  95. <mainClass> cn.tr.test.WebApplication</mainClass>
  96. <finalName>${project.build.finalName}</finalName>
  97. <layers>
  98. <enabled>true</enabled>
  99. </layers>
  100. </configuration>
  101. <executions>
  102. <execution>
  103. <goals>
  104. <goal>repackage</goal>
  105. </goals>
  106. </execution>
  107. </executions>
  108. </plugin>
  109. </plugins>
  110. <!--</pluginManagement>-->
  111. </build>
  112. </project>