mirror of
https://github.com/JFormDesigner/FlatLaf.git
synced 2025-12-06 14:00:55 +03:00
build.gradle.kts:
- plugin versions now defined in single location (settings.gradle.kts) - going back to Gradle 6.1.1 - using "extra" properties for bintray user and key - allow easy enabling/disabling bintray upload dryMode and publishing
This commit is contained in:
@@ -38,3 +38,14 @@ println( "FlatLaf Version: ${version}" )
|
|||||||
println( "Gradle ${gradle.gradleVersion} at ${gradle.gradleHomeDir}" )
|
println( "Gradle ${gradle.gradleVersion} at ${gradle.gradleHomeDir}" )
|
||||||
println( "Java ${System.getProperty( "java.version" )}" )
|
println( "Java ${System.getProperty( "java.version" )}" )
|
||||||
println()
|
println()
|
||||||
|
|
||||||
|
|
||||||
|
extra["bintray.user"] = System.getenv( "BINTRAY_USER" ) ?: System.getProperty( "bintray.user" )
|
||||||
|
extra["bintray.key"] = System.getenv( "BINTRAY_KEY" ) ?: System.getProperty( "bintray.key" )
|
||||||
|
|
||||||
|
// if true, do not upload to bintray
|
||||||
|
extra["bintray.dryRun"] = false
|
||||||
|
|
||||||
|
// if true, uploaded artifacts are visible to all
|
||||||
|
// if false, only visible to owner when logged into bintray
|
||||||
|
extra["bintray.publish"] = true
|
||||||
|
|||||||
@@ -17,8 +17,8 @@
|
|||||||
plugins {
|
plugins {
|
||||||
`java-library`
|
`java-library`
|
||||||
`maven-publish`
|
`maven-publish`
|
||||||
id( "com.jfrog.bintray" ) version "1.8.4"
|
id( "com.jfrog.bintray" )
|
||||||
id( "com.jfrog.artifactory" ) version "4.13.0"
|
id( "com.jfrog.artifactory" )
|
||||||
}
|
}
|
||||||
|
|
||||||
if( JavaVersion.current() >= JavaVersion.VERSION_1_9 ) {
|
if( JavaVersion.current() >= JavaVersion.VERSION_1_9 ) {
|
||||||
@@ -127,8 +127,8 @@ publishing {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bintray {
|
bintray {
|
||||||
user = System.getenv( "BINTRAY_USER" ) ?: System.getProperty( "bintray.user" )
|
user = rootProject.extra["bintray.user"] as String?
|
||||||
key = System.getenv( "BINTRAY_KEY" ) ?: System.getProperty( "bintray.key" )
|
key = rootProject.extra["bintray.key"] as String?
|
||||||
|
|
||||||
setPublications( "maven" )
|
setPublications( "maven" )
|
||||||
|
|
||||||
@@ -142,7 +142,8 @@ bintray {
|
|||||||
name = project.version.toString()
|
name = project.version.toString()
|
||||||
}
|
}
|
||||||
|
|
||||||
publish = true
|
publish = rootProject.extra["bintray.publish"] as Boolean
|
||||||
|
dryRun = rootProject.extra["bintray.dryRun"] as Boolean
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -152,8 +153,8 @@ artifactory {
|
|||||||
publish( closureOf<org.jfrog.gradle.plugin.artifactory.dsl.PublisherConfig> {
|
publish( closureOf<org.jfrog.gradle.plugin.artifactory.dsl.PublisherConfig> {
|
||||||
repository( delegateClosureOf<groovy.lang.GroovyObject> {
|
repository( delegateClosureOf<groovy.lang.GroovyObject> {
|
||||||
setProperty( "repoKey", "oss-snapshot-local" )
|
setProperty( "repoKey", "oss-snapshot-local" )
|
||||||
setProperty( "username", System.getenv( "BINTRAY_USER" ) ?: System.getProperty( "bintray.user" ) )
|
setProperty( "username", rootProject.extra["bintray.user"] as String? )
|
||||||
setProperty( "password", System.getenv( "BINTRAY_KEY" ) ?: System.getProperty( "bintray.key" ) )
|
setProperty( "password", rootProject.extra["bintray.key"] as String? )
|
||||||
} )
|
} )
|
||||||
|
|
||||||
defaults( delegateClosureOf<groovy.lang.GroovyObject> {
|
defaults( delegateClosureOf<groovy.lang.GroovyObject> {
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
`java-library`
|
`java-library`
|
||||||
id( "com.jfrog.bintray" ) version "1.8.4"
|
id( "com.jfrog.bintray" )
|
||||||
|
|
||||||
// Although artifactory plugin is not used in this subproject, the plugin is required
|
// Although artifactory plugin is not used in this subproject, the plugin is required
|
||||||
// because otherwise gradle fails with following error:
|
// because otherwise gradle fails with following error:
|
||||||
@@ -24,7 +24,7 @@ plugins {
|
|||||||
// Cannot cast object 'task ':bintrayUpload''
|
// Cannot cast object 'task ':bintrayUpload''
|
||||||
// with class 'com.jfrog.bintray.gradle.tasks.BintrayUploadTask_Decorated'
|
// with class 'com.jfrog.bintray.gradle.tasks.BintrayUploadTask_Decorated'
|
||||||
// to class 'com.jfrog.bintray.gradle.tasks.BintrayUploadTask'
|
// to class 'com.jfrog.bintray.gradle.tasks.BintrayUploadTask'
|
||||||
id( "com.jfrog.artifactory" ) version "4.13.0"
|
id( "com.jfrog.artifactory" )
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
@@ -58,8 +58,8 @@ tasks {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bintray {
|
bintray {
|
||||||
user = System.getenv( "BINTRAY_USER" ) ?: System.getProperty( "bintray.user" )
|
user = rootProject.extra["bintray.user"] as String?
|
||||||
key = System.getenv( "BINTRAY_KEY" ) ?: System.getProperty( "bintray.key" )
|
key = rootProject.extra["bintray.key"] as String?
|
||||||
|
|
||||||
setConfigurations( "archives" )
|
setConfigurations( "archives" )
|
||||||
|
|
||||||
@@ -73,6 +73,7 @@ bintray {
|
|||||||
name = project.version.toString()
|
name = project.version.toString()
|
||||||
}
|
}
|
||||||
|
|
||||||
publish = true
|
publish = rootProject.extra["bintray.publish"] as Boolean
|
||||||
|
dryRun = rootProject.extra["bintray.dryRun"] as Boolean
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,8 +17,8 @@
|
|||||||
plugins {
|
plugins {
|
||||||
`java-library`
|
`java-library`
|
||||||
`maven-publish`
|
`maven-publish`
|
||||||
id( "com.jfrog.bintray" ) version "1.8.4"
|
id( "com.jfrog.bintray" )
|
||||||
id( "com.jfrog.artifactory" ) version "4.13.0"
|
id( "com.jfrog.artifactory" )
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
@@ -100,8 +100,8 @@ publishing {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bintray {
|
bintray {
|
||||||
user = System.getenv( "BINTRAY_USER" ) ?: System.getProperty( "bintray.user" )
|
user = rootProject.extra["bintray.user"] as String?
|
||||||
key = System.getenv( "BINTRAY_KEY" ) ?: System.getProperty( "bintray.key" )
|
key = rootProject.extra["bintray.key"] as String?
|
||||||
|
|
||||||
setPublications( "maven" )
|
setPublications( "maven" )
|
||||||
|
|
||||||
@@ -115,7 +115,8 @@ bintray {
|
|||||||
name = project.version.toString()
|
name = project.version.toString()
|
||||||
}
|
}
|
||||||
|
|
||||||
publish = true
|
publish = rootProject.extra["bintray.publish"] as Boolean
|
||||||
|
dryRun = rootProject.extra["bintray.dryRun"] as Boolean
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -125,8 +126,8 @@ artifactory {
|
|||||||
publish( closureOf<org.jfrog.gradle.plugin.artifactory.dsl.PublisherConfig> {
|
publish( closureOf<org.jfrog.gradle.plugin.artifactory.dsl.PublisherConfig> {
|
||||||
repository( delegateClosureOf<groovy.lang.GroovyObject> {
|
repository( delegateClosureOf<groovy.lang.GroovyObject> {
|
||||||
setProperty( "repoKey", "oss-snapshot-local" )
|
setProperty( "repoKey", "oss-snapshot-local" )
|
||||||
setProperty( "username", System.getenv( "BINTRAY_USER" ) ?: System.getProperty( "bintray.user" ) )
|
setProperty( "username", rootProject.extra["bintray.user"] as String? )
|
||||||
setProperty( "password", System.getenv( "BINTRAY_KEY" ) ?: System.getProperty( "bintray.key" ) )
|
setProperty( "password", rootProject.extra["bintray.key"] as String? )
|
||||||
} )
|
} )
|
||||||
|
|
||||||
defaults( delegateClosureOf<groovy.lang.GroovyObject> {
|
defaults( delegateClosureOf<groovy.lang.GroovyObject> {
|
||||||
|
|||||||
@@ -17,8 +17,8 @@
|
|||||||
plugins {
|
plugins {
|
||||||
`java-library`
|
`java-library`
|
||||||
`maven-publish`
|
`maven-publish`
|
||||||
id( "com.jfrog.bintray" ) version "1.8.4"
|
id( "com.jfrog.bintray" )
|
||||||
id( "com.jfrog.artifactory" ) version "4.13.0"
|
id( "com.jfrog.artifactory" )
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
@@ -100,8 +100,8 @@ publishing {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bintray {
|
bintray {
|
||||||
user = System.getenv( "BINTRAY_USER" ) ?: System.getProperty( "bintray.user" )
|
user = rootProject.extra["bintray.user"] as String?
|
||||||
key = System.getenv( "BINTRAY_KEY" ) ?: System.getProperty( "bintray.key" )
|
key = rootProject.extra["bintray.key"] as String?
|
||||||
|
|
||||||
setPublications( "maven" )
|
setPublications( "maven" )
|
||||||
|
|
||||||
@@ -115,7 +115,8 @@ bintray {
|
|||||||
name = project.version.toString()
|
name = project.version.toString()
|
||||||
}
|
}
|
||||||
|
|
||||||
publish = true
|
publish = rootProject.extra["bintray.publish"] as Boolean
|
||||||
|
dryRun = rootProject.extra["bintray.dryRun"] as Boolean
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -125,8 +126,8 @@ artifactory {
|
|||||||
publish( closureOf<org.jfrog.gradle.plugin.artifactory.dsl.PublisherConfig> {
|
publish( closureOf<org.jfrog.gradle.plugin.artifactory.dsl.PublisherConfig> {
|
||||||
repository( delegateClosureOf<groovy.lang.GroovyObject> {
|
repository( delegateClosureOf<groovy.lang.GroovyObject> {
|
||||||
setProperty( "repoKey", "oss-snapshot-local" )
|
setProperty( "repoKey", "oss-snapshot-local" )
|
||||||
setProperty( "username", System.getenv( "BINTRAY_USER" ) ?: System.getProperty( "bintray.user" ) )
|
setProperty( "username", rootProject.extra["bintray.user"] as String? )
|
||||||
setProperty( "password", System.getenv( "BINTRAY_KEY" ) ?: System.getProperty( "bintray.key" ) )
|
setProperty( "password", rootProject.extra["bintray.key"] as String? )
|
||||||
} )
|
} )
|
||||||
|
|
||||||
defaults( delegateClosureOf<groovy.lang.GroovyObject> {
|
defaults( delegateClosureOf<groovy.lang.GroovyObject> {
|
||||||
|
|||||||
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@@ -1,5 +1,5 @@
|
|||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1-bin.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-bin.zip
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
|
|||||||
@@ -22,3 +22,10 @@ include( "flatlaf-swingx" )
|
|||||||
include( "flatlaf-jide-oss" )
|
include( "flatlaf-jide-oss" )
|
||||||
include( "flatlaf-demo" )
|
include( "flatlaf-demo" )
|
||||||
include( "flatlaf-testing" )
|
include( "flatlaf-testing" )
|
||||||
|
|
||||||
|
pluginManagement {
|
||||||
|
plugins {
|
||||||
|
id( "com.jfrog.bintray" ) version "1.8.4"
|
||||||
|
id( "com.jfrog.artifactory" ) version "4.13.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user