Skip to content

Commit

Permalink
Prepare for release 2.5.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
autonomousapps committed Nov 21, 2024
1 parent eb612ae commit c89150c
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 10 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
Dependency Analysis Plugin Changelog

# Version 2.5.0
* [Feat]: use KotlinEditor to rewrite Gradle Kotlin DSL scripts.
* [Fix]: ProjectAdvice is totally Comparable.
* [Refactor]: make a lot of data models internal that don't need to be public.

# Version 2.4.2
* [Fix]: reason can explain usage of invisible annotations.

Expand Down
3 changes: 1 addition & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,8 @@ org.gradle.caching=true
org.gradle.parallel=true
org.gradle.configuration-cache=true

VERSION=2.4.3-SNAPSHOT
VERSION=2.5.0

dependency.analysis.autoapply=false
dependency.analysis.print.build.health=true

# Uncomment to use maven local
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ antlr-shadowed = "4.10.1.6"
asm-relocated = "9.7.1.0"
caffeine = "3.1.8"
commons-io = "2.16.0"
dagp = "1.33.0"
dagp = "2.4.2"
error-prone = "2.26.1"
gradle-publish-plugin = "1.1.0"
grammar = "0.3"
Expand Down
6 changes: 4 additions & 2 deletions testkit/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
# Copyright (c) 2024. Tony Robalik.
# SPDX-License-Identifier: Apache-2.0
org.gradle.jvmargs=-Dfile.encoding=UTF-8 -XX:+HeapDumpOnOutOfMemoryError -XX:MaxMetaspaceSize=512m
org.gradle.jvmargs=-Xmx6G \
-Dfile.encoding=UTF-8 \
-XX:+HeapDumpOnOutOfMemoryError \
-XX:MaxMetaspaceSize=1024m
org.gradle.caching=true
org.gradle.parallel=true
org.gradle.configuration-cache=true

dependency.analysis.autoapply=false
dependency.analysis.print.build.health=true

# Uncomment to use maven local
Expand Down
10 changes: 5 additions & 5 deletions testkit/settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ pluginManagement {
plugins {
id("com.autonomousapps.testkit") version "0.8"
id("com.github.johnrengelman.shadow") version "8.1.1"
id("com.gradle.enterprise") version "3.15.1"
id("com.gradle.enterprise") version "3.18.2"
id("com.gradle.plugin-publish") version "1.1.0"
id("org.jetbrains.dokka") version "1.9.20"
}
Expand Down Expand Up @@ -60,11 +60,11 @@ dependencyResolutionManagement {
}
}

gradleEnterprise {
develocity {
buildScan {
publishAlways()
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
publishing.onlyIf { true }
termsOfUseUrl = "https://gradle.com/terms-of-service"
termsOfUseAgree = "yes"

tag(if (System.getenv("CI").isNullOrBlank()) "Local" else "CI")
}
Expand Down

0 comments on commit c89150c

Please sign in to comment.