Skip to content

Commit

Permalink
Merge pull request #18 from kintone/update-apache-library
Browse files Browse the repository at this point in the history
update apache http components
  • Loading branch information
0gr authored Oct 23, 2020
2 parents b34a4d9 + b04651f commit d00a7c4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ API client library for Kintone REST APIs on Java.
Add dependency declaration in `build.gradle` of your project.
```
dependencies {
implementation 'com.kintone:kintone-java-client:1.0.3'
implementation 'com.kintone:kintone-java-client:1.0.4'
}
```
- For projects using Maven
Expand All @@ -17,7 +17,7 @@ API client library for Kintone REST APIs on Java.
<dependency>
<groupId>com.kintone</groupId>
<artifactId>kintone-java-client</artifactId>
<version>1.0.3</version>
<version>1.0.4</version>
</dependency>
```

Expand Down
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
id 'com.diffplug.gradle.spotless' version '3.25.0'
}

version = '1.0.3'
version = '1.0.4'
sourceCompatibility = 1.8
targetCompatibility = 1.8

Expand All @@ -24,8 +24,8 @@ artifacts {
}

dependencies {
implementation 'org.apache.httpcomponents:httpclient:4.5.12'
implementation 'org.apache.httpcomponents:httpmime:4.5.12'
implementation 'org.apache.httpcomponents:httpclient:4.5.13'
implementation 'org.apache.httpcomponents:httpmime:4.5.13'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.10.3'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.10.3'

Expand Down Expand Up @@ -105,9 +105,9 @@ task sourceJar(type: Jar) {
from sourceSets.main.allJava
}

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

publishing {
Expand Down
4 changes: 2 additions & 2 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ client.close();
Add dependency declaration in `build.gradle` of your project.
```groovy
dependencies {
implementation 'com.kintone:kintone-java-client:1.0.3'
implementation 'com.kintone:kintone-java-client:1.0.4'
}
```

Expand All @@ -39,7 +39,7 @@ Add dependency declaration in `pom.xml` of your project.
<dependency>
<groupId>com.kintone</groupId>
<artifactId>kintone-java-client</artifactId>
<version>1.0.3</version>
<version>1.0.4</version>
</dependency>
```

Expand Down

0 comments on commit d00a7c4

Please sign in to comment.