diff options
Diffstat (limited to 'universal')
-rw-r--r-- | universal/pom.xml | 102 |
1 files changed, 0 insertions, 102 deletions
diff --git a/universal/pom.xml b/universal/pom.xml deleted file mode 100644 index 507df7b..0000000 --- a/universal/pom.xml +++ /dev/null @@ -1,102 +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-universal</artifactId> - <packaging>jar</packaging> - - <build> - <defaultGoal>clean package</defaultGoal> - <finalName>spark</finalName> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-shade-plugin</artifactId> - <version>${shade.version}</version> - <executions> - <execution> - <phase>package</phase> - <goals> - <goal>shade</goal> - </goals> - <configuration> - <minimizeJar>false</minimizeJar> - <createDependencyReducedPom>false</createDependencyReducedPom> - <relocations> - <!-- shaded dependencies --> - <relocation> - <pattern>okio</pattern> - <shadedPattern>me.lucko.spark.lib.okio</shadedPattern> - </relocation> - <relocation> - <pattern>okhttp3</pattern> - <shadedPattern>me.lucko.spark.lib.okhttp3</shadedPattern> - </relocation> - </relocations> - </configuration> - </execution> - </executions> - </plugin> - </plugins> - </build> - - <profiles> - <profile> - <id>sign</id> - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-gpg-plugin</artifactId> - <version>1.6</version> - <executions> - <execution> - <id>sign-artifacts</id> - <phase>verify</phase> - <goals> - <goal>sign</goal> - </goals> - </execution> - </executions> - </plugin> - </plugins> - </build> - </profile> - </profiles> - - <dependencies> - <dependency> - <groupId>me.lucko</groupId> - <artifactId>spark-common</artifactId> - <version>${project.version}</version> - <scope>compile</scope> - </dependency> - - <dependency> - <groupId>me.lucko</groupId> - <artifactId>spark-bukkit</artifactId> - <version>1.0-SNAPSHOT</version> - <scope>compile</scope> - </dependency> - <dependency> - <groupId>me.lucko</groupId> - <artifactId>spark-bungeecord</artifactId> - <version>1.0-SNAPSHOT</version> - <scope>compile</scope> - </dependency> - <dependency> - <groupId>me.lucko</groupId> - <artifactId>spark-sponge</artifactId> - <version>1.0-SNAPSHOT</version> - <scope>compile</scope> - </dependency> - </dependencies> - -</project> |