Skip to content

Commit

Permalink
Merge pull request #390 from bot-githubaction/upgradebot/bump-dv-mave…
Browse files Browse the repository at this point in the history
…n-extension-1.21.4

Bump references to Develocity Maven extension from 1.21.3 to 1.21.4
  • Loading branch information
clayburn committed May 23, 2024
2 parents ec08d63 + 9eededa commit ba12d23
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
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.3 | 2.0 |
| Next | 1.21.4 | 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.3'
mvnExtensions 'com.gradle:develocity-maven-extension:1.21.4'
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.3</version>
<version>1.21.4</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.3</version>
<version>1.21.4</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.gradle</groupId>
<artifactId>develocity-maven-extension</artifactId>
<version>1.21.3</version>
<version>1.21.4</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.3.jar";
private static final String DEVELOCITY_EXT_MAVEN = "develocity-maven-extension-1.21.4.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.3'
static final String DEVELOCITY_EXTENSION_VERSION = '1.21.4'
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.3
gradleEnterpriseExtensionVersion=1.21.4
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.3' | 'Develocity Maven Extension Version'
DEVELOCITY_EXTENSION_VERSION | '1.21.4' | '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

0 comments on commit ba12d23

Please sign in to comment.