Skip to content

Commit

Permalink
Merge pull request #111 from cryptape/rc/v0.23.0
Browse files Browse the repository at this point in the history
RC/v0.23.0
  • Loading branch information
BaojunCZ authored Apr 30, 2019
2 parents 5fca12d + 2b0133c commit 88e37d8
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 10 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
All notable changes to this project will be documented in this file.

# [v0.23.0](https://github.com/cryptape/cita-sdk-java/compare/v0.22.3...v0.23.0) (2019-04-30)

### Feature

* Adapt to CITA v0.23

# [v0.22.3](https://github.com/cryptape/cita-sdk-java/compare/v0.22.2...v0.22.3) (2019-04-10)

### Feature
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ maven
<dependency>
<groupId>com.cryptape.cita</groupId>
<artifactId>core</artifactId>
<version>0.22.3</version>
<version>0.23.0</version>
</dependency>
```
Gradle
```
compile 'com.cryptape.cita:core:0.22.3'
compile 'com.cryptape.cita:core:0.23.0'
```

Install manually
Expand Down Expand Up @@ -170,12 +170,12 @@ Gradle 4.3
<dependency>
<groupId>com.cryptape.cita</groupId>
<artifactId>core</artifactId>
<version>0.22.3</version>
<version>0.23.0</version>
</dependency>
```
Gradle
```
compile 'com.cryptape.cita:core:0.22.3'
compile 'com.cryptape.cita:core:0.23.0'
```

手动安装
Expand Down
11 changes: 5 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

buildscript {
ext.bouncycastleVersion = '1.54'
ext.jacksonVersion = '2.8.5'
Expand Down Expand Up @@ -46,7 +45,7 @@ allprojects {
targetCompatibility = 1.8

group 'com.cryptape.cita'
version '0.22.3'
version '0.23.0'

apply plugin: 'java'
apply plugin: 'jacoco'
Expand Down Expand Up @@ -91,7 +90,7 @@ subprojects {

dependencies {
testCompile "junit:junit:$junitVersion",
"org.mockito:mockito-core:$mockitoVersion"
"org.mockito:mockito-core:$mockitoVersion"
}
}

Expand All @@ -105,7 +104,7 @@ project(':core') {
}
}

configure(subprojects.findAll {it.name != 'integration-tests'}) {
configure(subprojects.findAll { it.name != 'integration-tests' }) {
// Required for Maven Nexus repository
apply plugin: 'maven'
apply plugin: 'signing'
Expand Down Expand Up @@ -142,7 +141,7 @@ configure(subprojects.findAll {it.name != 'integration-tests'}) {
publications {
mavenJava(MavenPublication) {
groupId 'com.cryptape.cita'
version '0.22.3'
version '0.23.0'
from components.java

artifact sourcesJar {
Expand Down Expand Up @@ -218,7 +217,7 @@ task jacocoRootTestReport(type: org.gradle.testing.jacoco.tasks.JacocoReport) {
dependsOn = subprojects.test
additionalSourceDirs = files(subprojects.sourceSets.main.allSource.srcDirs)
sourceDirectories = files(subprojects.sourceSets.main.allSource.srcDirs)
classDirectories = files(subprojects.sourceSets.main.output)
classDirectories = files(subprojects.sourceSets.main.output)
executionData = files(subprojects.jacocoTestReport.executionData)
reports {
xml.enabled = true
Expand Down

0 comments on commit 88e37d8

Please sign in to comment.