pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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>tr-footstone</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-export</artifactId>
  54. <version>0.0.9</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>cn.tr</groupId>
  58. <artifactId>tr-spring-boot-starter-plugin-banner</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.postgresql</groupId>
  62. <artifactId>postgresql</artifactId>
  63. <scope>compile</scope>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.flywaydb</groupId>
  67. <artifactId>flyway-core</artifactId>
  68. </dependency>
  69. </dependencies>
  70. <build>
  71. <defaultGoal>compile</defaultGoal>
  72. <finalName>${project.name}</finalName>
  73. <resources>
  74. <resource>
  75. <directory>src/main/resources</directory>
  76. <filtering>true</filtering>
  77. </resource>
  78. </resources>
  79. <!--<pluginManagement>-->
  80. <plugins>
  81. <plugin>
  82. <groupId>org.flywaydb</groupId>
  83. <artifactId>flyway-maven-plugin</artifactId>
  84. </plugin>
  85. <plugin>
  86. <groupId>org.springframework.boot</groupId>
  87. <artifactId>spring-boot-maven-plugin</artifactId>
  88. <version>${spring-boot.version}</version>
  89. <configuration>
  90. <mainClass> cn.tr.test.WebApplication</mainClass>
  91. <finalName>${project.build.finalName}</finalName>
  92. <layers>
  93. <enabled>true</enabled>
  94. </layers>
  95. </configuration>
  96. <executions>
  97. <execution>
  98. <goals>
  99. <goal>repackage</goal>
  100. </goals>
  101. </execution>
  102. </executions>
  103. </plugin>
  104. </plugins>
  105. <!--</pluginManagement>-->
  106. </build>
  107. </project>