41 lines
1.3 KiB
XML
41 lines
1.3 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>
|
|
|
|
<parent>
|
|
<groupId>{{ .groupId }}</groupId>
|
|
<artifactId>{{ .artifactId }}-entrance</artifactId>
|
|
<version>{{ .version }}</version>
|
|
</parent>
|
|
|
|
<artifactId>{{ .artifactId }}-entrance-web</artifactId>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.toco</groupId>
|
|
<artifactId>vs-sqlmapper-spring</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>{{ .groupId }}</groupId>
|
|
<artifactId>{{ .artifactId }}-entrance-mq</artifactId>
|
|
<version>{{ .version }}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.vs</groupId>
|
|
<artifactId>vs-mock-web</artifactId>
|
|
<version>${vs.mock.spring}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.vs</groupId>
|
|
<artifactId>vs-debug-agent</artifactId>
|
|
<version>${vs.debug.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.vs</groupId>
|
|
<artifactId>vs-debug-plugin</artifactId>
|
|
<version>${vs.debug.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|