-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdependency-reduced-pom.xml
106 lines (105 loc) · 3.54 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<?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>me.RobertoD26.Fireworkjoin</groupId>
<artifactId>FireworkJoin</artifactId>
<version>1.1.2</version>
<issueManagement>
<system>MantisHub</system>
<url>https://voltaplugindev.mantishub.com/</url>
</issueManagement>
<ciManagement>
<system>jenkins</system>
<url>http://ec2-54-91-134-168.compute-1.amazonaws.com/jenkins/</url>
</ciManagement>
<build>
<sourceDirectory>C:\Users\Corey\workspace\Firework join\src\main\java</sourceDirectory>
<scriptSourceDirectory>C:\Users\Corey\workspace\Firework join\src\main\scripts</scriptSourceDirectory>
<testSourceDirectory>C:\Users\Corey\workspace\Firework join\src\test\java</testSourceDirectory>
<outputDirectory>C:\Users\Corey\workspace\Firework join\target\classes</outputDirectory>
<testOutputDirectory>C:\Users\Corey\workspace\Firework join\target\test-classes</testOutputDirectory>
<resources>
<resource>
<directory>C:\Users\Corey\workspace\Firework join\src\main\resources</directory>
</resource>
</resources>
<testResources>
<testResource>
<directory>C:\Users\Corey\workspace\Firework join\src\test\resources</directory>
</testResource>
</testResources>
<directory>C:\Users\Corey\workspace\Firework join\target</directory>
<finalName>FireworkJoin-1.1.2</finalName>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>com.google.code.maven-replacer-plugin</groupId>
<artifactId>replacer</artifactId>
<version>1.5.3</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>replace</goal>
</goals>
</execution>
</executions>
<configuration>
<file>src/main/resources/plugin.yml</file>
<replacements>
<replacement>
<token>mvn-version</token>
<value>${project.version}</value>
</replacement>
</replacements>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4.2</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>destroystokyo-repo</id>
<url>https://repo.destroystokyo.com/repository/maven-public/</url>
</repository>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>central</id>
<name>Central Repository</name>
<url>http://repo.maven.apache.org/maven2</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<releases>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>central</id>
<name>Central Repository</name>
<url>http://repo.maven.apache.org/maven2</url>
</pluginRepository>
</pluginRepositories>
</project>