forked from cnescatlab/i-CodeCNES
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
68 lines (63 loc) · 2.31 KB
/
pom.xml
File metadata and controls
68 lines (63 loc) · 2.31 KB
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
60
61
62
63
64
65
66
67
68
<?xml version="1.0" encoding="UTF-8"?>
<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>fr.cnes.icode</groupId>
<artifactId>parent</artifactId>
<version>dev</version>
</parent>
<artifactId>export-xml</artifactId>
<version>${icode.version}</version>
<packaging>jar</packaging>
<name>Export XML</name>
<dependencies>
<dependency>
<groupId>fr.cnes.icode</groupId>
<artifactId>icode-core</artifactId>
<version>${icode.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jdom</groupId>
<artifactId>jdom2</artifactId>
<version>2.0.6.1</version>
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<minimizeJar>true</minimizeJar>
<filters>
<filter>
<artifact>fr.cnes.icode:export-xml</artifact>
<includes>
<include>**</include>
</includes>
</filter>
<filter>
<artifact>fr.cnes.icode:fr.cnes.icode</artifact>
<excludes>
<exclude>fr/cnes/analysis/**</exclude>
</excludes>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>