Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for develocity (1.06 sec)

  1. .teamcity/.mvn/develocity.xml

      ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      ~ See the License for the specific language governing permissions and
      ~ limitations under the License.
      -->
    
    <develocity>
        <server>
            <url>https://ge.gradle.org</url>
        </server>
        <buildScan>
            <publishing>
                <onlyIf>true</onlyIf>
            </publishing>
            <values>
                <value>
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Tue Jan 07 10:57:45 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  2. .teamcity/.mvn/extensions.xml

      ~ See the License for the specific language governing permissions and
      ~ limitations under the License.
      -->
    
    <extensions>
      <extension>
        <groupId>com.gradle</groupId>
        <artifactId>develocity-maven-extension</artifactId>
        <version>1.23</version>
      </extension>
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Tue Jan 07 10:52:36 UTC 2025
    - 809 bytes
    - Viewed (0)
  3. .gitignore

    *.psoutput
    
    # oh-my-zsh gradle plugin
    .gradletasknamecache
    
    # Added GE support maven support to the maven build in .teamcity, per the GE docs, this dir is NOT to be committed
    .teamcity/.mvn/.develocity/
    /discoclient.properties
    
    # Ignore local configuration files for asdf, allowing the JDK to be configured for project (https://asdf-vm.com)
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Nov 21 09:26:06 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/configurations/CheckTeamCityKotlinDSL.kt

                    script {
                        name = "CLEAN_M2"
                        executionMode = BuildStep.ExecutionMode.ALWAYS
                        scriptContent = checkCleanDirUnixLike("%teamcity.agent.jvm.user.home%/.m2/.develocity", exitOnFailure = false)
                    }
                }
            },
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Jul 31 01:53:09 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/promotion/BasePromotionBuildType.kt

                requiresNotEc2Agent()
            }
    
            paramsForBuildToolBuild(BuildToolBuildJvm, Os.LINUX)
    
            params {
                password("env.DEVELOCITY_ACCESS_KEY", "%ge.gradle.org.access.key%;%develocity.grdev.net.access.key%")
                password("env.ORG_GRADLE_PROJECT_botGradleGitHubToken", "%github.bot-gradle.token%")
            }
    
            features {
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Mar 20 06:13:56 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/common/CommonExtensions.kt

                        checkCleanDirWindows("%teamcity.agent.jvm.user.home%\\.m2\\.gradle-enterprise") +
                        checkCleanDirWindows("%teamcity.agent.jvm.user.home%\\.m2\\.develocity") +
                        checkCleanDirWindows(
                            "%teamcity.agent.jvm.user.home%\\.android",
                            false,
                        )
                } else {
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Sep 10 01:37:13 UTC 2025
    - 15K bytes
    - Viewed (0)
  7. .github/CODEOWNERS

    subprojects/core-api                                        # @gradle/bt-cortex to be eventually moved to other core modules
    
    # Develocity integration
    platforms/enterprise/                                   @gradle/bt-build-scan
    platforms/enterprise/enterprise/                        @gradle/bt-build-scan @gradle/dv-testing-team
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Mon Jul 28 01:45:03 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  8. .github/workflows/codeql-analysis.yml

        - name: Compile with Gradle with Build Scan
          if: ${{ matrix.language == 'java' && github.repository_owner == 'gradle' }}
          run: ./gradlew --init-script .github/workflows/codeql-analysis.init.gradle -Ddevelocity.edge.discovery=false -DcacheNode=us -S testClasses -Dhttp.keepAlive=false
          env:
            # Set the DEVELOCITY_ACCESS_KEY so that a Build Scan is generated
            DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Aug 21 23:08:02 UTC 2025
    - 4K bytes
    - Viewed (0)
  9. api/maven-api-plugin/pom.xml

            <groupId>org.codehaus.modello</groupId>
            <artifactId>modello-maven-plugin</artifactId>
            <executions>
              <execution>
                <id>modello-plugin</id>
                <goals>
                  <goal>velocity</goal>
                  <goal>xdoc</goal>
                  <goal>xsd</goal>
                </goals>
                <phase>generate-sources</phase>
                <configuration>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sun Jun 29 22:37:39 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  10. .github/workflows/contributor-pr.yml

            with:
              script: |
                if (context.payload.pull_request && context.payload.pull_request.head.repo.fork) {
                    core.setOutput('sys-prop-args', '-DagreePublicBuildScanTermOfService=yes -Ddevelocity.edge.discovery=false -DcacheNode=us --scan')
                } else {
                    core.setOutput('sys-prop-args', '')
                }
          - name: Setup Gradle
            uses: gradle/actions/setup-gradle@v4
            with:
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Sep 04 22:13:34 UTC 2025
    - 4.1K bytes
    - Viewed (0)
Back to top