Skip to content

Commit

Permalink
A bit of 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mastercoms committed Feb 6, 2017
1 parent 89ab2f3 commit 8800ed2
Show file tree
Hide file tree
Showing 30 changed files with 751 additions and 366 deletions.
113 changes: 0 additions & 113 deletions dependency-reduced-pom.xml

This file was deleted.

82 changes: 21 additions & 61 deletions pom.xml
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,81 +1,41 @@
<?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"
<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>org.circuitsoft.slackmc.api</groupId>
<artifactId>SlackMC-API-Bukkit</artifactId>
<version>2.0.0</version>
<packaging>jar</packaging>

<groupId>org.circuitsoft</groupId>
<artifactId>slackmc</artifactId>
<version>2.0.0-SNAPSHOT</version>
<inceptionYear>2014</inceptionYear>
<url>https://github.com/CircuitSoftGroup/SlackMC</url>
<description>Connect your Minecraft server to Slack!</description>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<bukkit.version>1.11.2-R0.1-SNAPSHOT</bukkit.version>
</properties>

<repositories>
<repository>
<id>bungeecord-repo</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
<repository>
<id>bukkit-repo</id>
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
<id>spigotmc-snapshots</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.8.8-R0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>net.gpedro.integrations.slack</groupId>
<artifactId>slack-webhook</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>9.3.5.v20151012</version>
<version>${bukkit.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlet</artifactId>
<version>9.3.5.v20151012</version>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>4.0.23.Final</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<defaultGoal>clean package</defaultGoal>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.3</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<excludes>
<exclude>com.google.code.gson:gson</exclude>
<exclude>org.bukkit:bukkit</exclude>
</excludes>
</artifactSet>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
</project>
18 changes: 0 additions & 18 deletions src/main/java/org/circuitsoft/slackmc/api/bukkit/SlackBukkit.java

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 8800ed2

Please sign in to comment.