Skip to content

Commit

Permalink
Version 1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jjohannes committed Jan 29, 2024
1 parent 03d8e2d commit 8daf4c4
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
# Java Ecosystem Capabilities Gradle plugin - Changelog

## Version 1.5
* [New] [#61](https://github.com/gradlex-org/java-ecosystem-capabilities/issues/61) Generic rule implementations to ease configuration of custom rules in Java projects
* [New Rules] [#63](https://github.com/gradlex-org/java-ecosystem-capabilities/issues/63) Rule that sets the component status to 'integration' for common pre-release version numbers
* [New Rules] [#62](https://github.com/gradlex-org/java-ecosystem-capabilities/issues/62) com.g.c.findbugs:annotations / com.github.spotbugs:spotbugs-annotations (Thanks [Boris Petrov](https://github.com/boris-petrov) for reporting)

## Version 1.4
* [New Rules] [#50](https://github.com/gradlex-org/java-ecosystem-capabilities/issues/50) net.jcip:jcip-annotations / com.github.stephenc.jcip:jcip-annotations (Thanks [Boris Petrov](https://github.com/boris-petrov) for reporting)
* [Adjusted Rule] [#41](https://github.com/gradlex-org/java-ecosystem-capabilities/issues/41) org.glassfish.hk2.external:jakarta.injectt (Thanks [Boris Petrov](https://github.com/boris-petrov) for reporting)
* [Adjusted Rule] [#41](https://github.com/gradlex-org/java-ecosystem-capabilities/issues/41) org.glassfish.hk2.external:jakarta.inject (Thanks [Boris Petrov](https://github.com/boris-petrov) for reporting)
* [Adjusted Rule] [#59](https://github.com/gradlex-org/java-ecosystem-capabilities/issues/59) javax.mail:javax.mail-api / org.apache.geronimo.specs:geronimo-javamail (Thanks [Boris Petrov](https://github.com/boris-petrov)!)
* [Adjusted Rule] [#60](https://github.com/gradlex-org/java-ecosystem-capabilities/issues/60) org.springframework:spring-aop (Thanks [Boris Petrov](https://github.com/boris-petrov)!)

Expand Down
2 changes: 1 addition & 1 deletion README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Add this to the build file of your convention plugin's build

``` groovy
dependencies {
implementation("org.gradlex:java-ecosystem-capabilities:1.4")
implementation("org.gradlex:java-ecosystem-capabilities:1.5")
}
```

Expand Down
9 changes: 2 additions & 7 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
plugins {
id("groovy")
id("gradlexbuild.java-ecosystem-capabilities-documentation")
id("org.gradlex.internal.plugin-publish-conventions") version "0.5"
id("org.gradlex.internal.plugin-publish-conventions") version "0.6"
}

group = "org.gradlex"
version = "1.4"
version = "1.5"

java {
toolchain.languageVersion.set(JavaLanguageVersion.of(11)) // to run tests that use Android with 11
Expand Down Expand Up @@ -42,11 +42,6 @@ dependencies {
testRuntimeOnly("org.junit.vintage:junit-vintage-engine")
}

// TODO This needs to be included in org.gradlex.internal.plugin-publish-conventions
signing {
useInMemoryPgpKeys(providers.environmentVariable("SIGNING_KEY").orNull, providers.environmentVariable("SIGNING_PASSPHRASE").orNull)
}

testing.suites.named<JvmTestSuite>("test") {
useJUnitJupiter()
targets.all {
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-rc-2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-rc-3-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down

0 comments on commit 8daf4c4

Please sign in to comment.