Mercurial > public > develkit
view artifactory40.gradle @ 362:de8c350c511a tip
domain change from ssdt.io to ssdt-ohio.org
author | Marc Davis <marc.davis@mcoecn.org> |
---|---|
date | Wed, 04 Sep 2024 10:18:53 -0400 |
parents | 7ca1fbf8636a |
children |
line wrap: on
line source
logger.info("applying SSDT bamboo/artifactory Gradle Settings") buildscript { repositories { maven { url 'https://docker.ssdt-ohio.org/artifactory/gradle-plugins' } } dependencies { classpath "org.jfrog.buildinfo:build-info-extractor-gradle:3.0.1" } } //apply plugin: org.jfrog.gradle.plugin.artifactory.ArtifactoryConfigurationsPlugin allprojects { apply plugin: org.jfrog.gradle.plugin.artifactory.ArtifactoryConfigurationsPlugin } artifactory { contextUrl = 'https://docker.ssdt-ohio.org/artifactory' publish { def isFeature = gradle.branchStream == 'feature' repository { repoKey = isFeature ? 'libs-branches-local' : 'libs-snapshots-local' if (gradle.branch.isRelease()) { repoKey = 'libs-releases-local' } // Publisher username and password // Sub projects must provide these values via command line or properties file username = artifactoryUsername password = artifactoryPassword if (isFeature) { ivy { ivyLayout = "${project.gradle.branchHash}/[organization]/[module]/ivy-[revision].xml" artifactLayout = "${project.gradle.branchHash}/[organization]/[module]/[revision]/[module]-[revision](-[classifier]).[ext]" mavenCompatible = false } } } defaults { publishBuildInfo = true publishArtifacts = true publishPom = false publishIvy = true properties = [ 'ssdt-branch.branchName': gradle.branchName.replaceAll('/','-'), 'ssdt-branch.branchStream': gradle.branchStream ] } } }