/[projects]/miscJava/bukkit-minecraft-plugins/HoerupUtils/pom.xml
ViewVC logotype

Contents of /miscJava/bukkit-minecraft-plugins/HoerupUtils/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3203 - (show annotations) (download) (as text)
Thu Jun 1 13:16:06 2017 UTC (6 years, 11 months ago) by torben
File MIME type: text/xml
File size: 2767 byte(s)
Code compiles
1 <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
14 <repository>
15 <id>spigot-repo</id>
16 <url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
17 </repository>
18
19 </repositories>
20
21 <dependencies>
22 <dependency>
23 <groupId>org.bukkit</groupId>
24 <artifactId>bukkit</artifactId>
25 <!--<version>1.11-R0.1-SNAPSHOT</version>-->
26 <version>1.12-pre6-SNAPSHOT</version>
27 </dependency>
28
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 </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>3.6.0</version>
56 <configuration>
57 <showDeprecation>true</showDeprecation>
58 <source>1.8</source>
59 <target>1.8</target>
60 </configuration>
61 </plugin>
62 <plugin>
63 <groupId>org.apache.maven.plugins</groupId>
64 <artifactId>maven-jar-plugin</artifactId>
65 <version>3.0.2</version>
66 <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