Skip to content

Commit 2cfaf96

Browse files
author
Paul Stockley
committed
Version 0.2.0 Update to use gwt-interop-utils library
1 parent b073937 commit 2cfaf96

File tree

2 files changed

+14
-7
lines changed

2 files changed

+14
-7
lines changed

README.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ You can download the latest release .jar from Maven Central using the following
2525

2626
* **groupId**    com.github.gwtreact
2727
* **artifactId**  gwt-react
28-
* **version**    0.1.0
28+
* **version**    0.2.0
2929

3030
##Documentation
3131

@@ -41,16 +41,16 @@ Once the project is stable we will be happy to except pull requests. If you find
4141

4242
* Investigate writing an Annotation processor to create fluent prop classes
4343

44-
* Add server implementation of Array and StringSet (to allow a JSON structure to be modelled on client/server with one class)
45-
46-
* Investigate splitting ObjectLiteraL, Array, StringSet... into it's own project
47-
4844
* Refine the different prop types for basic HTML elements
4945

5046
* Refine the CSS prop types and add enumerations and more useful setter methods where possible
5147

5248
* Remove any dependencies on com.google.gwt.dom.*. Replace with Elemental 2 or something equivalent
5349

50+
* ~~Add server implementation of Array and StringSet (to allow a JSON structure to be modelled on client/server with one class)~~, DONE
51+
52+
* ~~Investigate splitting ObjectLiteraL, Array, StringSet... into it's own project~~, DONE
53+
5454
* ~~Prepare project(s) for publishing to Maven e.g. add Gradle build/release files~~ , DONE
5555

5656
* ~~Publish project(s) to Maven~~ , DONE
@@ -63,6 +63,7 @@ Once the project is stable we will be happy to except pull requests. If you find
6363

6464
| Date | Version | Description |
6565
| :--- | :--- | :--- |
66+
| 6/18/2016 | 0.2.0 | Update to use gwt-interop-utils library |
6667
| 5/13/2016 | 0.1.0 | Initial preview release to Maven Central |
6768

6869
##Resources

build.gradle

+8-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ apply plugin: 'signing'
66

77
group = 'com.github.gwtreact'
88
archivesBaseName = 'gwt-react'
9-
version = "0.1.0"
9+
version = "0.2.0"
1010

1111
buildscript {
1212
repositories {
@@ -52,6 +52,10 @@ gwt {
5252

5353
minHeapSize = "512M";
5454
maxHeapSize = "4096M";
55+
56+
dependencies {
57+
gwt group: 'com.github.gwtreact', name: 'gwt-interop-utils', version: '0.1.0'
58+
}
5559
}
5660

5761
task sourcesJar(type: Jar) {
@@ -60,7 +64,9 @@ task sourcesJar(type: Jar) {
6064
}
6165

6266
task myJavadocs(type: Javadoc) {
63-
source = sourceSets.main.allJava
67+
failOnError = false
68+
options.memberLevel = JavadocMemberLevel.PUBLIC
69+
source = sourceSets.main.java
6470
//classpath = sourceSets.main.output + sourceSets.main.compileClasspath
6571
}
6672

0 commit comments

Comments
 (0)