pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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>cn.tr</groupId>-->
  16. <!--<artifactId>tr-spring-boot-starter-plugin-websocket</artifactId>-->
  17. <!--</dependency>-->
  18. <dependency>
  19. <groupId>org.redisson</groupId>
  20. <artifactId>redisson-spring-boot-starter</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>cn.tr</groupId>
  24. <artifactId>tr-spring-boot-starter-plugin-satoken</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>cn.tr</groupId>
  28. <artifactId>tr-spring-boot-starter-plugin-desensitize</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-data-redis</artifactId>
  33. <exclusions>
  34. <exclusion>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-logging</artifactId>
  37. </exclusion>
  38. </exclusions>
  39. </dependency>
  40. <dependency>
  41. <groupId>cn.tr</groupId>
  42. <artifactId>tr-module-system</artifactId>
  43. <version>0.0.9</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>cn.tr</groupId>
  47. <artifactId>tr-module-quartz</artifactId>
  48. <version>0.0.9</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>cn.tr</groupId>
  52. <artifactId>tr-module-gen</artifactId>
  53. <version>0.0.9</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>cn.tr</groupId>
  57. <artifactId>tr-module-export</artifactId>
  58. <version>0.0.9</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.flywaydb</groupId>
  62. <artifactId>flyway-mysql</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.flywaydb</groupId>
  66. <artifactId>flyway-core</artifactId>
  67. </dependency>
  68. </dependencies>
  69. <build>
  70. <defaultGoal>compile</defaultGoal>
  71. <finalName>${project.name}</finalName>
  72. <resources>
  73. <resource>
  74. <directory>src/main/resources</directory>
  75. <filtering>true</filtering>
  76. </resource>
  77. </resources>
  78. <!--<pluginManagement>-->
  79. <plugins>
  80. <plugin>
  81. <groupId>org.flywaydb</groupId>
  82. <artifactId>flyway-maven-plugin</artifactId>
  83. </plugin>
  84. <plugin>
  85. <groupId>org.springframework.boot</groupId>
  86. <artifactId>spring-boot-maven-plugin</artifactId>
  87. <version>${spring-boot.version}</version>
  88. <configuration>
  89. <mainClass> cn.tr.test.WebApplication</mainClass>
  90. <finalName>${project.build.finalName}</finalName>
  91. <layers>
  92. <enabled>true</enabled>
  93. </layers>
  94. </configuration>
  95. <executions>
  96. <execution>
  97. <goals>
  98. <goal>repackage</goal>
  99. </goals>
  100. </execution>
  101. </executions>
  102. </plugin>
  103. </plugins>
  104. <!--</pluginManagement>-->
  105. </build>
  106. </project>