Skip to content
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
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.8.0]

### Changed

- Upgrade to Gradle 7.0, tested with Gradle 6.0
- [#16](https://github.com/itsallcode/openfasttrace-gradle/pull/16) Upgrade to [OpenFastTrace 3.1.0](https://github.com/itsallcode/openfasttrace/releases/tag/3.1.0), adding support for JVM languages Clojure, Kotlin and Scala.
- Upgrade to Gradle 7.0.2, tested with Gradle 6.0

## [0.7.0] - 2019-05-24

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Gradle plugin for the requirement tracing suite [OpenFastTrace](https://github.c

```gradle
plugins {
id "org.itsallcode.openfasttrace" version "0.7.0"
id "org.itsallcode.openfasttrace" version "0.8.0"
}
```

Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id 'java-gradle-plugin'
id 'jacoco'
id 'com.gradle.plugin-publish' version '0.14.0'
id 'com.gradle.plugin-publish' version '0.15.0'
id 'com.github.hierynomus.license' version '0.16.1'
id 'org.sonarqube' version '3.2.0'
id 'pl.droidsonroids.jacoco.testkit' version '1.0.8'
Expand All @@ -13,15 +13,15 @@ repositories {

apply from: 'gradle/workAroundJacocoGradleTestKitIssueOnWindows.gradle'

version = '0.7.0'
version = '0.8.0'
group = 'org.itsallcode'
sourceCompatibility = 11
targetCompatibility = 11

ext {
gradlePluginId = 'org.itsallcode.openfasttrace'
oftVersion = '3.0.2'
junitVersion = '5.7.1'
oftVersion = '3.1.0'
junitVersion = '5.7.2'
if (project.hasProperty('oftSourceDir')) {
oftSourceDir = file(project.oftSourceDir)
useOftSources = oftSourceDir.exists()
Expand Down
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-7.0-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists