-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml.patch
123 lines (123 loc) · 3.86 KB
/
pom.xml.patch
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
--- a/pom.xml
+++ /dev/null
@@ -1,120 +_,0 @@
-<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>net.milkbowl.vault</groupId>
- <artifactId>VaultAPI</artifactId>
- <version>1.7</version>
-
- <name>VaultAPI</name>
- <description>Vault is a Permissions & Economy API to allow plugins to more easily hook into these systems without needing to hook each individual system themselves.
-
-Vault currently supports the following: Permissions 3, PEX, GroupManager, bPerms, bPerms2, SimplyPerms, DroxPerms, zPermissions, rscPermissions, KPerms, Starburst, iConomy (4/5/6) BOSEconomy *6/7), EssentialsEcon, 3Co, MultiConomy, MineConomy, EconXP, eWallet, CurrencyCore, XPBank, CraftConomy, AEco, SDFEconomy, TAEcon
- </description>
- <url>http://dev.bukkit.org/server-mods/vault/</url>
-
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <bukkitVersion>1.13.1-R0.1-SNAPSHOT</bukkitVersion>
- </properties>
-
- <!-- Organization -->
- <organization>
- <name>MilkBowl</name>
- <url>https://github.com/MilkBowl</url>
- </organization>
-
- <scm>
- <url>https://github.com/MilkBowl/VaultAPI</url>
- <connection>scm:git:git://github.com:MilkBowl/VaultAPI.git</connection>
- <developerConnection>scm:git:git@github.com:MilkBowl/VaultAPI.git</developerConnection>
- </scm>
-
- <ciManagement>
- <system>Travis-CI</system>
- <url>https://travis-ci.org/MilkBowl/VaultAPI</url>
- </ciManagement>
-
- <issueManagement>
- <system>GitHub</system>
- <url>https://github.com/MilkBowl/VaultAPI/issues</url>
- </issueManagement>
-
- <repositories>
- <repository>
- <id>spigot-repo</id>
- <url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
- </repository>
- </repositories>
-
- <distributionManagement>
- <repository>
- <id>github</id>
- <name>GitHub Packages</name>
- <url>https://maven.pkg.github.com/milkbowl/github-releases</url>
- </repository>
- </distributionManagement>
-
- <dependencies>
- <dependency>
- <groupId>org.bukkit</groupId>
- <artifactId>bukkit</artifactId>
- <version>${bukkitVersion}</version>
- <scope>provided</scope>
- </dependency>
- <!-- Test Dependency -->
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.13.1</version>
- <type>jar</type>
- <scope>test</scope>
- <optional>true</optional>
- </dependency>
- </dependencies>
-
- <build>
- <defaultGoal>clean install</defaultGoal>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.8.1</version>
- <configuration>
- <source>1.8</source>
- <target>1.8</target>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-source-plugin</artifactId>
- <version>3.2.1</version>
- <executions>
- <execution>
- <id>attach-sources</id>
- <phase>verify</phase>
- <goals>
- <goal>jar-no-fork</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <version>3.2.0</version>
- <configuration>
- <show>public</show>
- <windowtitle>Vault</windowtitle>
- <verbose>false</verbose>
- <author>true</author>
- <version>true</version>
- <linksource>true</linksource>
- <notimestamp>true</notimestamp>
- <bottom><![CDATA[<b>Milkbowl, 2020</b>]]></bottom>
- <reportOutputDirectory>${project.build.directory}</reportOutputDirectory>
- <destDir>javadoc-latest</destDir>
- </configuration>
- </plugin>
- </plugins>
- </build>
-</project>