Skip to content

Commit

Permalink
Make pom.xml point to custom PlayN release.
Browse files Browse the repository at this point in the history
  • Loading branch information
guillerodriguez committed Sep 6, 2018
1 parent d5c08f2 commit 68c77d5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
4 changes: 2 additions & 2 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@

<dependencies>
<dependency>
<groupId>io.playn</groupId>
<groupId>com.github.guillerodriguez.playn</groupId>
<artifactId>playn-scene</artifactId>
<version>${playn.version}</version>
<scope>compile</scope>
</dependency>

<dependency>
<groupId>io.playn</groupId>
<groupId>com.github.guillerodriguez.playn</groupId>
<artifactId>playn-java-lwjgl</artifactId>
<version>${playn.version}</version>
<scope>test</scope>
Expand Down
14 changes: 10 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.playn</groupId>
<groupId>com.github.guillerodriguez.playn</groupId>
<artifactId>playn-project</artifactId>
<version>2.0.4</version>
<version>2.0.4_1-SNAPSHOT</version>
</parent>

<groupId>com.threerings</groupId>
Expand All @@ -27,6 +27,10 @@
</distributionManagement>

<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
<repository>
<!-- reference jcenter repository so we don't have to wait for Maven Central sync -->
<id>jcenter</id>
Expand Down Expand Up @@ -70,16 +74,18 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<playn.version>2.0.3</playn.version>
<playn.version>2.0.4_1-SNAPSHOT</playn.version>
</properties>

<modules>
<module>core</module>
<!-- <module>ios</module> -->
<!--
<module>ios</module>
<module>java-lwjgl2</module>
<module>java-swt</module>
<module>tools</module>
<module>plugins</module>
-->
</modules>

<profiles>
Expand Down

0 comments on commit 68c77d5

Please sign in to comment.