/[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 3135 - (hide annotations) (download) (as text)
Fri Nov 18 14:09:56 2016 UTC (7 years, 6 months ago) by torben
File MIME type: text/xml
File size: 2888 byte(s)
out-comment spout from maven
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 3063 <version>1.10.2-R0.1-SNAPSHOT</version>
36 torben 1685 </dependency>
37 torben 1935 <!--
38 torben 1685 <dependency>
39 torben 1935 <groupId>de.cubeisland</groupId>
40 torben 1685 <artifactId>ApiBukkit</artifactId>
41     <version>1.0.0-SNAPSHOT</version>
42     </dependency>
43 torben 1935 -->
44 torben 1685 </dependencies>
45    
46    
47     <build>
48     <resources>
49     <resource>
50     <targetPath>.</targetPath>
51     <filtering>true</filtering>
52     <directory>${basedir}/src/main/resources/</directory>
53     <includes>
54     <include>plugin.yml</include>
55     <include>config.yml</include>
56     </includes>
57     </resource>
58     </resources>
59    
60     <plugins>
61     <plugin>
62     <groupId>org.apache.maven.plugins</groupId>
63     <artifactId>maven-compiler-plugin</artifactId>
64 torben 2439 <version>3.2</version>
65 torben 1685 <configuration>
66     <showDeprecation>true</showDeprecation>
67     </configuration>
68     </plugin>
69     <plugin>
70     <groupId>org.apache.maven.plugins</groupId>
71     <artifactId>maven-jar-plugin</artifactId>
72 torben 2437 <version>2.5</version>
73 torben 1685 <configuration>
74     <archive>
75     <addMavenDescriptor>true</addMavenDescriptor>
76     <manifest>
77     <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
78     <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
79     </manifest>
80     </archive>
81     </configuration>
82     </plugin>
83     </plugins>
84     </build>
85     </project>

  ViewVC Help
Powered by ViewVC 1.1.20