Switch to gradle build

This commit is contained in:
Mike Primm 2018-08-11 23:11:20 -05:00
parent 3807de6238
commit ef3a8c356c
17 changed files with 770 additions and 681 deletions

View file

@ -1 +1,2 @@
/target/
/build/

10
helper113/build.gradle Normal file
View file

@ -0,0 +1,10 @@
description = 'dynmap-helper-1.13'
dependencies {
compile project(':dynmap-helper')
compile group: 'us.dynmap', name: 'dynmap-api', version: "${project.version}"
compile group: 'us.dynmap', name: 'DynmapCore', version: "${project.version}"
compile group: 'org.bukkit', name: 'bukkit', version:'1.13-R0.1-SNAPSHOT'
compile group: 'org.bukkit', name: 'craftbukkit', version:'1.13-R0.1-SNAPSHOT'
}

View file

@ -1,50 +0,0 @@
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>us.dynmap</groupId>
<artifactId>dynmap-common</artifactId>
<version>3.0-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<artifactId>dynmap-helper-113</artifactId>
<name>dynmap-helper-1.13</name>
<groupId>us.dynmap</groupId>
<dependencies>
<dependency>
<groupId>us.dynmap</groupId>
<artifactId>dynmap-helper</artifactId>
<version>3.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>us.dynmap</groupId>
<artifactId>dynmap-api</artifactId>
<version>3.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>us.dynmap</groupId>
<artifactId>DynmapCore</artifactId>
<version>3.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.13-R0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>craftbukkit</artifactId>
<version>1.13-R0.1-SNAPSHOT</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>dynmap-repo</id>
<url>http://repo.mikeprimm.com/</url>
</repository>
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
</repositories>
<version>3.0-SNAPSHOT</version>
</project>