55 lines
1.8 KiB
XML
55 lines
1.8 KiB
XML
|
<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>
|
||
|
<version>5.1.0-SNAPSHOT</version>
|
||
|
<relativePath>../org.idempiere.parent/pom.xml</relativePath>
|
||
|
</parent>
|
||
|
<artifactId>org.adempiere.ui</artifactId>
|
||
|
<packaging>eclipse-plugin</packaging>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.eclipse.tycho</groupId>
|
||
|
<artifactId>tycho-compiler-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<!-- https://bugs.eclipse.org/bugs/show_bug.cgi?id=367431 -->
|
||
|
<compilerArgument>-warn:+forbidden</compilerArgument>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<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.netbeans.api</groupId>
|
||
|
<artifactId>org-netbeans-api-visual</artifactId>
|
||
|
<version>RELEASE65</version>
|
||
|
</artifactItem>
|
||
|
<artifactItem>
|
||
|
<groupId>org.netbeans.api</groupId>
|
||
|
<artifactId>org-openide-util</artifactId>
|
||
|
<version>RELEASE65</version>
|
||
|
</artifactItem>
|
||
|
</artifactItems>
|
||
|
<outputDirectory>lib</outputDirectory>
|
||
|
<stripVersion>true</stripVersion>
|
||
|
<overWriteReleases>true</overWriteReleases>
|
||
|
<overWriteSnapshots>true</overWriteSnapshots>
|
||
|
</configuration>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|