aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorLuck <git@lucko.me>2018-05-26 22:52:58 +0100
committerLuck <git@lucko.me>2018-05-27 00:02:02 +0100
commit429eeb35876576d861404cd199b6e9763fc4e5b0 (patch)
tree624e1c05433e8ab5775a0177ecf5d5982de54805 /pom.xml
parent3fe5e5517b1c529d95cf9f43fd8420c66db0092a (diff)
downloadspark-429eeb35876576d861404cd199b6e9763fc4e5b0.tar.gz
spark-429eeb35876576d861404cd199b6e9763fc4e5b0.tar.bz2
spark-429eeb35876576d861404cd199b6e9763fc4e5b0.zip
Initial commit for spark
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml264
1 files changed, 106 insertions, 158 deletions
diff --git a/pom.xml b/pom.xml
index fa20ef9..46272f6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,159 +1,107 @@
-<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>
- <groupId>com.sk89q</groupId>
- <artifactId>warmroast</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- <name>WarmRoast</name>
- <url>http://www.sk89q.com</url>
- <scm>
- <connection>scm:git:git://github.com/sk89q/warmroast.git</connection>
- <url>https://github.com/sk89q/warmroast</url>
- <developerConnection>scm:git:git@github.com:sk89q/warmroast.git</developerConnection>
- </scm>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <distributionManagement>
- <site>
- <id>sk89q-docs-upload</id>
- <url>ftp://sk89q-maven-deploy/worldedit/</url>
- </site>
- <repository>
- <id>maven.sk89q.com</id>
- <url>http://maven.sk89q.com/artifactory/libs-release-local</url>
- </repository>
- <snapshotRepository>
- <id>maven.sk89q.com-snapshot</id>
- <url>http://maven.sk89q.com/artifactory/libs-snapshot-local</url>
- </snapshotRepository>
- </distributionManagement>
- <dependencies>
- <dependency>
- <groupId>org.eclipse.jetty</groupId>
- <artifactId>jetty-servlet</artifactId>
- <version>9.0.3.v20130506</version>
- </dependency>
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <version>2.4</version>
- </dependency>
- <dependency>
- <groupId>net.sf.opencsv</groupId>
- <artifactId>opencsv</artifactId>
- <version>2.0</version>
- </dependency>
- <dependency>
- <groupId>com.beust</groupId>
- <artifactId>jcommander</artifactId>
- <version>1.30</version>
- </dependency>
- </dependencies>
- <build>
- <resources>
- <resource>
- <targetPath>www</targetPath>
- <filtering>false</filtering>
- <directory>${basedir}/src/main/resources/www</directory>
- <includes>
- <include>**/*</include>
- </includes>
- </resource>
- </resources>
- <plugins>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.0</version>
- <configuration>
- <source>1.7</source>
- <target>1.7</target>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <configuration>
- <archive>
- <manifest>
- <mainClass>com.sk89q.warmroast.WarmRoast</mainClass>
- </manifest>
- </archive>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-shade-plugin</artifactId>
- <version>2.1</version>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>shade</goal>
- </goals>
- <configuration>
- <filters>
- <filter>
- <artifact>*:*</artifact>
- <excludes>
- <exclude>META-INF/*.SF</exclude>
- <exclude>META-INF/*.DSA</exclude>
- <exclude>META-INF/*.RSA</exclude>
- </excludes>
- </filter>
- </filters>
- <artifactSet>
- <excludes>
- <exclude>com.sun:tools</exclude>
- </excludes>
- </artifactSet>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- <profiles>
- <profile>
- <id>tools-default</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- <file>
- <exists>${java.home}/../lib/tools.jar</exists>
- </file>
- </activation>
- <properties>
- <toolsJar>${java.home}/../lib/tools.jar</toolsJar>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.sun</groupId>
- <artifactId>tools</artifactId>
- <version>1.6.0</version>
- <scope>system</scope>
- <systemPath>${toolsJar}</systemPath>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>tools-mac</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- <file>
- <exists>${java.home}/../Classes/classes.jar</exists>
- </file>
- </activation>
- <properties>
- <toolsJar>${java.home}/../Classes/classes.jar</toolsJar>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.sun</groupId>
- <artifactId>tools</artifactId>
- <version>1.6.0</version>
- <scope>system</scope>
- <systemPath>${toolsJar}</systemPath>
- </dependency>
- </dependencies>
- </profile>
- </profiles>
+<?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">
+ <modelVersion>4.0.0</modelVersion>
+
+ <groupId>me.lucko</groupId>
+ <artifactId>spark-parent</artifactId>
+ <version>1.0-SNAPSHOT</version>
+
+ <modules>
+ <module>common</module>
+ <module>bukkit</module>
+ <module>bungeecord</module>
+ <module>sponge</module>
+ </modules>
+
+ <name>spark</name>
+ <description>Spark is a CPU profiling plugin based on sk89q's WarmRoast profiler.</description>
+ <url>https://github.com/lucko/spark</url>
+
+ <scm>
+ <connection>scm:git:https://github.com/lucko/spark.git</connection>
+ <developerConnection>scm:git:git@github.com:lucko/spark.git</developerConnection>
+ <url>https://github.com/lucko/spark</url>
+ </scm>
+
+ <packaging>pom</packaging>
+
+ <properties>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+
+ <!-- Disable tests -->
+ <skipTests>true</skipTests>
+ <maven.test.skip>true</maven.test.skip>
+
+ <!-- Standard versions used by the whole project -->
+ <compiler.version>3.7.0</compiler.version>
+ <shade.version>3.1.0</shade.version>
+ </properties>
+
+ <distributionManagement>
+ <snapshotRepository>
+ <id>luck-snapshots</id>
+ <url>https://nexus.lucko.me/repository/maven-snapshots/</url>
+ </snapshotRepository>
+ <repository>
+ <id>luck-releases</id>
+ <url>https://nexus.lucko.me/repository/maven-releases/</url>
+ </repository>
+ </distributionManagement>
+
+ <ciManagement>
+ <system>Jenkins</system>
+ <url>https://ci.lucko.me/job/spark</url>
+ </ciManagement>
+
+ <issueManagement>
+ <system>GitHub</system>
+ <url>https://github.com/lucko/spark/issues</url>
+ </issueManagement>
+
+ <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>
+ <profile>
+ <id>ossrh</id>
+ <distributionManagement>
+ <snapshotRepository>
+ <id>ossrh</id>
+ <url>https://oss.sonatype.org/content/repositories/snapshots</url>
+ </snapshotRepository>
+ <repository>
+ <id>ossrh</id>
+ <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
+ </repository>
+ </distributionManagement>
+ </profile>
+ </profiles>
+
+ <repositories>
+ <repository>
+ <id>luck-repo</id>
+ <url>https://repo.lucko.me/</url>
+ </repository>
+ </repositories>
+
</project>