anbl-RTHIT-parent/abnl-RTHIT-api-extend/pom.xml

45 lines
1.6 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>
<artifactId>abnl-RTHIT-service-parent</artifactId>
<groupId>com.qzing.mes.abnl</groupId>
<version>1.0.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>abnl-RTHIT-api-extend</artifactId>
<version>${abnl-RTHIT-version}</version>
<dependencies>
<dependency>
<groupId>com.qzing</groupId>
<artifactId>ime-abnl-api</artifactId>
<version>${abnl-version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>add-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>${project.basedir}/src/main/extend</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>