/[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 3227 - (hide annotations) (download) (as text)
Wed Apr 18 13:18:33 2018 UTC (6 years, 1 month ago) by torben
File MIME type: text/xml
File size: 2790 byte(s)
use newer bukkit api
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 3227 <version>1.12.2-R0.1-SNAPSHOT</version>
27 torben 1685 </dependency>
28 torben 3203
29     <!-- https://mvnrepository.com/artifact/io.ebean/ebean -->
30 torben 3207 <!--
31 torben 3203 <dependency>
32     <groupId>io.ebean</groupId>
33     <artifactId>ebean</artifactId>
34     <version>10.3.1</version>
35     </dependency>
36 torben 3207 -->
37 torben 1685 </dependencies>
38    
39    
40     <build>
41     <resources>
42     <resource>
43     <targetPath>.</targetPath>
44     <filtering>true</filtering>
45     <directory>${basedir}/src/main/resources/</directory>
46     <includes>
47     <include>plugin.yml</include>
48     <include>config.yml</include>
49     </includes>
50     </resource>
51     </resources>
52    
53     <plugins>
54     <plugin>
55     <groupId>org.apache.maven.plugins</groupId>
56     <artifactId>maven-compiler-plugin</artifactId>
57 torben 3206 <version>3.6.1</version>
58 torben 1685 <configuration>
59     <showDeprecation>true</showDeprecation>
60 torben 3198 <source>1.8</source>
61     <target>1.8</target>
62 torben 1685 </configuration>
63     </plugin>
64     <plugin>
65     <groupId>org.apache.maven.plugins</groupId>
66     <artifactId>maven-jar-plugin</artifactId>
67 torben 3136 <version>3.0.2</version>
68 torben 1685 <configuration>
69     <archive>
70     <addMavenDescriptor>true</addMavenDescriptor>
71     <manifest>
72     <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
73     <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
74     </manifest>
75     </archive>
76     </configuration>
77     </plugin>
78     </plugins>
79     </build>
80     </project>

  ViewVC Help
Powered by ViewVC 1.1.20