/[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 3063 - (hide annotations) (download) (as text)
Tue Jul 12 14:23:02 2016 UTC (7 years, 10 months ago) by torben
File MIME type: text/xml
File size: 2880 byte(s)
build against latest (and enable tp)
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    
24     <repository>
25 torben 1721 <id>spout-repo</id>
26     <url>http://repo.spout.org/</url>
27     </repository>
28 torben 1685 </repositories>
29    
30     <dependencies>
31     <dependency>
32     <groupId>org.bukkit</groupId>
33     <artifactId>bukkit</artifactId>
34 torben 3063 <version>1.10.2-R0.1-SNAPSHOT</version>
35 torben 1685 </dependency>
36 torben 1935 <!--
37 torben 1685 <dependency>
38 torben 1935 <groupId>de.cubeisland</groupId>
39 torben 1685 <artifactId>ApiBukkit</artifactId>
40     <version>1.0.0-SNAPSHOT</version>
41     </dependency>
42 torben 1935 -->
43 torben 1685 </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 torben 2439 <version>3.2</version>
64 torben 1685 <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 torben 2437 <version>2.5</version>
72 torben 1685 <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