Skip to content

Commit

Permalink
Update integration-test-plugin to v1.1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
pmendelski committed Nov 14, 2020
1 parent 273c2a2 commit ecebe36
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Build with Gradle
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: ./gradlew build jacocoTestReport coveralls --scan --stacktrace
run: ./gradlew build jacocoTestReport coveralls --scan
- name: Publish Reports Artifact
uses: actions/upload-artifact@v2
if: always()
Expand Down Expand Up @@ -82,4 +82,4 @@ jobs:
with:
body: ${{ steps.changelog.outputs.description }}
tag_name: v${{ steps.changelog.outputs.version }}
release_name: Release v${{ steps.changelog.outputs.version }}
release_name: Release v${{ steps.changelog.outputs.version }}
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## [Unreleased]

## [0.1.8] - 2020-10-14
### Changed
- Update integration-test-plugin to v1.1.10.

## [0.1.7] - 2020-10-10
### Changed
- Update dependencies and migrate to GitHub Actions.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation(kotlin("reflect"))
implementation("com.coditory.gradle:manifest-plugin:0.1.9")
implementation("com.coditory.gradle:integration-test-plugin:1.1.9")
implementation("com.coditory.gradle:integration-test-plugin:1.1.10")

testImplementation("org.assertj:assertj-core:3.18.0")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.7.0")
Expand Down
8 changes: 4 additions & 4 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
rootProject.name = "build-plugin"

plugins {
id("com.gradle.enterprise").version("3.4.1")
}

gradleEnterprise {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
Expand All @@ -10,7 +14,3 @@ gradleEnterprise {
}
}
}

plugins {
id("com.gradle.enterprise").version("3.3.1")
}

0 comments on commit ecebe36

Please sign in to comment.