123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- <?xml version="1.0" encoding="UTF-8"?>
- <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"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.pig4cloud</groupId>
- <artifactId>pig-visual</artifactId>
- <version>3.9.0</version>
- </parent>
- <artifactId>pig-codegen</artifactId>
- <version>3.9.0</version>
- <description>代码生成模块</description>
- <properties>
- <screw.version>0.0.6</screw.version>
- <anyline.version>8.7.2-jdk17-20240808</anyline.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.alibaba.cloud</groupId>
- <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
- </dependency>
- <dependency>
- <groupId>com.alibaba.cloud</groupId>
- <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
- </dependency>
- <dependency>
- <groupId>com.pig4cloud</groupId>
- <artifactId>pig-common-mybatis</artifactId>
- </dependency>
- <dependency>
- <groupId>com.pig4cloud</groupId>
- <artifactId>pig-common-datasource</artifactId>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>com.mysql</groupId>
- <artifactId>mysql-connector-j</artifactId>
- </dependency>
- <dependency>
- <groupId>org.anyline</groupId>
- <artifactId>anyline-environment-spring-data-jdbc</artifactId>
- <version>${anyline.version}</version>
- </dependency>
- <dependency>
- <groupId>org.anyline</groupId>
- <artifactId>anyline-data-jdbc-mysql</artifactId>
- <version>${anyline.version}</version>
- </dependency>
- <dependency>
- <groupId>com.pig4cloud</groupId>
- <artifactId>pig-common-core</artifactId>
- </dependency>
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-json</artifactId>
- </dependency>
- <dependency>
- <groupId>com.pig4cloud</groupId>
- <artifactId>pig-common-swagger</artifactId>
- </dependency>
- <dependency>
- <groupId>com.pig4cloud</groupId>
- <artifactId>pig-common-xss</artifactId>
- </dependency>
- <dependency>
- <groupId>com.pig4cloud</groupId>
- <artifactId>pig-common-security</artifactId>
- </dependency>
- <dependency>
- <groupId>com.pig4cloud</groupId>
- <artifactId>pig-common-log</artifactId>
- </dependency>
- <dependency>
- <groupId>org.apache.velocity</groupId>
- <artifactId>velocity-engine-core</artifactId>
- <version>${velocity.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.velocity.tools</groupId>
- <artifactId>velocity-tools-generic</artifactId>
- <version>${velocity.tool.version}</version>
- </dependency>
- <dependency>
- <groupId>group.springframework.plugin</groupId>
- <artifactId>screw-spring-boot-starter</artifactId>
- <version>${screw.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-undertow</artifactId>
- </dependency>
- </dependencies>
- <profiles>
- <profile>
- <id>cloud</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal>
- </goals>
- <configuration>
- <loaderImplementation>CLASSIC</loaderImplementation>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>io.fabric8</groupId>
- <artifactId>docker-maven-plugin</artifactId>
- <configuration>
- <skip>false</skip>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
- <profile>
- <id>boot</id>
- </profile>
- </profiles>
- </project>
|