Skip to content
This repository was archived by the owner on Aug 11, 2023. It is now read-only.

Commit 96c6093

Browse files
committed
Fixed download link. Fixed Maven dependency to use snapshots repository.
1 parent b2601f7 commit 96c6093

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

README.md

+12-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ __Public Service Announcement: With packr v2.0, command line interfaces to both
66

77
Packages your JAR, assets and a JVM for distribution on Windows, Linux and Mac OS X, adding a native executable file to make it appear like a native app. Packr is most suitable for GUI applications, such as games made with [libGDX](http://libgdx.badlogicgames.com/).
88

9-
#### [Download Packr](http://bit.ly/packrgdx)
9+
## Download
10+
11+
The latest build is available for [download here](https://libgdx.badlogicgames.com/ci/packr/packr.jar).
1012

1113
## Usage
1214

@@ -89,10 +91,18 @@ java -jar packr.jar --output target/out-mac --vmargs Xms256m -- my-packr-config.
8991
Finally, you can use packr from within your Java code. Just add the JAR file to your project, either manually, or via the following Maven dependency:
9092

9193
```xml
94+
<repositories>
95+
<repository>
96+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
97+
<snapshots>
98+
<enabled>true</enabled>
99+
</snapshots>
100+
</repository>
101+
</repositories>
92102
<dependency>
93103
<groupId>com.badlogicgames.packr</groupId>
94104
<artifactId>packr</artifactId>
95-
<version>2.0</version>
105+
<version>2.1</version>
96106
</dependency>
97107
```
98108

0 commit comments

Comments
 (0)