-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpom.xml
More file actions
107 lines (107 loc) · 4.1 KB
/
pom.xml
File metadata and controls
107 lines (107 loc) · 4.1 KB
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
<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>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<mainClass>${project.groupId}.${project.artifactId}</mainClass>
<api.version>1.8</api.version>
</properties>
<!-- Project information -->
<groupId>com.pablo67340.SQLiteLib</groupId>
<artifactId>SQLiteLib</artifactId>
<version>1.0</version>
<name>SQLiteLib</name>
<url>https://www.spigotmc.org/resources/sqlitelib.46801/</url>
<description>This library will make using SQLite super easy! Ditch those YML files, switch to SQLite!</description>
<!-- Organization -->
<organization>
<name>pablo67340</name>
<url>https://github.com/pablo67340</url>
</organization>
<scm>
<url>https://github.com/pablo67340/SQLiteLib</url>
<connection>scm:git:git://github.com:pablo67340/SQLiteLib.git</connection>
<developerConnection>scm:git:git@github.com:pablo67340/SQLiteLib.git</developerConnection>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/pablo67340/SQLiteLib/issues</url>
</issueManagement>
<distributionManagement>
<repository>
<id>pub-repo</id>
<name>Public Releases</name>
<url>http://nexus.theyeticave.net/content/repositories/pub_releases/</url>
</repository>
<snapshotRepository>
<id>pub-repo</id>
<name>Public Snapshots</name>
<url>http://nexus.theyeticave.net/content/repositories/pub_snapshots/</url>
</snapshotRepository>
</distributionManagement>
<repositories>
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
<repository>
<id>SilkSpawners-Repo</id>
<url>https://ci.dustplanet.de/plugin/repository/everything/</url>
</repository>
<repository>
<id>vault-repo</id>
<url>http://nexus.hc.to/content/repositories/pub_releases</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.20.2-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<defaultGoal>clean install</defaultGoal>
<sourceDirectory>src/</sourceDirectory>
<resources>
<resource>
<directory>${project.basedir}</directory>
<filtering>true</filtering>
<includes>
<include>plugin.yml</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.3</version>
<configuration>
<artifactSet>
<includes>
<include>com.pablo67340.GUIShop</include>
</includes>
</artifactSet>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>