Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Versions upgrade (Vertx 3.9.0) #42

Merged
merged 17 commits into from
Apr 22, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions .github/workflows/ci-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# When a tag matching a semver number (like `1.1.0`) is pushed, then tyr to publish the version to bintray and create the matching release in Github
name: CI-Release
on:
push:
tags:
- RELEASE-*

jobs:
publish-release-bintray:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::$(echo $GITHUB_REF | cut -d '-' -f 2)
- uses: actions/setup-java@v1
with:
java-version: 11
- name: Release to Bintray
uses: eskatos/gradle-command-action@v1
with:
gradle-version: 6.3
arguments: test bintrayUpload
env:
BINTRAY_USER: ${{secrets.BINTRAY_USER}}
BINTRAY_KEY: ${{secrets.BINTRAY_KEY}}
- name: Creates a Release in Github
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ steps.get_version.outputs.VERSION }}
release_name: ${{ steps.get_version.outputs.VERSION }}
body: |
Available in Bintray/Sonatype repositories under:
`io.reactiverse:aws-sdk:${{ steps.get_version.outputs.VERSION }}`
draft: false
prerelease: false

33 changes: 33 additions & 0 deletions .github/workflows/ci-snapshot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: CI-Snapshot
on:
push:
tags:
- SNAPSHOT-*

jobs:
publish-snapshot-sonatype:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::$(echo $GITHUB_REF | cut -d '-' -f 2)
- uses: actions/setup-java@v1
with:
java-version: 11
- uses: eskatos/gradle-command-action@v1
with:
gradle-version: 6.3
arguments: assemble publish -PossrhUsername=${{secrets.SONATYPE_NEXUS_USERNAME}} -PossrhPassword=${{secrets.SONATYPE_NEXUS_PASSWORD}}
- name: Create Snapshot Release in Github
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ steps.get_version.outputs.VERSION }}-SNAPSHOT
release_name: ${{ steps.get_version.outputs.VERSION }}-SNAPSHOT
body: |
Available in Sonatype SNAPSHOTs repository under:
`io.reactiverse:aws-sdk:${{ steps.get_version.outputs.VERSION }}-SNAPSHOT`
draft: true
prerelease: true
22 changes: 22 additions & 0 deletions .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Always tests on every branch push / PR / master
name: CI-Test
on: push

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 8, 11 ]
name: "Run tests with JDK ${{ matrix.java }}"
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Pre-Pull localstack image
run: "docker pull localstack/localstack:0.10.2"
- uses: eskatos/gradle-command-action@v1
with:
gradle-version: 6.3
arguments: test -Dtests.integration=localstack
6 changes: 0 additions & 6 deletions .travis.deploy.artifacts.sh

This file was deleted.

24 changes: 0 additions & 24 deletions .travis.yml

This file was deleted.

2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ Artifacts are published [here](https://search.maven.org/search?q=a:vertx-aws-sdk

| Project | Vert.x | AWS sdk |
| ------- | ------ | ------- |
| 0.5.0 | 3.9.0 | 2.12.0 |
| 0.4.0 | 3.8.3 | 2.10.16 |
| 0.3.0 | 3.8.1 | 2.7.8 |

## Documentation
Expand Down
109 changes: 59 additions & 50 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,39 +1,59 @@
val vertxVersion = "3.8.0"
val awsSdkVersion = "2.7.8"
val vertxVersion = "3.9.0"
val awsSdkVersion = "2.12.0"
val junit5Version = "5.4.0"
val logbackVersion = "1.2.3"
val integrationOption = "tests.integration"

group = "io.reactiverse"
version = "0.5.0"

plugins {
`java-library`
`maven-publish`
signing
jacoco
id("com.jfrog.bintray") version "1.8.5"
id("com.jaredsburrows.license") version "0.8.42"
id("org.sonarqube") version "2.6"
}

repositories {
mavenCentral()
maven {
url = uri("https://oss.sonatype.org/content/repositories/snapshots")
}
}

group = "io.reactiverse"
version = "0.0.1-SNAPSHOT"

project.extra["isReleaseVersion"] = !version.toString().endsWith("SNAPSHOT")

// In order to publish SNAPSHOTs to Sonatype Snapshots repository => the CI should define such `ossrhUsername` and `ossrhPassword` properties
if (!project.hasProperty("ossrhUsername")) {
logger.warn("No ossrhUsername property defined in your Gradle properties file to deploy to Maven Central, using 'foo' to make the build pass")
logger.warn("No ossrhUsername property defined in your Gradle properties file to deploy to Sonatype Snapshots, using 'foo' to make the build pass")
project.extra["ossrhUsername"] = "foo"
}
if (!project.hasProperty("ossrhPassword")) {
logger.warn("No ossrhPassword property defined in your Gradle properties file to deploy to Maven Central, using 'bar' to make the build pass")
logger.warn("No ossrhPassword property defined in your Gradle properties file to deploy to Sonatype Snapshots, using 'bar' to make the build pass")
project.extra["ossrhPassword"] = "bar"
}

// Releases are published to Bintray under the Reactiverse organization
// Then manually synced to Central
bintray {
user = System.getenv("BINTRAY_USER")
key = System.getenv("BINTRAY_KEY")
with(pkg) {
userOrg = "reactiverse"
repo = "releases"
name = project.name
setLicenses("Apache-2.0")
vcsUrl = "https://github.com/reactiverse/aws-sdk"
setLabels("vertx", "vert.x", "aws-sdk", "amazon web services")
publicDownloadNumbers = true
with(version) {
name = project.version.toString()
description = "${project.description}. Version: ${project.version}"
}
setPublications("mavenJava")
}
}

repositories {
mavenCentral()
maven {
url = uri("https://oss.sonatype.org/content/repositories/snapshots")
}
}

dependencies {
api("io.vertx:vertx-core:$vertxVersion")
api("software.amazon.awssdk:aws-core:$awsSdkVersion")
Expand All @@ -54,7 +74,7 @@ java {
}

jacoco {
toolVersion = "0.8.2"
toolVersion = "0.8.5"
}

tasks {
Expand Down Expand Up @@ -100,18 +120,14 @@ tasks {
(options as StandardJavadocDocletOptions).links(
"http://docs.oracle.com/javase/8/docs/api/",
"https://sdk.amazonaws.com/java/api/latest/",
"http://vertx.io/docs/3.8.0/apidocs/",
"http://vertx.io/docs/3.9.0/apidocs/",
"http://www.reactive-streams.org/reactive-streams-1.0.0-javadoc/",
"http://netty.io/4.1/api/"
)
}

withType<Sign> {
onlyIf { project.extra["isReleaseVersion"] as Boolean }
}

withType<Wrapper> {
gradleVersion = "5.4.1"
gradleVersion = "6.3"
}
}

Expand All @@ -121,9 +137,10 @@ publishing {
from(components["java"])
artifact(tasks["sourcesJar"])
artifact(tasks["javadocJar"])
setVersion(project.version)
pom {
name.set(project.name)
description.set("Reactiverse AWS SDK 2 with Vert.x")
description.set("Reactiverse AWS SDK v2 with Vert.x")
url.set("https://github.com/reactiverse/aws-sdk")
licenses {
license {
Expand All @@ -144,32 +161,24 @@ publishing {
url.set("https://github.com/reactiverse/aws-sdk")
}
}
}
}
repositories {
// To locally check out the poms
maven {
val releasesRepoUrl = uri("$buildDir/repos/releases")
val snapshotsRepoUrl = uri("$buildDir/repos/snapshots")
name = "BuildDir"
url = if (project.extra["isReleaseVersion"] as Boolean) releasesRepoUrl else snapshotsRepoUrl
}
maven {
val releasesRepoUrl = uri("https://oss.sonatype.org/service/local/staging/deploy/maven2/")
val snapshotsRepoUrl = uri("https://oss.sonatype.org/content/repositories/snapshots/")
name = "SonatypeOSS"
url = if (project.extra["isReleaseVersion"] as Boolean) releasesRepoUrl else snapshotsRepoUrl
credentials {
val ossrhUsername: String by project
val ossrhPassword: String by project
username = ossrhUsername
password = ossrhPassword
repositories {
// To locally check out the poms
maven {
name = "BuildDir"
url = uri("$buildDir/repos/snapshots")
}
// Snapshots are published to Sonatype's repository directly
maven {
name = "SonatypeOSS"
url = uri("https://oss.sonatype.org/content/repositories/snapshots/")
credentials {
val ossrhUsername: String by project
val ossrhPassword: String by project
username = ossrhUsername
password = ossrhPassword
}
}
}
}
}
}

signing {
sign(publishing.publications["mavenJava"])
}

Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.3-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading