/[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 1767 - (hide annotations) (download) (as text)
Tue Apr 3 10:06:23 2012 UTC (12 years, 2 months ago) by torben
File MIME type: text/xml
File size: 2688 byte(s)
compile for 1.2.4 and enable database in plugin.yml
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 1767 <version>1.2.4-R1.0</version>
28 torben 1685 </dependency>
29     <dependency>
30     <groupId>de.codeinfection</groupId>
31     <artifactId>ApiBukkit</artifactId>
32     <version>1.0.0-SNAPSHOT</version>
33     </dependency>
34    
35     </dependencies>
36    
37    
38     <build>
39     <resources>
40     <resource>
41     <targetPath>.</targetPath>
42     <filtering>true</filtering>
43     <directory>${basedir}/src/main/resources/</directory>
44     <includes>
45     <include>plugin.yml</include>
46     <include>config.yml</include>
47     </includes>
48     </resource>
49     </resources>
50    
51     <plugins>
52     <plugin>
53     <groupId>org.apache.maven.plugins</groupId>
54     <artifactId>maven-compiler-plugin</artifactId>
55     <version>2.3.2</version>
56     <configuration>
57     <showDeprecation>true</showDeprecation>
58     </configuration>
59     </plugin>
60     <plugin>
61     <groupId>org.apache.maven.plugins</groupId>
62     <artifactId>maven-jar-plugin</artifactId>
63     <version>2.3.1</version>
64     <configuration>
65     <archive>
66     <addMavenDescriptor>true</addMavenDescriptor>
67     <manifest>
68     <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
69     <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
70     </manifest>
71     </archive>
72     </configuration>
73     </plugin>
74     </plugins>
75     </build>
76     </project>

  ViewVC Help
Powered by ViewVC 1.1.20