diff options
author | Luck <git@lucko.me> | 2018-06-06 15:39:16 +0100 |
---|---|---|
committer | Luck <git@lucko.me> | 2018-06-06 15:39:16 +0100 |
commit | 7d6808cbcfbb0f61f93e536d36968eeda5bd302c (patch) | |
tree | 3271db1ffa6e4d6c1fa5ea4ccc1335b1ac746f46 /sponge/pom.xml | |
parent | 38f0c12483e6eda79ca36dc829ef678a736d2cef (diff) | |
download | spark-7d6808cbcfbb0f61f93e536d36968eeda5bd302c.tar.gz spark-7d6808cbcfbb0f61f93e536d36968eeda5bd302c.tar.bz2 spark-7d6808cbcfbb0f61f93e536d36968eeda5bd302c.zip |
Convert to Gradle
Diffstat (limited to 'sponge/pom.xml')
-rw-r--r-- | sponge/pom.xml | 75 |
1 files changed, 0 insertions, 75 deletions
diff --git a/sponge/pom.xml b/sponge/pom.xml deleted file mode 100644 index d926108..0000000 --- a/sponge/pom.xml +++ /dev/null @@ -1,75 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xmlns="http://maven.apache.org/POM/4.0.0" - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> - <parent> - <artifactId>spark-parent</artifactId> - <groupId>me.lucko</groupId> - <version>1.0-SNAPSHOT</version> - </parent> - <modelVersion>4.0.0</modelVersion> - - <artifactId>spark-sponge</artifactId> - <packaging>jar</packaging> - - <build> - <defaultGoal>clean package</defaultGoal> - <finalName>spark-sponge</finalName> - <resources> - <resource> - <directory>src/main/resources</directory> - <filtering>true</filtering> - </resource> - </resources> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> - <version>${compiler.version}</version> - <configuration> - <source>1.8</source> - <target>1.8</target> - </configuration> - </plugin> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>templating-maven-plugin</artifactId> - <version>1.0.0</version> - <executions> - <execution> - <id>filter-src</id> - <goals> - <goal>filter-sources</goal> - </goals> - </execution> - </executions> - </plugin> - </plugins> - </build> - - <dependencies> - <!-- common --> - <dependency> - <groupId>me.lucko</groupId> - <artifactId>spark-common</artifactId> - <version>${project.version}</version> - <scope>provided</scope> - </dependency> - - <!-- Sponge --> - <dependency> - <groupId>org.spongepowered</groupId> - <artifactId>spongeapi</artifactId> - <version>8.0.0-SNAPSHOT</version> - <scope>provided</scope> - </dependency> - </dependencies> - - <repositories> - <repository> - <id>sponge-repo</id> - <url>https://repo.spongepowered.org/maven</url> - </repository> - </repositories> - -</project> |