Skip to content

Commit 69508e7

Browse files
authored
Merge pull request #167 from pusher/correct_javadoc_and_sources
Correct javadoc and sources
2 parents 5ba9684 + ce4889c commit 69508e7

File tree

2 files changed

+10
-12
lines changed

2 files changed

+10
-12
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ The pusher-java-client is available in Maven Central.
5151
<dependency>
5252
<groupId>com.pusher</groupId>
5353
<artifactId>pusher-java-client</artifactId>
54-
<version>1.6.0</version>
54+
<version>1.6.1</version>
5555
</dependency>
5656
</dependencies>
5757
```
@@ -60,7 +60,7 @@ The pusher-java-client is available in Maven Central.
6060

6161
```groovy
6262
dependencies {
63-
compile 'com.pusher:pusher-java-client:1.6.0'
63+
compile 'com.pusher:pusher-java-client:1.6.1'
6464
}
6565
```
6666

build.gradle

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ apply plugin: 'org.ajoberstar.github-pages'
2121
apply plugin: 'signing'
2222

2323
group = "com.pusher"
24-
version = "1.6.1-SNAPSHOT"
24+
version = "1.6.2-SNAPSHOT"
2525
sourceCompatibility = "1.6"
2626
targetCompatibility = "1.6"
2727

@@ -94,15 +94,13 @@ assemble.dependsOn fatJar
9494
task sourcesJar(type: Jar, dependsOn: classes) {
9595
classifier = 'sources'
9696
from sourceSets.main.allSource
97-
classifier = 'javadoc'
9897
}
9998
assemble.dependsOn sourcesJar
10099

101100

102101
task javadocJar(type: Jar, dependsOn: javadoc) {
103102
classifier = 'javadoc'
104103
from javadoc.destinationDir
105-
classifier = 'sources'
106104
}
107105
assemble.dependsOn javadocJar
108106

@@ -151,17 +149,17 @@ task createPublishTarget << {
151149
packaging 'jar'
152150
artifactId 'pusher-java-client'
153151
description 'This is a Java client library for Pusher, targeted at core Java and Android.'
154-
url 'http://github.com/pusher/pusher-java-client'
152+
url 'http://github.com/pusher/pusher-websocket-java'
155153
scm {
156-
connection 'scm:git:[email protected]:pusher/pusher-java-client'
157-
developerConnection 'scm:git:[email protected]:pusher/pusher-java-client'
158-
url 'http://github.com/pusher/pusher-java-client'
154+
connection 'scm:git:[email protected]:pusher/pusher-websocket-java'
155+
developerConnection 'scm:git:[email protected]:pusher/pusher-websocket-java'
156+
url 'http://github.com/pusher/pusher-websocket-java'
159157
}
160158
licenses {
161159
license {
162160
name 'MIT'
163-
url 'https://raw.github.com/pusher/pusher-java-client/master/LICENCE.txt'
164-
distribution 'https://raw.github.com/pusher/pusher-java-client/mvn-repo/'
161+
url 'https://raw.github.com/pusher/pusher-websocket-java/master/LICENCE.txt'
162+
distribution 'https://raw.github.com/pusher/pusher-websocket-java/mvn-repo/'
165163
}
166164
}
167165
organization {
@@ -170,7 +168,7 @@ task createPublishTarget << {
170168
}
171169
issueManagement {
172170
system 'GitHub'
173-
url 'https://github.com/pusher/pusher-java-client/issues'
171+
url 'https://github.com/pusher/pusher-websocket-java/issues'
174172
}
175173
developers {
176174
developer {

0 commit comments

Comments
 (0)