/[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 1687 - (hide annotations) (download) (as text)
Mon Feb 6 08:53:39 2012 UTC (12 years, 3 months ago) by torben
File MIME type: text/xml
File size: 2563 byte(s)
build against latest recommended bukkit
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     </repositories>
18    
19     <dependencies>
20     <dependency>
21     <groupId>org.bukkit</groupId>
22     <artifactId>bukkit</artifactId>
23 torben 1687 <version>1.1-R3</version>
24 torben 1685 </dependency>
25     <dependency>
26     <groupId>de.codeinfection</groupId>
27     <artifactId>ApiBukkit</artifactId>
28     <version>1.0.0-SNAPSHOT</version>
29     </dependency>
30    
31     </dependencies>
32    
33    
34     <build>
35     <resources>
36     <resource>
37     <targetPath>.</targetPath>
38     <filtering>true</filtering>
39     <directory>${basedir}/src/main/resources/</directory>
40     <includes>
41     <include>plugin.yml</include>
42     <include>config.yml</include>
43     </includes>
44     </resource>
45     </resources>
46    
47     <plugins>
48     <plugin>
49     <groupId>org.apache.maven.plugins</groupId>
50     <artifactId>maven-compiler-plugin</artifactId>
51     <version>2.3.2</version>
52     <configuration>
53     <showDeprecation>true</showDeprecation>
54     </configuration>
55     </plugin>
56     <plugin>
57     <groupId>org.apache.maven.plugins</groupId>
58     <artifactId>maven-jar-plugin</artifactId>
59     <version>2.3.1</version>
60     <configuration>
61     <archive>
62     <addMavenDescriptor>true</addMavenDescriptor>
63     <manifest>
64     <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
65     <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
66     </manifest>
67     </archive>
68     </configuration>
69     </plugin>
70     </plugins>
71     </build>
72     </project>

  ViewVC Help
Powered by ViewVC 1.1.20