y9-code-generator/risenet-y9boot-webapp-code/pom.xml

174 lines
5.4 KiB
XML
Raw Normal View History

2024-12-13 16:32:43 +08:00
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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>net.risesoft</groupId>
<artifactId>y9-code-generator</artifactId>
<version>${revision}</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>net.risesoft</groupId>
<artifactId>risenet-y9boot-webapp-code</artifactId>
<version>${revision}</version>
<packaging>war</packaging>
<properties>
<maven.deploy.skip>true</maven.deploy.skip>
</properties>
<dependencies>
<dependency>
<groupId>net.risesoft</groupId>
<artifactId>risenet-y9boot-starter-sso-oauth2-resource</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.risesoft</groupId>
<artifactId>risenet-y9boot-starter-security</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.risesoft</groupId>
<artifactId>risenet-y9boot-starter-jpa-public</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.risesoft</groupId>
<artifactId>risenet-y9boot-starter-jpa-tenant</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.risesoft</groupId>
<artifactId>risenet-y9boot-starter-log</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.risesoft</groupId>
<artifactId>risenet-y9boot-properties</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.risesoft</groupId>
<artifactId>risenet-y9boot-api-feignclient-platform</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.risesoft</groupId>
<artifactId>risenet-y9boot-starter-idgenerator</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.risesoft</groupId>
<artifactId>risenet-y9boot-starter-web</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.risesoft</groupId>
<artifactId>risenet-y9boot-common-nacos</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>net.risesoft</groupId>
<artifactId>risenet-y9boot-support-file-service-ftp</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpmime</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.jaxrs</groupId>
<artifactId>jackson-jaxrs-json-provider</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-pool2</artifactId>
</dependency>
<dependency>
<groupId>org.freemarker</groupId>
<artifactId>freemarker</artifactId>
</dependency>
<!-- JXLS -->
<dependency>
<groupId>org.jxls</groupId>
<artifactId>jxls</artifactId>
<version>2.13.0</version>
</dependency>
<dependency>
<groupId>org.jxls</groupId>
<artifactId>jxls-poi</artifactId>
<version>2.13.0</version>
</dependency>
<dependency>
<groupId>org.jxls</groupId>
<artifactId>jxls-jexcel</artifactId>
<version>1.0.9</version>
</dependency>
<dependency>
<groupId>org.jxls</groupId>
<artifactId>jxls-reader</artifactId>
<version>2.1.0</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<finalName>code</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>build-docker-image</id>
<build>
<plugins>
<plugin>
<groupId>com.google.cloud.tools</groupId>
<artifactId>jib-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>