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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3201 - (show annotations) (download) (as text)
Wed May 31 08:56:00 2017 UTC (6 years, 11 months ago) by torben
File MIME type: text/xml
File size: 2839 byte(s)
Code cleanup(still doesn't compile)
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>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 <!--
14 <repository>
15 <id>bukkit-repo</id>
16 <url>http://repo.bukkit.org/content/groups/public/</url>
17 </repository>
18 -->
19 <repository>
20 <id>spigot-repo</id>
21 <url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
22 </repository>
23 <!--
24 <repository>
25 <id>spout-repo</id>
26 <url>http://repo.spout.org/</url>
27 </repository>
28 -->
29 </repositories>
30
31 <dependencies>
32 <dependency>
33 <groupId>org.bukkit</groupId>
34 <artifactId>bukkit</artifactId>
35 <!--<version>1.11-R0.1-SNAPSHOT</version>-->
36 <version>1.12-pre6-SNAPSHOT</version>
37 </dependency>
38 </dependencies>
39
40
41 <build>
42 <resources>
43 <resource>
44 <targetPath>.</targetPath>
45 <filtering>true</filtering>
46 <directory>${basedir}/src/main/resources/</directory>
47 <includes>
48 <include>plugin.yml</include>
49 <include>config.yml</include>
50 </includes>
51 </resource>
52 </resources>
53
54 <plugins>
55 <plugin>
56 <groupId>org.apache.maven.plugins</groupId>
57 <artifactId>maven-compiler-plugin</artifactId>
58 <version>3.6.0</version>
59 <configuration>
60 <showDeprecation>true</showDeprecation>
61 <source>1.8</source>
62 <target>1.8</target>
63 </configuration>
64 </plugin>
65 <plugin>
66 <groupId>org.apache.maven.plugins</groupId>
67 <artifactId>maven-jar-plugin</artifactId>
68 <version>3.0.2</version>
69 <configuration>
70 <archive>
71 <addMavenDescriptor>true</addMavenDescriptor>
72 <manifest>
73 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
74 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
75 </manifest>
76 </archive>
77 </configuration>
78 </plugin>
79 </plugins>
80 </build>
81 </project>

  ViewVC Help
Powered by ViewVC 1.1.20