33 lines
1.0 KiB
XML
33 lines
1.0 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 }}</artifactId>
|
||
|
|
<version>{{ .version }}</version>
|
||
|
|
</parent>
|
||
|
|
|
||
|
|
<artifactId>{{ .artifactId }}-persist</artifactId>
|
||
|
|
<version>{{ .version }}</version>
|
||
|
|
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>{{ .groupId }}</groupId>
|
||
|
|
<artifactId>{{ .artifactId }}-common</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.toco</groupId>
|
||
|
|
<artifactId>toco-all</artifactId>
|
||
|
|
<type>pom</type>
|
||
|
|
<version>1.0.0-SNAPSHOT</version>
|
||
|
|
</dependency>
|
||
|
|
<!-- <dependency>-->
|
||
|
|
<!-- <groupId>com.vs</groupId>-->
|
||
|
|
<!-- <artifactId>vs.common.util</artifactId>-->
|
||
|
|
<!-- <version>1.2.2</version>-->
|
||
|
|
<!-- </dependency>-->
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
</project>
|