/[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 2439 - (show annotations) (download) (as text)
Mon Mar 9 14:38:59 2015 UTC (9 years, 2 months ago) by torben
File MIME type: text/xml
File size: 2879 byte(s)
bump mvn compiler
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 </repositories>
29
30 <dependencies>
31 <dependency>
32 <groupId>org.bukkit</groupId>
33 <artifactId>bukkit</artifactId>
34 <version>1.8.3-R0.1-SNAPSHOT</version>
35 </dependency>
36 <!--
37 <dependency>
38 <groupId>de.cubeisland</groupId>
39 <artifactId>ApiBukkit</artifactId>
40 <version>1.0.0-SNAPSHOT</version>
41 </dependency>
42 -->
43 </dependencies>
44
45
46 <build>
47 <resources>
48 <resource>
49 <targetPath>.</targetPath>
50 <filtering>true</filtering>
51 <directory>${basedir}/src/main/resources/</directory>
52 <includes>
53 <include>plugin.yml</include>
54 <include>config.yml</include>
55 </includes>
56 </resource>
57 </resources>
58
59 <plugins>
60 <plugin>
61 <groupId>org.apache.maven.plugins</groupId>
62 <artifactId>maven-compiler-plugin</artifactId>
63 <version>3.2</version>
64 <configuration>
65 <showDeprecation>true</showDeprecation>
66 </configuration>
67 </plugin>
68 <plugin>
69 <groupId>org.apache.maven.plugins</groupId>
70 <artifactId>maven-jar-plugin</artifactId>
71 <version>2.5</version>
72 <configuration>
73 <archive>
74 <addMavenDescriptor>true</addMavenDescriptor>
75 <manifest>
76 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
77 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
78 </manifest>
79 </archive>
80 </configuration>
81 </plugin>
82 </plugins>
83 </build>
84 </project>

  ViewVC Help
Powered by ViewVC 1.1.20