/[projects]/miscJava/bukkit-minecraft-plugins/CreativeWorld/pom.xml
ViewVC logotype

Contents of /miscJava/bukkit-minecraft-plugins/CreativeWorld/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3238 - (show annotations) (download) (as text)
Wed Jul 18 07:41:35 2018 UTC (5 years, 10 months ago) by torben
File MIME type: text/xml
File size: 2565 byte(s)
Compile with spigot 1.13
1 <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">
2 <modelVersion>4.0.0</modelVersion>
3
4 <groupId>dk.thoerup</groupId>
5 <artifactId>CreativeWorld</artifactId>
6 <version>1.0.0-SNAPSHOT</version>
7 <name>CreativeWorld</name>
8 <url>http://t-hoerup.dk/</url>
9 <packaging>jar</packaging>
10 <description>My own utility collection for bukkit</description>
11
12 <repositories>
13 <repository>
14 <id>spigot-repo</id>
15 <url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
16 </repository>
17 </repositories>
18
19 <dependencies>
20 <dependency>
21 <groupId>org.bukkit</groupId>
22 <artifactId>bukkit</artifactId>
23 <!--<version>1.11-R0.1-SNAPSHOT</version>-->
24 <version>1.13-pre7-R0.1-SNAPSHOT</version>
25 </dependency>
26
27 </dependencies>
28
29
30 <build>
31 <resources>
32 <resource>
33 <targetPath>.</targetPath>
34 <filtering>true</filtering>
35 <directory>${basedir}/src/main/resources/</directory>
36 <includes>
37 <include>plugin.yml</include>
38 <include>config.yml</include>
39 </includes>
40 </resource>
41 </resources>
42
43 <plugins>
44 <plugin>
45 <groupId>org.apache.maven.plugins</groupId>
46 <artifactId>maven-compiler-plugin</artifactId>
47 <version>3.6.0</version>
48 <configuration>
49 <showDeprecation>true</showDeprecation>
50 <source>1.8</source>
51 <target>1.8</target>
52 </configuration>
53 </plugin>
54 <plugin>
55 <groupId>org.apache.maven.plugins</groupId>
56 <artifactId>maven-jar-plugin</artifactId>
57 <version>3.0.2</version>
58 <configuration>
59 <archive>
60 <addMavenDescriptor>true</addMavenDescriptor>
61 <manifest>
62 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
63 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
64 </manifest>
65 </archive>
66 </configuration>
67 </plugin>
68 </plugins>
69 </build>
70 </project>

  ViewVC Help
Powered by ViewVC 1.1.20