-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
158 lines (157 loc) · 5.78 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
153
154
155
156
157
158
<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>MarketSearch</groupId>
<artifactId>MarketSearch</artifactId>
<version>1.17.1</version>
<name>MarketSearch</name>
<description>A set of helper commands to assist with QuickShop/Plot market worlds</description>
<url>https://github.com/AddstarMC/MarketSearch</url>
<properties>
<build.number/>
<plugin.version>${project.version}-${build.number}</plugin.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<spigot.api.version>1.17</spigot.api.version>
<spigot.version>1.17.1-R0.1-SNAPSHOT</spigot.version>
</properties>
<scm>
<connection>scm:git:[email protected]:AddstarMC/MarketSearch.git</connection>
<developerConnection>scm:git:[email protected]:AddstarMC/MarketSearch.git</developerConnection>
<url>https://github.com/AddstarMC/MarketSearch</url>
<tag>HEAD</tag>
</scm>
<developers>
<developer>
<id>AddstarMC</id>
<name>AddstarMC</name>
<url>http://github.com/AddstarMC</url>
<roles>
<role>developer</role>
<role>maintainer</role>
</roles>
<timezone>10</timezone>
</developer>
</developers>
<distributionManagement>
<repository>
<id>maven.addstar.com.au</id>
<name>maven.addstar.com.au-releases</name>
<url>https://maven.addstar.com.au/artifactory/ext-release-local</url>
</repository>
<snapshotRepository>
<id>maven.addstar.com.au</id>
<name>maven.addstar.com.au-snapshots</name>
<url>https://maven.addstar.com.au/artifactory/ext-snapshot-local</url>
</snapshotRepository>
</distributionManagement>
<repositories>
<repository>
<id>addstar-repo</id>
<url>https://maven.addstar.com.au/artifactory/all-release</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>addstar-snapshot-repo</id>
<url>https://maven.addstar.com.au/artifactory/all-snapshot</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>false</enabled>
</releases>
</repository>
<repository>
<id>spigotmc-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
<repository>
<id>vault-repo</id>
<url>https://nexus.hc.to/content/repositories/pub_releases</url>
</repository>
<repository>
<id>enginehub</id>
<url>https://maven.enginehub.org/repo/</url>
</repository>
<repository>
<id>plotsquared</id>
<url>https://mvn.intellectualsites.com/content/groups/public/</url>
</repository>
<repository>
<id>quickshop-repo</id>
<url>https://repo.codemc.io/repository/maven-public/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>${spigot.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.ghostchu</groupId>
<artifactId>quickshop-bukkit</artifactId>
<version>5.2.0.14</version>
<scope>provided</scope>
<classifier>shaded</classifier>
</dependency>
<dependency>
<groupId>au.com.addstar</groupId>
<artifactId>Monolith</artifactId>
<version>1.16.5-SNAPSHOT</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<groupId>net.kyori</groupId>
<artifactId>adventure-platform-bukkit</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.plotsquared</groupId>
<artifactId>PlotSquared-Core</artifactId>
<version>6.4.0</version>
<optional>true</optional>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.plotsquared</groupId>
<artifactId>PlotSquared-Bukkit</artifactId>
<version>6.4.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.github.rlf</groupId>
<artifactId>uSkyBlock-API</artifactId>
<version>2.7.5</version>
<optional>true</optional>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<resources>
<resource>
<targetPath>.</targetPath>
<filtering>true</filtering>
<directory>${basedir}/src/resources</directory>
<includes>
<include>*.yml</include>
<include>*.csv</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<release>16</release>
</configuration>
</plugin>
</plugins>
</build>
</project>