-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
152 lines (130 loc) · 6 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.games647</groupId>
<artifactId>craftdiff</artifactId>
<version>1.0</version>
<description>Summarizes the API differences between spigot versions</description>
<url>https://games647.github.io/Craftdiff</url>
<name>Craftdiff</name>
<properties>
<!-- Latest sponge stable -->
<!--<oldVersion>6.1.0-20170502.022019-1</oldVersion>-->
<!--<newVersion>7.0.0-SNAPSHOT</newVersion>-->
<!-- Bukkit version system -->
<!--<oldVersion>1.11.1-R0.1-SNAPSHOT</oldVersion>-->
<!--<oldVersion>1.12-pre2-SNAPSHOT</oldVersion>-->
<!--<newVersion>1.11.1-R0.1-SNAPSHOT</newVersion>-->
<!--<newVersion>1.12-R0.1-SNAPSHOT</newVersion>-->
<!--BungeeCord version system-->
<oldVersion>1.11-SNAPSHOT</oldVersion>
<newVersion>1.12-SNAPSHOT</newVersion>
</properties>
<repositories>
<!--Bukkit-Server-API -->
<repository>
<id>spigot-repo</id>
<url>http://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
<!-- PaperSpigot and Glowstone (uses the same API) -->
<repository>
<id>paper-repo</id>
<url>https://repo.destroystokyo.com/repository/maven-public/</url>
</repository>
<!-- Sportbukkit -->
<repository>
<id>sport-repo</id>
<url>https://repo.extension.ws/content/repositories/snapshots/</url>
</repository>
<!-- Sponge-API -->
<repository>
<id>sponge-repo</id>
<url>http://repo.spongepowered.org/maven</url>
</repository>
<repository>
<id>bungee-repo</id>
<url>https://oss.sonatype.org/content/groups/public/</url>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<groupId>com.github.siom79.japicmp</groupId>
<artifactId>japicmp-maven-plugin</artifactId>
<version>0.10.0</version>
<configuration>
<parameter>
<htmlTitle>Spigot diff from ${oldVersion} to ${newVersion}</htmlTitle>
<!-- We only need the diff not all available classes -->
<onlyModified>true</onlyModified>
<!-- Show only public accessible changes -->
<accessModifier>public</accessModifier>
<!-- Skip dependencies -->
<ignoreMissingClasses>true</ignoreMissingClasses>
<!-- We don't need those files -->
<skipXmlReport>true</skipXmlReport>
<skipDiffReport>true</skipDiffReport>
</parameter>
<oldVersion>
<!-- Spigot old -->
<!--<dependency>-->
<!--<groupId>org.spigotmc</groupId>-->
<!--<artifactId>spigot-api</artifactId>-->
<!--<version>${oldVersion}</version>-->
<!--</dependency>-->
<!--<dependency>-->
<!--<groupId>org.spongepowered</groupId>-->
<!--<artifactId>spongeapi</artifactId>-->
<!--<version>${oldVersion}</version>-->
<!--</dependency>-->
<dependency>
<groupId>net.md-5</groupId>
<artifactId>bungeecord-api</artifactId>
<version>${oldVersion}</version>
</dependency>
</oldVersion>
<newVersion>
<!--<dependency>-->
<!--<groupId>org.spongepowered</groupId>-->
<!--<artifactId>spongeapi</artifactId>-->
<!--<version>${newVersion}</version>-->
<!--</dependency>-->
<!-- Spigot new -->
<!--<dependency>-->
<!--<groupId>org.spigotmc</groupId>-->
<!--<artifactId>spigot-api</artifactId>-->
<!--<version>${newVersion}</version>-->
<!--</dependency>-->
<dependency>
<groupId>net.md-5</groupId>
<artifactId>bungeecord-api</artifactId>
<version>${newVersion}</version>
</dependency>
<!-- PaperSpigot -->
<!--<dependency>-->
<!--<groupId>com.destroystokyo.paper</groupId>-->
<!--<artifactId>paper-api</artifactId>-->
<!--<version>${newVersion}</version>-->
<!--</dependency>-->
<!-- Sportbukkit -->
<!--<dependency>-->
<!--<groupId>tc.oc</groupId>-->
<!--<artifactId>sportbukkit-api</artifactId>-->
<!--<version>${newVersion}</version>-->
<!--</dependency>-->
</newVersion>
</configuration>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>cmp</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>