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

Bump references to Develocity Maven extension from 1.21.4 to 1.23 #423

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ For Maven builds, the version of the Develocity Maven extension automatically ap

| TC Build Scan plugin version | Injected Develocity Maven extension version | Injected Common CCUD Maven extension version |
|------------------------------|---------------------------------------------|----------------------------------------------|
| Next | 1.21.4 | 2.0 |
| Next | 1.23 | 2.0 |
| 0.35 | 1.18.1 | 1.12.2 |
| 0.34 | 1.18 | 1.12.2 |
| 0.33 | 1.16.1 | 1.11.1 |
Expand Down
2 changes: 1 addition & 1 deletion agent/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ configurations {

dependencies {
mvnExtensions project(path: ':agent:service-message-maven-extension', configuration: 'mvnExtension')
mvnExtensions 'com.gradle:develocity-maven-extension:1.21.4'
mvnExtensions 'com.gradle:develocity-maven-extension:1.23'
mvnExtensions 'com.gradle:common-custom-user-data-maven-extension:2.0'

testImplementation gradleTestKit()
Expand Down
2 changes: 1 addition & 1 deletion agent/service-message-maven-extension/.mvn/extensions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<extension>
<groupId>com.gradle</groupId>
<artifactId>develocity-maven-extension</artifactId>
<version>1.21.4</version>
<version>1.23</version>
</extension>
<extension>
<groupId>com.gradle</groupId>
Expand Down
4 changes: 2 additions & 2 deletions agent/service-message-maven-extension/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@
<dependency>
<groupId>com.gradle</groupId>
<artifactId>gradle-enterprise-maven-extension</artifactId>
<version>1.21.4</version>
<version>1.23</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.gradle</groupId>
<artifactId>develocity-maven-extension</artifactId>
<version>1.21.4</version>
<version>1.23</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public class BuildScanServiceMessageInjector extends AgentLifeCycleAdapter {
private static final String MAVEN_RUNNER = "Maven2";
private static final String MAVEN_CMD_PARAMS = "runnerArgs";
private static final String BUILD_SCAN_EXT_MAVEN = "service-message-maven-extension-1.0.jar";
private static final String DEVELOCITY_EXT_MAVEN = "develocity-maven-extension-1.21.4.jar";
private static final String DEVELOCITY_EXT_MAVEN = "develocity-maven-extension-1.23.jar";
private static final String COMMON_CUSTOM_USER_DATA_EXT_MAVEN = "common-custom-user-data-maven-extension-2.0.jar";

// TeamCity Command-line runner
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ abstract class BaseExtensionApplicationTest extends Specification {

static final String DEVELOCITY_URL_STR = System.getenv('DEVELOCITY_TEST_INSTANCE')
static final URI DEVELOCITY_URL = DEVELOCITY_URL_STR ? new URI(DEVELOCITY_URL_STR) : null
static final String DEVELOCITY_EXTENSION_VERSION = '1.21.4'
static final String DEVELOCITY_EXTENSION_VERSION = '1.23'
static final String CCUD_EXTENSION_VERSION = '2.0'

@TempDir
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/default-plugin-versions.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
gradleEnterprisePluginVersion=3.17.4
commonCustomUserDataPluginVersion=2.0.1
gradleEnterpriseExtensionVersion=1.21.4
gradleEnterpriseExtensionVersion=1.23
commonCustomUserDataExtensionVersion=2.0
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class DevelocityConnectionProviderTest extends Specification {
ALLOW_UNTRUSTED_SERVER | 'true' | 'Allow Untrusted Server'
DEVELOCITY_PLUGIN_VERSION | '3.17.4' | 'Develocity Gradle Plugin Version'
CCUD_PLUGIN_VERSION | '2.0.1' | 'Common Custom User Data Gradle Plugin Version'
DEVELOCITY_EXTENSION_VERSION | '1.21.4' | 'Develocity Maven Extension Version'
DEVELOCITY_EXTENSION_VERSION | '1.23' | 'Develocity Maven Extension Version'
CCUD_EXTENSION_VERSION | '2.0' | 'Common Custom User Data Maven Extension Version'
CUSTOM_DEVELOCITY_EXTENSION_COORDINATES | 'com.company:my-ge-extension' | 'Develocity Maven Extension Custom Coordinates'
CUSTOM_CCUD_EXTENSION_COORDINATES | 'com.company:my-ccud-extension' | 'Common Custom User Data Maven Extension Custom Coordinates'
Expand Down
Loading