Files
insigma-springboot-template/template/insiis-web/pom.xml

56 lines
1.8 KiB
XML
Raw Normal View History

2024-07-28 11:01:33 +08:00
<?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>
<artifactId>insiis-web</artifactId>
<groupId>com.insigma</groupId>
<version>1.1.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>insiis-web</name>
<description>Web project for Insiis7</description>
<parent>
2024-08-22 15:06:28 +08:00
<groupId>{{ .groupId }}</groupId>
<artifactId>{{ .artifactId }}</artifactId>
2024-07-28 11:01:33 +08:00
<version>${revision}</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
</dependency>
<dependency>
2024-08-22 10:58:18 +08:00
<groupId>com.toco</groupId>
2024-07-28 11:01:33 +08:00
<artifactId>vs-sqlmapper-spring</artifactId>
</dependency>
<dependency>
2024-08-22 15:06:28 +08:00
<groupId>{{ .groupId }}</groupId>
<artifactId>{{ .artifactId }}-common</artifactId>
<version>${revision}</version>
2024-07-28 11:01:33 +08:00
</dependency>
</dependencies>
<build>
<finalName>insiis7</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
<configuration>
<includeSystemScope>true</includeSystemScope>
</configuration>
</plugin>
</plugins>
</build>
</project>