From f5c217cca78742be840f5968548a7081347f4d2f Mon Sep 17 00:00:00 2001 From: Sri Harsha Chilakapati Date: Fri, 25 Aug 2017 11:22:12 +0530 Subject: [PATCH] Prepare release 0.2.9 --- README.md | 10 +++++----- webgl4j/build.gradle | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index d9df683..d13e789 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -

+

WebGL4J is a WebGL wrapper library for the Java programming language which allows to use Java to write HTML5 applications using GWT (Google Web Toolkit) which uses WebGL to draw 2D / 3D hardware accelerated graphics using a HTML5 Canvas. @@ -22,7 +22,7 @@ You can get WebGL4J in three ways, either from the central maven repository, or com.goharsha webgl4j - 0.2.8 + 0.2.9 compile ``` @@ -30,10 +30,10 @@ You can get WebGL4J in three ways, either from the central maven repository, or That is for maven. The repository is maven central repository. For gradle users, you can add it to your dependencies like the following. ```gradle -compile group: 'com.goharsha', name: 'webgl4j', version: '0.2.8' +compile group: 'com.goharsha', name: 'webgl4j', version: '0.2.9' // or shorthand notation -compile 'com.goharsha:webgl4j:0.2.8' +compile 'com.goharsha:webgl4j:0.2.9' ``` Add that and you'll be getting your dependencies downloaded to you. The second way is to download the JAR from the GitHub releases and add it to the classpath in your webapp. You can build your own version of the library in the following way. @@ -155,7 +155,7 @@ This method returns a success value, to notify you whether the request is accept ## Running the examples -You can see the examples in action by navigating your browser to [http://goharsha.com/WebGL4J/](http://goharsha.com/WebGL4J/). Instead if you want to compile them yourself, enter the following command into the console. +You can see the examples in action by navigating your browser to [https://goharsha.com/WebGL4J/](https://goharsha.com/WebGL4J/). Instead if you want to compile them yourself, enter the following command into the console. ```bash ./gradlew clean build superDev diff --git a/webgl4j/build.gradle b/webgl4j/build.gradle index 40f450e..937bbed 100644 --- a/webgl4j/build.gradle +++ b/webgl4j/build.gradle @@ -7,7 +7,7 @@ targetCompatibility = 1.8 group = "com.goharsha" archivesBaseName = "webgl4j" -version = "0.2.9-SNAPSHOT" +version = "0.2.9" // Check if the required properties are included, so we prevent our // build from failing.