Skip to content

Commit

Permalink
Merge pull request #30 from sgdc3/master
Browse files Browse the repository at this point in the history
Fix maven transitive dependencies
  • Loading branch information
dmulloy2 authored Jul 6, 2016
2 parents 171e4b8 + 8abeddf commit 0784a69
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions PacketWrapper/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.comphenix.packetwrapper</groupId>
<artifactId>PacketWrapper</artifactId>
<packaging>jar</packaging>
<version>1.10-R0.1-SNAPSHOT</version>

<name>PacketWrapper</name>

<inceptionYear>2012</inceptionYear>
Expand Down Expand Up @@ -41,20 +41,25 @@
</distributionManagement>

<dependencies>
<!-- Should be already included as transitive dependency of spigot
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.10.2-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
-->
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot</artifactId>
<version>1.10.2-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.comphenix.protocol</groupId>
<artifactId>ProtocolLib-API</artifactId>
<version>4.0-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down Expand Up @@ -154,4 +159,4 @@
</plugins>
</build>

</project>
</project>

0 comments on commit 0784a69

Please sign in to comment.