56 lines
1.8 KiB
XML
56 lines
1.8 KiB
XML
<?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>
|
|
<groupId>{{ .groupId }}</groupId>
|
|
<artifactId>{{ .artifactId }}</artifactId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.toco</groupId>
|
|
<artifactId>vs-sqlmapper-spring</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>{{ .groupId }}</groupId>
|
|
<artifactId>{{ .artifactId }}-common</artifactId>
|
|
<version>${revision}</version>
|
|
</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>
|