You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.9 KiB
52 lines
1.9 KiB
<?xml version="1.0"?>
|
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.sinosoft</groupId>
|
|
<artifactId>lis</artifactId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
<groupId>com.sinosoft.lis.model.system</groupId>
|
|
<artifactId>lis-model-system-schema</artifactId>
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sinosoft.lis.framework</groupId>
|
|
<artifactId>lis-framework-common</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sinosoft.lis.model.claim</groupId>
|
|
<artifactId>lis-model-claim-schema</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sinosoft.lis.module.task</groupId>
|
|
<artifactId>lis-module-task-schema</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-sources</id>
|
|
<phase>verify</phase>
|
|
<goals>
|
|
<goal>jar-no-fork</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|
|
|