.flattened-pom.xml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.pig4cloud</groupId>
  7. <artifactId>pig-visual</artifactId>
  8. <version>3.9.0</version>
  9. </parent>
  10. <artifactId>pig-codegen</artifactId>
  11. <version>3.9.0</version>
  12. <description>代码生成模块</description>
  13. <properties>
  14. <screw.version>0.0.6</screw.version>
  15. <anyline.version>8.7.2-jdk17-20240808</anyline.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.alibaba.cloud</groupId>
  20. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.alibaba.cloud</groupId>
  24. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.pig4cloud</groupId>
  28. <artifactId>pig-common-mybatis</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.pig4cloud</groupId>
  32. <artifactId>pig-common-datasource</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.baomidou</groupId>
  36. <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.mysql</groupId>
  40. <artifactId>mysql-connector-j</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.anyline</groupId>
  44. <artifactId>anyline-environment-spring-data-jdbc</artifactId>
  45. <version>${anyline.version}</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.anyline</groupId>
  49. <artifactId>anyline-data-jdbc-mysql</artifactId>
  50. <version>${anyline.version}</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.pig4cloud</groupId>
  54. <artifactId>pig-common-core</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>cn.hutool</groupId>
  58. <artifactId>hutool-json</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.pig4cloud</groupId>
  62. <artifactId>pig-common-swagger</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.pig4cloud</groupId>
  66. <artifactId>pig-common-xss</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.pig4cloud</groupId>
  70. <artifactId>pig-common-security</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.pig4cloud</groupId>
  74. <artifactId>pig-common-log</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.apache.velocity</groupId>
  78. <artifactId>velocity-engine-core</artifactId>
  79. <version>${velocity.version}</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.apache.velocity.tools</groupId>
  83. <artifactId>velocity-tools-generic</artifactId>
  84. <version>${velocity.tool.version}</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>group.springframework.plugin</groupId>
  88. <artifactId>screw-spring-boot-starter</artifactId>
  89. <version>${screw.version}</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.springframework.boot</groupId>
  93. <artifactId>spring-boot-starter-web</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.springframework.boot</groupId>
  97. <artifactId>spring-boot-starter-undertow</artifactId>
  98. </dependency>
  99. </dependencies>
  100. <profiles>
  101. <profile>
  102. <id>cloud</id>
  103. <activation>
  104. <activeByDefault>true</activeByDefault>
  105. </activation>
  106. <build>
  107. <plugins>
  108. <plugin>
  109. <groupId>org.springframework.boot</groupId>
  110. <artifactId>spring-boot-maven-plugin</artifactId>
  111. <executions>
  112. <execution>
  113. <goals>
  114. <goal>repackage</goal>
  115. </goals>
  116. <configuration>
  117. <loaderImplementation>CLASSIC</loaderImplementation>
  118. </configuration>
  119. </execution>
  120. </executions>
  121. </plugin>
  122. <plugin>
  123. <groupId>io.fabric8</groupId>
  124. <artifactId>docker-maven-plugin</artifactId>
  125. <configuration>
  126. <skip>false</skip>
  127. </configuration>
  128. </plugin>
  129. </plugins>
  130. </build>
  131. </profile>
  132. <profile>
  133. <id>boot</id>
  134. </profile>
  135. </profiles>
  136. </project>