58 lines
2.1 KiB
XML
58 lines
2.1 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-service-extend</artifactId>
|
|
<version>${abnl-RTHIT-version}</version>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.qzing.mes.abnl</groupId>
|
|
<artifactId>abnl-RTHIT-api-extend</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.qzing</groupId>
|
|
<artifactId>ime-abnl-graphql</artifactId>
|
|
<version>${abnl-version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.qzing.ieep2</groupId>
|
|
<artifactId>ieep2-api-RTHIT</artifactId>
|
|
<version>1.8.6-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.qzing.md</groupId>
|
|
<artifactId>md-RTHIT-api-masterdata</artifactId>
|
|
<version>2.7.3-SNAPSHOT</version>
|
|
<scope>compile</scope>
|
|
</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> |