mirror of
https://gitee.com/log4j/pig.git
synced 2024-12-23 05:00:23 +08:00
162 lines
5.8 KiB
XML
Executable File
162 lines
5.8 KiB
XML
Executable File
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>com.pig4cloud</groupId>
|
|
<artifactId>pig-visual</artifactId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
|
|
<artifactId>pig-codegen</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<description>代码生成模块</description>
|
|
|
|
<properties>
|
|
<screw.version>0.0.6</screw.version>
|
|
<anyline.version>8.7.2-jdk17-20240808</anyline.version>
|
|
<configuration.version>1.10</configuration.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>
|
|
<!--mybatis-->
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.mysql</groupId>
|
|
<artifactId>mysql-connector-j</artifactId>
|
|
</dependency>
|
|
<!--anyline-->
|
|
<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>
|
|
<!--common-->
|
|
<dependency>
|
|
<groupId>com.pig4cloud</groupId>
|
|
<artifactId>pig-common-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.hutool</groupId>
|
|
<artifactId>hutool-json</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-configuration</groupId>
|
|
<artifactId>commons-configuration</artifactId>
|
|
<version>${configuration.version}</version>
|
|
</dependency>
|
|
<!--swagger-->
|
|
<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>
|
|
<!--web 模块-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
<!--undertow容器-->
|
|
<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>
|