-
Notifications
You must be signed in to change notification settings - Fork 23
/
pom.xml
127 lines (119 loc) · 3.63 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
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<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>com.randude14.hungergames</groupId>
<artifactId>MyHungerGames</artifactId>
<version>1.2-dev</version>
<packaging>jar</packaging>
<name>MyHungerGames</name>
<url>mcmyhg.com</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<!-- Build settings -->
<build>
<defaultGoal>clean install</defaultGoal>
</build>
<profiles>
<profile>
<activation>
<property>
<name>jenkins</name>
</property>
</activation>
<id>jenkins</id>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.groovy.maven</groupId>
<artifactId>gmaven-plugin</artifactId>
<version>1.0</version>
<executions>
<execution>
<id>set-properties</id>
<phase>validate</phase>
<goals>
<goal>execute</goal>
</goals>
<configuration>
<properties>
<name></name>
</properties>
<source>
StringBuilder builder = new StringBuilder();
builder.append(project.artifactId).append("-").append(project.version);
if (project.version.split("-").length == 1) {
name = builder.toString();
} else {
java.text.SimpleDateFormat sdf = new java.text.SimpleDateFormat("MMddyyyyHHmm");
// name = builder.append("-").append(System.currentTimeMillis()).toString();
name = builder.append("-").append(sdf.format(new Date())).toString();
}
print(name);
project.build.finalName = name;
</source>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<repositories>
<repository>
<id>bukkit-repo</id>
<url>http://repo.bukkit.org/content/groups/public/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>codehaus.org</id>
<url>http://snapshots.repository.codehaus.org</url>
</pluginRepository>
</pluginRepositories>
<ciManagement>
<system>jenkins</system>
<url>http://ci.chrisgward.com</url>
</ciManagement>
<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.5.1-R0.2-SNAPSHOT</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>net.milkbowl.vault</groupId>
<artifactId>Vault</artifactId>
<version>1.2.15</version>
<!-- Because we don't have a repo for this dep! -->
<scope>system</scope>
<systemPath>${project.basedir}/libs/Vault.jar</systemPath>
</dependency>
<dependency>
<groupId>de.diddiz.LogBlock</groupId>
<artifactId>LogBlock</artifactId>
<version>1.52</version>
<!-- Because we don't have a repo for this dep! -->
<scope>system</scope>
<systemPath>${project.basedir}/libs/LogBlock.jar</systemPath>
</dependency>
<dependency>
<groupId>uk.co.oliwali.HawkEye</groupId>
<artifactId>HawkEye</artifactId>
<version>1.0.7b</version>
<!-- Because we don't have a repo for this dep! -->
<scope>system</scope>
<systemPath>${project.basedir}/libs/HawkEye.jar</systemPath>
</dependency>
<dependency>
<groupId>com.onarandombox.MultiverseAdventure</groupId>
<artifactId>Multiverse-Adventure</artifactId>
<version>2.5</version>
<!-- Because we don't have a repo for this dep! -->
<scope>system</scope>
<systemPath>${project.basedir}/libs/Multiverse-Adventure.jar</systemPath>
</dependency>
</dependencies>
</project>