/[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 3203 - (hide annotations) (download) (as text)
Thu Jun 1 13:16:06 2017 UTC (7 years ago) by torben
File MIME type: text/xml
File size: 2767 byte(s)
Code compiles
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 3203
14 torben 1685 <repository>
15 torben 2255 <id>spigot-repo</id>
16     <url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
17     </repository>
18 torben 3203
19 torben 1685 </repositories>
20    
21     <dependencies>
22     <dependency>
23     <groupId>org.bukkit</groupId>
24     <artifactId>bukkit</artifactId>
25 torben 3198 <!--<version>1.11-R0.1-SNAPSHOT</version>-->
26 torben 3201 <version>1.12-pre6-SNAPSHOT</version>
27 torben 1685 </dependency>
28 torben 3203
29     <!-- https://mvnrepository.com/artifact/io.ebean/ebean -->
30     <dependency>
31     <groupId>io.ebean</groupId>
32     <artifactId>ebean</artifactId>
33     <version>10.3.1</version>
34     </dependency>
35 torben 1685 </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 torben 3136 <version>3.6.0</version>
56 torben 1685 <configuration>
57     <showDeprecation>true</showDeprecation>
58 torben 3198 <source>1.8</source>
59     <target>1.8</target>
60 torben 1685 </configuration>
61     </plugin>
62     <plugin>
63     <groupId>org.apache.maven.plugins</groupId>
64     <artifactId>maven-jar-plugin</artifactId>
65 torben 3136 <version>3.0.2</version>
66 torben 1685 <configuration>
67     <archive>
68     <addMavenDescriptor>true</addMavenDescriptor>
69     <manifest>
70     <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
71     <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
72     </manifest>
73     </archive>
74     </configuration>
75     </plugin>
76     </plugins>
77     </build>
78     </project>

  ViewVC Help
Powered by ViewVC 1.1.20