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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3198 - (hide annotations) (download) (as text)
Mon May 29 13:14:05 2017 UTC (7 years ago) by torben
File MIME type: text/xml
File size: 3029 byte(s)
build for bukkit 1.12 / java8
1 torben 1685 <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>HoerupUtils</artifactId>
6     <version>1.0.0-SNAPSHOT</version>
7     <name>HoerupUtils</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 torben 2255 <!--
14 torben 1685 <repository>
15     <id>bukkit-repo</id>
16     <url>http://repo.bukkit.org/content/groups/public/</url>
17     </repository>
18 torben 2255 -->
19 torben 1721 <repository>
20 torben 2255 <id>spigot-repo</id>
21     <url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
22     </repository>
23 torben 3135 <!--
24 torben 2255 <repository>
25 torben 1721 <id>spout-repo</id>
26     <url>http://repo.spout.org/</url>
27     </repository>
28 torben 3135 -->
29 torben 1685 </repositories>
30    
31     <dependencies>
32     <dependency>
33     <groupId>org.bukkit</groupId>
34     <artifactId>bukkit</artifactId>
35 torben 3198 <!--<version>1.11-R0.1-SNAPSHOT</version>-->
36     <version>1.12-pre5-SNAPSHOT</version>
37 torben 1685 </dependency>
38 torben 1935 <!--
39 torben 1685 <dependency>
40 torben 1935 <groupId>de.cubeisland</groupId>
41 torben 1685 <artifactId>ApiBukkit</artifactId>
42     <version>1.0.0-SNAPSHOT</version>
43     </dependency>
44 torben 1935 -->
45 torben 1685 </dependencies>
46    
47    
48     <build>
49     <resources>
50     <resource>
51     <targetPath>.</targetPath>
52     <filtering>true</filtering>
53     <directory>${basedir}/src/main/resources/</directory>
54     <includes>
55     <include>plugin.yml</include>
56     <include>config.yml</include>
57     </includes>
58     </resource>
59     </resources>
60    
61     <plugins>
62     <plugin>
63     <groupId>org.apache.maven.plugins</groupId>
64     <artifactId>maven-compiler-plugin</artifactId>
65 torben 3136 <version>3.6.0</version>
66 torben 1685 <configuration>
67     <showDeprecation>true</showDeprecation>
68 torben 3198 <source>1.8</source>
69     <target>1.8</target>
70 torben 1685 </configuration>
71     </plugin>
72     <plugin>
73     <groupId>org.apache.maven.plugins</groupId>
74     <artifactId>maven-jar-plugin</artifactId>
75 torben 3136 <version>3.0.2</version>
76 torben 1685 <configuration>
77     <archive>
78     <addMavenDescriptor>true</addMavenDescriptor>
79     <manifest>
80     <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
81     <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
82     </manifest>
83     </archive>
84     </configuration>
85     </plugin>
86     </plugins>
87     </build>
88     </project>

  ViewVC Help
Powered by ViewVC 1.1.20