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
| log.debug('Evaluating custom Develocity logic') | |
| buildCache.registerMojoMetadataProvider(context -> { | |
| context.withPlugin("openapi-generator-maven-plugin", () -> { | |
| if ("generate".equals(context.getMojoExecution().getGoal())) { | |
| log.debug('Configuring OpenAPI code generator caching') | |
| context.inputs(inputs -> { | |
| try { | |
| List<String> compileClasspathElements = context.getProject().getCompileClasspathElements(); |
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
| import com.gradle.develocity.agent.gradle.scan.BuildScanConfiguration | |
| import org.gradle.api.internal.project.ProjectInternal | |
| import org.gradle.api.services.BuildService | |
| import org.gradle.api.services.BuildServiceParameters | |
| import org.gradle.tooling.events.FinishEvent | |
| import org.gradle.tooling.events.OperationCompletionListener | |
| import java.time.Instant | |
| object Capture { | |
| var startTime: Long = 0L |
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
| log.debug('Evaluating custom Develocity logic') | |
| buildCache.registerMojoMetadataProvider(context -> { | |
| context.withPlugin("gwt-maven-plugin", () -> { | |
| if ("compile".equals(context.getMojoExecution().getGoal())) { | |
| log.debug('Configuring GWT caching') | |
| context.inputs(inputs -> { | |
| try { | |
| List<String> compileClasspathElements = context.getProject().getCompileClasspathElements(); |
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> <from_instant_in_ms>" | |
| 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
| 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) | |
| } |
NewerOlder