forked from idempiere-consulting/LIT_Intrastat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
59 lines (57 loc) · 1.72 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<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>
<groupId>org.idempiere</groupId>
<artifactId>it.idIta.impl.LIT_Intrastat</artifactId>
<packaging>eclipse-plugin</packaging>
<version>10.0.0-SNAPSHOT</version>
<!--
<parent>
<groupId>org.idempiere</groupId>
<artifactId>org.idempiere.parent</artifactId>
<version>7.1.0-SNAPSHOT</version>
<relativePath>../../idempiere-italia/org.idempiere.parent/pom.xml</relativePath>
</parent>
-->
<repositories>
<!-- add Mars repository to resolve dependencies -->
<repository>
<id>idempiereP2</id>
<layout>p2</layout>
<url>file:///opt/repos/idempiere/org.idempiere.p2/target/repository/</url>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>copy-resources</id>
<!-- here the phase you need -->
<phase>validate</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>lib/</outputDirectory>
<resources>
<resource>
<directory>resource/</directory>
<filtering>false</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<!-- enable tycho build extension -->
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-maven-plugin</artifactId>
<version>2.2.0</version>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
</project>