Skip to content

Commit

Permalink
update versions + prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
rach-id committed Jan 7, 2021
1 parent 14b1aec commit 6b126a4
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 25 deletions.
4 changes: 2 additions & 2 deletions README.rst
Expand Up @@ -41,7 +41,7 @@ Java 8:
<dependency>
<groupId>org.web3j</groupId>
<artifactId>quorum</artifactId>
<version>4.6.4</version>
<version>4.8.3</version>
</dependency>
Gradle
Expand All @@ -51,7 +51,7 @@ Java 8:

.. code-block:: groovy
compile ('org.web3j:quorum:4.6.4')
compile ('org.web3j:quorum:4.8.3')
Run Quorum
Expand Down
15 changes: 2 additions & 13 deletions build.gradle
Expand Up @@ -14,17 +14,6 @@ plugins {

description 'web3j Quorum API'

ext {
web3jVersion = project.property('version')
jacksonKotlinVersion = '2.9.0'

logbackVersion = '1.2.3'
junitVersion = '5.5.2'
mockitoVersion = '3.1.0'
assertjCoreVersion = '3.8.0'
hamcrestVersion = '2.1'
}

apply {
[
'bintray',
Expand Down Expand Up @@ -57,14 +46,14 @@ publishing {
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8",
"com.fasterxml.jackson.module:jackson-module-kotlin:$jacksonKotlinVersion",
"org.web3j:core:$web3jVersion"
"org.web3j:core:$version"

testImplementation "org.junit.jupiter:junit-jupiter:$junitVersion",
"ch.qos.logback:logback-core:$logbackVersion",
"ch.qos.logback:logback-classic:$logbackVersion",
"org.mockito:mockito-core:$mockitoVersion",
"org.assertj:assertj-core:$assertjCoreVersion",
"org.web3j:core:$web3jVersion:tests",
"org.web3j:core:$version:tests",
"org.hamcrest:hamcrest-library:$hamcrestVersion"
}

Expand Down
8 changes: 7 additions & 1 deletion gradle.properties
@@ -1,2 +1,8 @@
group=org.web3j
version=4.6.4
version=4.8.3
jacksonKotlinVersion=2.9.0
logbackVersion=1.2.3
junitVersion=5.5.2
mockitoVersion=3.1.0
assertjCoreVersion=3.8.0
hamcrestVersion=2.1
10 changes: 2 additions & 8 deletions gradle/publish/build.gradle
Expand Up @@ -31,7 +31,7 @@ publishing {
artifact testsJar

pom {
name = 'web3j'
name = project.name
description.set(project.provider({ project.description }))
url = 'https://web3j.io'

Expand Down Expand Up @@ -59,13 +59,7 @@ publishing {
name = 'Conor Svensson'
email = 'conor10@gmail.com'
}
developer {
id = 'antonydenyer'
name = 'Antony Denyer'
email = 'antony@web3labs.com'
}
}

}
}
}
Expand All @@ -84,7 +78,7 @@ nexusPublishing {
nexusStaging {
username System.getenv('OSSRH_USERNAME')
password System.getenv('OSSRH_PASSWORD')
packageGroup = "org.web3j"
packageGroup = rootProject.group
}


Expand Down
1 change: 0 additions & 1 deletion gradle/spotless/build.gradle
Expand Up @@ -49,7 +49,6 @@ spotless {
greclipse().configFile("$rootDir/gradle/spotless/formatter.properties")
endWithNewline()
indentWithSpaces(4)
paddedCell()
}
}

Expand Down

0 comments on commit 6b126a4

Please sign in to comment.