Compare commits
3 Commits
2e90637bf3
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| cf80c16b93 | |||
| 7de09e35e1 | |||
| 2f78d57fbd |
+1
-1
@@ -4,7 +4,7 @@
|
||||
<parent>
|
||||
<groupId>com.threerings</groupId>
|
||||
<artifactId>nenya-parent</artifactId>
|
||||
<version>1.7-SNAPSHOT</version>
|
||||
<version>1.7.3</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>nenyalib</artifactId>
|
||||
|
||||
+7
-3
@@ -4,7 +4,7 @@
|
||||
<parent>
|
||||
<groupId>com.threerings</groupId>
|
||||
<artifactId>nenya-parent</artifactId>
|
||||
<version>1.7.3-SNAPSHOT</version>
|
||||
<version>1.7.3</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>nenya</artifactId>
|
||||
@@ -16,14 +16,18 @@
|
||||
<dependency>
|
||||
<groupId>com.samskivert</groupId>
|
||||
<artifactId>samskivert</artifactId>
|
||||
<version>1.12-SNAPSHOT</version>
|
||||
<version>1.11</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.guava</groupId>
|
||||
<artifactId>guava</artifactId>
|
||||
<version>33.4.0-jre</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.threerings</groupId>
|
||||
<artifactId>ooo-util</artifactId>
|
||||
<version>1.6</version>
|
||||
</dependency>
|
||||
<!-- optional dependencies -->
|
||||
<dependency>
|
||||
<groupId>com.threerings</groupId>
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<parent>
|
||||
<groupId>com.threerings</groupId>
|
||||
<artifactId>nenya-parent</artifactId>
|
||||
<version>1.7.3-SNAPSHOT</version>
|
||||
<version>1.7.3</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>nenya-maven-plugin</artifactId>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<groupId>com.threerings</groupId>
|
||||
<artifactId>nenya-parent</artifactId>
|
||||
<packaging>pom</packaging>
|
||||
<version>1.7.3-SNAPSHOT</version>
|
||||
<version>1.7.3</version>
|
||||
|
||||
<name>Nenya Parent</name>
|
||||
<description>Facilities for making Java games.</description>
|
||||
@@ -37,9 +37,17 @@
|
||||
<tag>HEAD</tag>
|
||||
</scm>
|
||||
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>affliction-public</id>
|
||||
<name>affliction-public</name>
|
||||
<url>https://mvn.afflictionid.com/repository/public-repo/</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<narya.version>1.20-SNAPSHOT</narya.version>
|
||||
<narya.version>1.22</narya.version>
|
||||
</properties>
|
||||
|
||||
<modules>
|
||||
|
||||
+1
-1
@@ -4,7 +4,7 @@
|
||||
<parent>
|
||||
<groupId>com.threerings</groupId>
|
||||
<artifactId>nenya-parent</artifactId>
|
||||
<version>1.7.3-SNAPSHOT</version>
|
||||
<version>1.7.3</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>nenya-tools</artifactId>
|
||||
|
||||
@@ -309,7 +309,7 @@ public abstract class ComponentBundler {
|
||||
info[0] = path.substring(0, slsidx);
|
||||
// we need to turn file separator characters (platform dependent) into jar path separator
|
||||
// characters (always forward slash)
|
||||
info[0].replace(File.separatorChar, '/');
|
||||
info[0] = info[0].replace(File.separatorChar, '/');
|
||||
return info;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user