Skip to content

Commit

Permalink
Merge pull request #167 from pusher/correct_javadoc_and_sources
Browse files Browse the repository at this point in the history
Correct javadoc and sources
  • Loading branch information
zmarkan authored Jan 22, 2018
2 parents 5ba9684 + ce4889c commit 69508e7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 12 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ The pusher-java-client is available in Maven Central.
<dependency>
<groupId>com.pusher</groupId>
<artifactId>pusher-java-client</artifactId>
<version>1.6.0</version>
<version>1.6.1</version>
</dependency>
</dependencies>
```
Expand All @@ -60,7 +60,7 @@ The pusher-java-client is available in Maven Central.

```groovy
dependencies {
compile 'com.pusher:pusher-java-client:1.6.0'
compile 'com.pusher:pusher-java-client:1.6.1'
}
```

Expand Down
18 changes: 8 additions & 10 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ apply plugin: 'org.ajoberstar.github-pages'
apply plugin: 'signing'

group = "com.pusher"
version = "1.6.1-SNAPSHOT"
version = "1.6.2-SNAPSHOT"
sourceCompatibility = "1.6"
targetCompatibility = "1.6"

Expand Down Expand Up @@ -94,15 +94,13 @@ assemble.dependsOn fatJar
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
classifier = 'javadoc'
}
assemble.dependsOn sourcesJar


task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
classifier = 'sources'
}
assemble.dependsOn javadocJar

Expand Down Expand Up @@ -151,17 +149,17 @@ task createPublishTarget << {
packaging 'jar'
artifactId 'pusher-java-client'
description 'This is a Java client library for Pusher, targeted at core Java and Android.'
url 'http://github.com/pusher/pusher-java-client'
url 'http://github.com/pusher/pusher-websocket-java'
scm {
connection 'scm:git:git@github.com:pusher/pusher-java-client'
developerConnection 'scm:git:git@github.com:pusher/pusher-java-client'
url 'http://github.com/pusher/pusher-java-client'
connection 'scm:git:git@github.com:pusher/pusher-websocket-java'
developerConnection 'scm:git:git@github.com:pusher/pusher-websocket-java'
url 'http://github.com/pusher/pusher-websocket-java'
}
licenses {
license {
name 'MIT'
url 'https://raw.github.com/pusher/pusher-java-client/master/LICENCE.txt'
distribution 'https://raw.github.com/pusher/pusher-java-client/mvn-repo/'
url 'https://raw.github.com/pusher/pusher-websocket-java/master/LICENCE.txt'
distribution 'https://raw.github.com/pusher/pusher-websocket-java/mvn-repo/'
}
}
organization {
Expand All @@ -170,7 +168,7 @@ task createPublishTarget << {
}
issueManagement {
system 'GitHub'
url 'https://github.com/pusher/pusher-java-client/issues'
url 'https://github.com/pusher/pusher-websocket-java/issues'
}
developers {
developer {
Expand Down

0 comments on commit 69508e7

Please sign in to comment.