/[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 3207 - (show annotations) (download) (as text)
Sat Aug 19 14:06:42 2017 UTC (6 years, 9 months ago) by torben
File MIME type: text/xml
File size: 2788 byte(s)
Outcomment ebean related code
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-R0.1-SNAPSHOT</version>
27 </dependency>
28
29 <!-- https://mvnrepository.com/artifact/io.ebean/ebean -->
30 <!--
31 <dependency>
32 <groupId>io.ebean</groupId>
33 <artifactId>ebean</artifactId>
34 <version>10.3.1</version>
35 </dependency>
36 -->
37 </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 <version>3.6.1</version>
58 <configuration>
59 <showDeprecation>true</showDeprecation>
60 <source>1.8</source>
61 <target>1.8</target>
62 </configuration>
63 </plugin>
64 <plugin>
65 <groupId>org.apache.maven.plugins</groupId>
66 <artifactId>maven-jar-plugin</artifactId>
67 <version>3.0.2</version>
68 <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