Skip to content

Commit 3ba46bb

Browse files
committed
Bump GE Maven extension version to 1.14.3
1 parent 25a0de2 commit 3ba46bb

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ _Note: For Gradle, the Common Custom User Data Gradle plugin must be at least ve
124124

125125
4. Find the links of the published build scans in the _Overview_ section of each TeamCity build.
126126

127-
_Note: For Maven, the Gradle Enterprise Maven extension and the Common Custom User Data Maven extension are currently hard-coded to versions 1.14.2 and 1.10.1, respectively._
127+
_Note: For Maven, the Gradle Enterprise Maven extension and the Common Custom User Data Maven extension are currently hard-coded to versions 1.14.3 and 1.10.1, respectively._
128128

129129
#### Example Configuration
130130

agent/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ configurations {
1616

1717
dependencies {
1818
mvnExtensions project(path: ':agent:service-message-maven-extension', configuration: 'mvnExtension')
19-
mvnExtensions 'com.gradle:gradle-enterprise-maven-extension:1.14.2'
19+
mvnExtensions 'com.gradle:gradle-enterprise-maven-extension:1.14.3'
2020
mvnExtensions 'com.gradle:common-custom-user-data-maven-extension:1.10.1'
2121

2222
testImplementation gradleTestKit()

agent/service-message-maven-extension/.mvn/extensions.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<extension>
44
<groupId>com.gradle</groupId>
55
<artifactId>gradle-enterprise-maven-extension</artifactId>
6-
<version>1.14.2</version>
6+
<version>1.14.3</version>
77
</extension>
88
<extension>
99
<groupId>com.gradle</groupId>

agent/service-message-maven-extension/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<dependency>
2929
<groupId>com.gradle</groupId>
3030
<artifactId>gradle-enterprise-maven-extension</artifactId>
31-
<version>1.14.2</version>
31+
<version>1.14.3</version>
3232
<scope>provided</scope>
3333
</dependency>
3434
</dependencies>

agent/src/main/java/nu/studer/teamcity/buildscan/agent/BuildScanServiceMessageInjector.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public class BuildScanServiceMessageInjector extends AgentLifeCycleAdapter {
3939
private static final String MAVEN_RUNNER = "Maven2";
4040
private static final String MAVEN_CMD_PARAMS = "runnerArgs";
4141
private static final String BUILD_SCAN_EXT_MAVEN = "service-message-maven-extension-1.0.jar";
42-
private static final String GRADLE_ENTERPRISE_EXT_MAVEN = "gradle-enterprise-maven-extension-1.14.2.jar";
42+
private static final String GRADLE_ENTERPRISE_EXT_MAVEN = "gradle-enterprise-maven-extension-1.14.3.jar";
4343
private static final String COMMON_CUSTOM_USER_DATA_EXT_MAVEN = "common-custom-user-data-maven-extension-1.10.1.jar";
4444

4545
// TeamCity Command-line runner

agent/src/test/groovy/nu/studer/teamcity/buildscan/agent/maven/GradleEnterpriseExtensionApplicationTest.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class GradleEnterpriseExtensionApplicationTest extends Specification {
2323
]
2424

2525
static final String GE_URL = System.getenv('GRADLE_ENTERPRISE_TEST_INSTANCE') ?: null
26-
static final String GE_EXTENSION_VERSION = '1.14.2'
26+
static final String GE_EXTENSION_VERSION = '1.14.3'
2727
static final String CCUD_EXTENSION_VERSION = '1.10.1'
2828

2929
@TempDir
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
gradleEnterprisePluginVersion=3.10.2
22
commonCustomUserDataPluginVersion=1.7.2
3-
gradleEnterpriseExtensionVersion=1.14.2
3+
gradleEnterpriseExtensionVersion=1.14.3
44
commonCustomUserDataExtensionVersion=1.10.1

src/test/groovy/nu/studer/teamcity/buildscan/connection/GradleEnterpriseConnectionProviderTest.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ class GradleEnterpriseConnectionProviderTest extends Specification {
5959
ALLOW_UNTRUSTED_SERVER | 'true' | 'Allow Untrusted Server'
6060
GRADLE_ENTERPRISE_PLUGIN_VERSION | '3.10.2' | 'Gradle Enterprise Gradle Plugin Version'
6161
COMMON_CUSTOM_USER_DATA_PLUGIN_VERSION | '1.7.2' | 'Common Custom User Data Gradle Plugin Version'
62-
GRADLE_ENTERPRISE_EXTENSION_VERSION | '1.14.2' | 'Gradle Enterprise Maven Extension Version'
62+
GRADLE_ENTERPRISE_EXTENSION_VERSION | '1.14.3' | 'Gradle Enterprise Maven Extension Version'
6363
COMMON_CUSTOM_USER_DATA_EXTENSION_VERSION | '1.10.1' | 'Common Custom User Data Maven Extension Version'
6464
INSTRUMENT_COMMAND_LINE_BUILD_STEP | 'true' | 'Instrument Command Line Build Steps'
6565
}

0 commit comments

Comments
 (0)