/[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 1935 - (hide annotations) (download) (as text)
Wed Mar 20 14:50:00 2013 UTC (11 years, 2 months ago) by torben
File MIME type: text/xml
File size: 2711 byte(s)
Use com.sun.net.httpserver instead of BukkitApi
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     <repository>
14     <id>bukkit-repo</id>
15     <url>http://repo.bukkit.org/content/groups/public/</url>
16     </repository>
17 torben 1721 <repository>
18     <id>spout-repo</id>
19     <url>http://repo.spout.org/</url>
20     </repository>
21 torben 1685 </repositories>
22    
23     <dependencies>
24     <dependency>
25     <groupId>org.bukkit</groupId>
26     <artifactId>bukkit</artifactId>
27 torben 1910 <version>1.4.5-R1.0</version>
28 torben 1685 </dependency>
29 torben 1935 <!--
30 torben 1685 <dependency>
31 torben 1935 <groupId>de.cubeisland</groupId>
32 torben 1685 <artifactId>ApiBukkit</artifactId>
33     <version>1.0.0-SNAPSHOT</version>
34     </dependency>
35 torben 1935 -->
36 torben 1685 </dependencies>
37    
38    
39     <build>
40     <resources>
41     <resource>
42     <targetPath>.</targetPath>
43     <filtering>true</filtering>
44     <directory>${basedir}/src/main/resources/</directory>
45     <includes>
46     <include>plugin.yml</include>
47     <include>config.yml</include>
48     </includes>
49     </resource>
50     </resources>
51    
52     <plugins>
53     <plugin>
54     <groupId>org.apache.maven.plugins</groupId>
55     <artifactId>maven-compiler-plugin</artifactId>
56     <version>2.3.2</version>
57     <configuration>
58     <showDeprecation>true</showDeprecation>
59     </configuration>
60     </plugin>
61     <plugin>
62     <groupId>org.apache.maven.plugins</groupId>
63     <artifactId>maven-jar-plugin</artifactId>
64     <version>2.3.1</version>
65     <configuration>
66     <archive>
67     <addMavenDescriptor>true</addMavenDescriptor>
68     <manifest>
69     <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
70     <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
71     </manifest>
72     </archive>
73     </configuration>
74     </plugin>
75     </plugins>
76     </build>
77     </project>

  ViewVC Help
Powered by ViewVC 1.1.20