60 lines
1.9 KiB
XML
60 lines
1.9 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">
|
||
|
|
<parent>
|
||
|
|
<groupId>com.sonic</groupId>
|
||
|
|
<artifactId>common-parent-pom</artifactId>
|
||
|
|
<version>1.0</version>
|
||
|
|
</parent>
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
|
||
|
|
<artifactId>common-lib-box</artifactId>
|
||
|
|
<packaging>pom</packaging>
|
||
|
|
<version>1.0</version>
|
||
|
|
<description>basic services common library</description>
|
||
|
|
|
||
|
|
<modules>
|
||
|
|
<module>common-lib</module>
|
||
|
|
<module>dao-support-lib</module>
|
||
|
|
</modules>
|
||
|
|
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.projectlombok</groupId>
|
||
|
|
<artifactId>lombok</artifactId>
|
||
|
|
<version>1.18.40</version>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
<build>
|
||
|
|
<plugins>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
|
<version>2.3.2</version>
|
||
|
|
<configuration>
|
||
|
|
<source>${java.version}</source>
|
||
|
|
<target>${java.version}</target>
|
||
|
|
<encoding>utf-8</encoding>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
<!-- Source attach plugin -->
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-source-plugin</artifactId>
|
||
|
|
<version>3.1.0</version>
|
||
|
|
<executions>
|
||
|
|
<execution>
|
||
|
|
<id>attach-sources</id>
|
||
|
|
<goals>
|
||
|
|
<goal>jar</goal>
|
||
|
|
</goals>
|
||
|
|
</execution>
|
||
|
|
</executions>
|
||
|
|
</plugin>
|
||
|
|
</plugins>
|
||
|
|
</build>
|
||
|
|
|
||
|
|
</project>
|