61 lines
2.0 KiB
XML
61 lines
2.0 KiB
XML
|
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||
|
|
<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>com.sonic</groupId>
|
||
|
|
<artifactId>common-parent-pom</artifactId>
|
||
|
|
<version>1.0</version>
|
||
|
|
</parent>
|
||
|
|
|
||
|
|
<artifactId>sonic-frog</artifactId>
|
||
|
|
|
||
|
|
<groupId>com.sonic.frog</groupId>
|
||
|
|
<packaging>pom</packaging>
|
||
|
|
<version>1.0</version>
|
||
|
|
|
||
|
|
<properties>
|
||
|
|
<!-- 2nd dependencies -->
|
||
|
|
<common-lib.version>1.0.6</common-lib.version>
|
||
|
|
<dao-support-lib.version>1.0</dao-support-lib.version>
|
||
|
|
</properties>
|
||
|
|
|
||
|
|
<dependencyManagement>
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.sonic</groupId>
|
||
|
|
<artifactId>common-lib</artifactId>
|
||
|
|
<version>${common-lib.version}</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.sonic</groupId>
|
||
|
|
<artifactId>dao-support-lib</artifactId>
|
||
|
|
<version>${dao-support-lib.version}</version>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
</dependencyManagement>
|
||
|
|
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.projectlombok</groupId>
|
||
|
|
<artifactId>lombok</artifactId>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
<modules>
|
||
|
|
<module>common</module>
|
||
|
|
<module>server</module>
|
||
|
|
<module>lib</module>
|
||
|
|
</modules>
|
||
|
|
<!-- <distributionManagement>-->
|
||
|
|
<!-- <repository>-->
|
||
|
|
<!-- <id>releases</id>-->
|
||
|
|
<!-- <url>http://121.196.56.236:8081/repository/maven-releases/</url>-->
|
||
|
|
<!-- </repository>-->
|
||
|
|
<!-- <snapshotRepository>-->
|
||
|
|
<!-- <id>snapshots</id>-->
|
||
|
|
<!-- <url>http://121.196.56.236:8081/repository/maven-snapshots/</url>-->
|
||
|
|
<!-- </snapshotRepository>-->
|
||
|
|
<!-- </distributionManagement>-->
|
||
|
|
</project>
|