-
Notifications
You must be signed in to change notification settings - Fork 0
/
dependency-reduced-pom.xml
74 lines (73 loc) · 2.37 KB
/
dependency-reduced-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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>ch.inter.project</groupId>
<artifactId>gaia-cluster</artifactId>
<version>1.0</version>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>GaiaClusterDemo</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.16.14</version>
<scope>provided</scope>
</dependency>
</dependencies>
<properties>
<lombok.version>1.16.14</lombok.version>
<commons-io.version>2.5</commons-io.version>
<univocity-parsers.version>2.3.1</univocity-parsers.version>
<commons-codec.version>1.10</commons-codec.version>
<commons-lang3.version>3.5</commons-lang3.version>
<jsoup.version>1.10.2</jsoup.version>
<spark-cassandra.version>2.0.0-RC1</spark-cassandra.version>
<log4j.version>1.2.17</log4j.version>
<spark-cassandra-java.version>1.6.0-M1</spark-cassandra-java.version>
<cfg4j-core.version>4.4.0</cfg4j-core.version>
<spark.version>2.1.0</spark.version>
</properties>
</project>