File tree Expand file tree Collapse file tree 3 files changed +48
-4
lines changed Expand file tree Collapse file tree 3 files changed +48
-4
lines changed Original file line number Diff line number Diff line change
1
+ <settings xmlns =" http://maven.apache.org/SETTINGS/1.0.0"
2
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
+ xsi : schemaLocation =" http://maven.apache.org/SETTINGS/1.0.0
4
+ http://maven.apache.org/xsd/settings-1.0.0.xsd" >
5
+
6
+ <activeProfiles >
7
+ <activeProfile >github</activeProfile >
8
+ </activeProfiles >
9
+
10
+ <profiles >
11
+ <profile >
12
+ <id >github</id >
13
+ <repositories >
14
+ <repository >
15
+ <id >central</id >
16
+ <url >https://repo1.maven.org/maven2</url >
17
+ <releases ><enabled >true</enabled ></releases >
18
+ <snapshots ><enabled >true</enabled ></snapshots >
19
+ </repository >
20
+ <repository >
21
+ <id >github</id >
22
+ <name >GitHub OWNER Apache Maven Packages</name >
23
+ <url >https://maven.pkg.github.com/SourceWriters/vCompat</url >
24
+ </repository >
25
+ </repositories >
26
+ </profile >
27
+ </profiles >
28
+
29
+ <servers >
30
+ <server >
31
+ <id >github</id >
32
+ <username >${env.MAVEN_USER}</username >
33
+ <password >${env.MAVEN_PASSWORD}</password >
34
+ </server >
35
+ </servers >
36
+ </settings >
Original file line number Diff line number Diff line change 20
20
</repository >
21
21
</repositories >
22
22
23
+ <distributionManagement >
24
+ <repository >
25
+ <id >github</id >
26
+ <name >GitHub OWNER Apache Maven Packages</name >
27
+ <url >https://maven.pkg.github.com/SourceWriters/vCompat</url >
28
+ </repository >
29
+ </distributionManagement >
30
+
23
31
<dependencies >
24
32
<!-- Mojang -->
25
33
<dependency >
94
102
<version >5.5.2</version >
95
103
<scope >test</scope >
96
104
</dependency >
97
-
105
+
98
106
<!-- All Minecraft versions (add down here) -->
99
107
<!-- <dependency>
100
108
<groupId>org.spigotmc</groupId>
112
120
</exclusion>
113
121
</exclusions>
114
122
</dependency> -->
115
-
123
+
116
124
<dependency >
117
125
<groupId >bukkit</groupId >
118
126
<artifactId >spigot-1.16.4</artifactId >
233
241
<systemPath >${project.basedir} /libraries/spigot/spigot-1.8.jar</systemPath >
234
242
<type >jar</type >
235
243
</dependency >
236
-
244
+
237
245
</dependencies >
238
246
239
247
<properties >
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ mkdir -p $1/libraries/spigot
3
3
echo " Downloading Spigot files..."
4
4
versions=$1 /scripts/data/versions.txt
5
5
while read line; do
6
- if [ -z " $line " ]; then
6
+ if [ -z " $line " ]; then
7
7
continue
8
8
fi
9
9
echo " Downloading Spigot $line "
You can’t perform that action at this time.
0 commit comments