Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for pom (0.64 sec)

  1. .teamcity/pom.xml

            <dependency>
                <groupId>org.jetbrains.teamcity</groupId>
                <artifactId>configs-dsl-kotlin-plugins-latest</artifactId>
                <version>1.0-SNAPSHOT</version>
                <type>pom</type>
                <scope>compile</scope>
            </dependency>
            <dependency>
                <groupId>org.jetbrains.kotlin</groupId>
                <artifactId>kotlin-stdlib-jdk8</artifactId>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:44:21 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/MavenModule.groovy

            return this
        }
    
        String shortNotation() {
            return "$groupId:$artifactId:$version"
        }
    
        File getPomFile() {
            return new File(moduleDir, "$artifactId-${publishArtifactVersion}.pom")
        }
    
        File artifactFile(Map<String, ?> options) {
            def artifact = toArtifact(options)
            def fileName = "$artifactId-${publishArtifactVersion}.${artifact.type}"
            if (artifact.classifier) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 5.1K bytes
    - Viewed (0)
  3. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/MavenPom.groovy

     */
    
    package gradlebuild.performance.generator
    
    import groovy.xml.XmlParser
    
    class MavenPom {
        final Map<String, MavenScope> scopes = [:]
    
        MavenPom(File pomFile) {
            def pom = new XmlParser().parse(pomFile)
            pom.dependencies.dependency.each { dep ->
                def scopeElement = dep.scope
                def scopeName = scopeElement ? scopeElement.text() : "runtime"
                def scope = scopes[scopeName]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 15 14:07:46 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  4. .teamcity/README.md

    # CI Pipeline Configuration
    
    ## Open & import the project
    
    In your IDEA, `File` - `Open`, select `.teamcity/pom.xml`, `import as project`, and you'll have a Maven project.
    
    ## Project structure
    
    Mostly a standard Maven project structure. The entry point `settings.kts` defines the TeamCity project.
    
    There are 3 subprojects in the TeamCity project hierarchy: `Check` for Gradle builds, `Promotion` for releasing Gradle versions, `Util` for miscellaneous utilities.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 23:02:25 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. build-logic/publishing/src/main/kotlin/gradlebuild.publish-public-libraries.gradle.kts

        versionMapping {
            usage("java-api") {
                fromResolutionResult()
            }
            usage("java-runtime") {
                fromResolutionResult()
            }
        }
    
        pom {
            packaging = "jar"
            name = moduleIdentity.baseName.map { "${project.group}:$it" }
        }
    }
    
    fun publishNormalizedToLocalRepository() {
        val localRepository = layout.buildDirectory.dir("repo")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:57 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/tasks/DistributionTest.kt

         */
        @get:InputFiles
        @get:PathSensitive(PathSensitivity.RELATIVE)
        val metadatas: FileCollection
            get() = localRepo.asFileTree.matching {
                include("**/*.pom")
                include("**/*.xml")
                include("**/*.module")
            }
    
        override fun asArguments() =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 01 22:53:59 UTC 2022
    - 8K bytes
    - Viewed (0)
  7. build-logic/dependency-modules/src/main/kotlin/gradlebuild.dependency-modules.gradle.kts

                withDependencies {
                    filter { it.group == "xml-apis" }.forEach {
                        it.version { require("1.4.01") }
                        it.because("Gradle has trouble with the versioning scheme and pom redirects in higher versions")
                    }
                }
            }
        }
    }
    
    
    abstract class ReplaceCglibNodepWithCglibRule : ComponentMetadataRule {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 20:15:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  8. build-logic/publishing/src/main/kotlin/gradlebuild.publish-defaults.gradle.kts

                    username = artifactoryUserName
                    password = artifactoryUserPassword
                }
            }
        }
    
        publications.withType<MavenPublication>().configureEach {
            pom {
                description = provider {
                    require(project.description != null) { "You must set the description of published project ${project.name}" }
                    project.description
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:58 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. build-logic/publishing/src/main/kotlin/gradlebuild.kotlin-dsl-plugin-bundle.gradle.kts

        }
    }
    
    publishing.publications.withType<MavenPublication>().configureEach {
        if (name == "pluginMaven") {
            groupId = project.group.toString()
            artifactId = moduleIdentity.baseName.get()
        }
        pom {
            licenses {
                license {
                    name = "The Apache License, Version 2.0"
                    url = "http://www.apache.org/licenses/LICENSE-2.0.txt"
                }
            }
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top