2018-02-10 16:42:06 +07:00
|
|
|
<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>org.idempiere</groupId>
|
|
|
|
<artifactId>org.idempiere.parent</artifactId>
|
2018-11-05 03:32:21 +07:00
|
|
|
<version>6.1.0-SNAPSHOT</version>
|
2018-02-10 16:42:06 +07:00
|
|
|
<relativePath>../org.idempiere.parent/pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
<artifactId>org.adempiere.ui.zk</artifactId>
|
|
|
|
<packaging>eclipse-plugin</packaging>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>validate</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifactItems>
|
|
|
|
<artifactItem>
|
|
|
|
<groupId>org.outerj.daisy</groupId>
|
|
|
|
<artifactId>daisydiff</artifactId>
|
|
|
|
<version>1.1.14-atlassian-hosted</version>
|
|
|
|
</artifactItem>
|
|
|
|
<artifactItem>
|
|
|
|
<groupId>org.zkoss.zkforge</groupId>
|
|
|
|
<artifactId>ckez</artifactId>
|
|
|
|
<version>4.7.0.0</version>
|
|
|
|
</artifactItem>
|
|
|
|
</artifactItems>
|
|
|
|
<outputDirectory>WEB-INF/lib</outputDirectory>
|
|
|
|
<stripVersion>true</stripVersion>
|
|
|
|
<overWriteReleases>true</overWriteReleases>
|
|
|
|
<overWriteSnapshots>true</overWriteSnapshots>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.googlecode.maven-download-plugin</groupId>
|
|
|
|
<artifactId>download-maven-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>validate</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>wget</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
2018-11-05 05:09:44 +07:00
|
|
|
<url>${url.file.srv}/jarfile/6.1/labelapplet.jar</url>
|
2018-02-10 16:42:06 +07:00
|
|
|
<unpack>false</unpack>
|
|
|
|
<outputDirectory>./</outputDirectory>
|
|
|
|
<retries>5</retries>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|