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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3197 - (hide annotations) (download) (as text)
Mon May 29 13:12:51 2017 UTC (7 years ago) by torben
File MIME type: text/xml
File size: 2560 byte(s)
build for bukkit 1.12 / java8
1 torben 1696 <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 torben 3138 <id>spigot-repo</id>
15     <url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
16 torben 1696 </repository>
17     </repositories>
18    
19     <dependencies>
20     <dependency>
21     <groupId>org.bukkit</groupId>
22     <artifactId>bukkit</artifactId>
23 torben 3197 <!--<version>1.11-R0.1-SNAPSHOT</version>-->
24     <version>1.12-pre5-SNAPSHOT</version>
25 torben 1696 </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 torben 3138 <version>3.6.0</version>
48 torben 1696 <configuration>
49     <showDeprecation>true</showDeprecation>
50 torben 3197 <source>1.8</source>
51     <target>1.8</target>
52 torben 1696 </configuration>
53     </plugin>
54     <plugin>
55     <groupId>org.apache.maven.plugins</groupId>
56     <artifactId>maven-jar-plugin</artifactId>
57 torben 3138 <version>3.0.2</version>
58 torben 1696 <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