This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM bellsoft/liberica-openjdk-alpine:21 | |
RUN apk add maven | |
ENV MAVEN_HOME=/usr/share/java/maven-3 | |
# Collect convention extension from binary manager | |
#RUN mkdir -p $MAVEN_HOME/lib/ext | |
#ADD https://my-repo-hostname/repo/com/myorg/1.0/develocity-convention-extension-1.0.jar $MAVEN_HOME/lib/ext |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.myorg; | |
import com.gradle.develocity.agent.maven.api.DevelocityApi; | |
import com.gradle.develocity.agent.maven.api.DevelocityListener; | |
import com.gradle.develocity.agent.maven.api.cache.BuildCacheApi; | |
import com.gradle.develocity.agent.maven.api.scan.BuildScanApi; | |
import org.apache.maven.execution.MavenSession; | |
import org.slf4j.Logger; | |
import org.slf4j.LoggerFactory; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Parse CLI arguments | |
if [[ $# -lt 3 ]]; then | |
echo "Usage: $0 <develocity_url> <access_key> <yyyy-mm>" | |
exit 1 | |
fi | |
# Init parameters | |
readonly develocityUrl=$1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Parse CLI arguments | |
if [[ $# -lt 3 ]]; then | |
echo "Usage: $0 <develocity_url> <access_key> <yyyy-mm>" | |
exit 1 | |
fi | |
# Init parameters | |
readonly develocityUrl=$1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tasks.named("e2eTest") { | |
val dockerImageIdsProvider = providers.provider { | |
val dockerImageIds = mutableMapOf<String,String>() | |
layout.projectDirectory.file("src/test/resources/docker-images.txt").asFile.forEachLine { dockerImageName -> | |
val dockerImageId = providers.exec { | |
commandLine("docker", "images", dockerImageName, "--format", "{{.ID}}") | |
}.standardOutput.asText.getOrElse("not-found-${UUID.randomUUID()}") | |
logger.info("Adding input $dockerImageName=$dockerImageId") | |
dockerImageIds.put(dockerImageName,dockerImageId) | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Parse CLI arguments | |
if [[ $# -lt 3 ]]; then | |
echo "Usage: $0 <develocity_url> <access_key> <yyyy-mm>" | |
exit 1 | |
fi | |
# Init parameters | |
readonly develocityUrl=$1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<profiles> | |
<profile> | |
<id>local</id> | |
<activation> | |
… | |
</activation> | |
<properties> | |
<develocity.quarkus.dump.config.suffix>config-check-local</develocity.quarkus.dump.config.suffix> | |
</properties> | |
</profile> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<plugin> | |
<groupId>${quarkus.platform.group-id}</groupId> | |
<artifactId>quarkus-maven-plugin</artifactId> | |
<version>${quarkus.platform.version}</version> | |
<extensions>true</extensions> | |
<executions> | |
<execution> | |
<id>track-prod-config-changes</id> | |
<phase>process-resources</phase> | |
<goals> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<properties> | |
<quarkus.config-tracking.enabled>true</quarkus.config-tracking.enabled> | |
</properties> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<extensions> | |
<extension> | |
<groupId>com.gradle</groupId> | |
<artifactId>develocity-maven-extension</artifactId> | |
<version>1.22</version> | |
</extension> | |
<extension> | |
<groupId>com.gradle</groupId> | |
<artifactId>quarkus-build-caching-extension</artifactId> | |
<version>1.8</version> |
NewerOlder