Skip to content

Instantly share code, notes, and snippets.

@s1monw1
Last active November 22, 2020 18:03
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save s1monw1/9bb3d817f31e22462ebdd1a567d8e78a to your computer and use it in GitHub Desktop.
Save s1monw1/9bb3d817f31e22462ebdd1a567d8e78a to your computer and use it in GitHub Desktop.
import com.github.jengelman.gradle.plugins.shadow.ShadowApplicationPlugin
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
import com.jfrog.bintray.gradle.BintrayPlugin
import org.jetbrains.kotlin.gradle.dsl.Coroutines
import org.gradle.api.publish.maven.MavenPom
import org.jetbrains.kotlin.gradle.plugin.KotlinPluginWrapper
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
import com.jfrog.bintray.gradle.BintrayExtension
val kotlinVersion = plugins.getPlugin(KotlinPluginWrapper::class.java).kotlinPluginVersion
val kotlinxCoroutinesVersion = "0.22.2"
project.group = "de.swirtz"
project.version = "0.0.1"
val artifactID = "sekurity"
plugins {
kotlin("jvm") version "1.2.30"
`maven-publish`
id("com.jfrog.bintray") version "1.8.0"
id("com.github.johnrengelman.shadow") version "2.0.2"
}
kotlin {
experimental.coroutines = Coroutines.ENABLE
}
dependencies {
compile(kotlin("stdlib-jre8", kotlinVersion))
compile(kotlin("reflect", kotlinVersion))
compile("org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlinxCoroutinesVersion")
compile("org.slf4j:slf4j-api:1.7.14")
compile("ch.qos.logback:logback-classic:1.1.3")
testCompile(kotlin("test-junit", kotlinVersion))
testCompile("junit:junit:4.11")
testCompile("org.eclipse.jetty:jetty-server:9.4.7.v20170914")
}
repositories {
mavenCentral()
jcenter()
}
val shadowJar: ShadowJar by tasks
shadowJar.apply {
baseName = artifactID
classifier = null
}
fun MavenPom.addDependencies() = withXml {
asNode().appendNode("dependencies").let { depNode ->
configurations.compile.allDependencies.forEach {
depNode.appendNode("dependency").apply {
appendNode("groupId", it.group)
appendNode("artifactId", it.name)
appendNode("version", it.version)
}
}
}
}
val publicationName = "tlslib"
publishing {
publications.invoke {
publicationName(MavenPublication::class) {
artifactId = artifactID
artifact(shadowJar)
pom.addDependencies()
}
}
}
fun findProperty(s: String) = project.findProperty(s) as String?
bintray {
user = findProperty("bintrayUser")
key = findProperty("bintrayApiKey")
publish = true
setPublications(publicationName)
pkg(delegateClosureOf<BintrayExtension.PackageConfig> {
repo = "SeKurity"
name = "SeKurity"
userOrg = "simon-wirtz"
websiteUrl = "https://blog.simon-wirtz.de"
githubRepo = "s1monw1/TlsLibrary"
vcsUrl = "https://github.com/s1monw1/TlsLibrary"
description = "Simple Lib for TLS/SSL socket handling written in Kotlin"
setLabels("kotlin")
setLicenses("MIT")
desc = description
})
}
tasks {
withType(GradleBuild::class.java) {
dependsOn(shadowJar)
}
withType<KotlinCompile> {
kotlinOptions.jvmTarget = "1.8"
}
withType(Test::class.java) {
testLogging.showStandardStreams = true
}
withType<GenerateMavenPom> {
destination = file("$buildDir/libs/${shadowJar.archiveName}.pom")
}
}
@FarshidRoohi
Copy link

Hi
Thanks for you share code
i have the problem this line :
val publicationName = "mySharedCode"
Gradle sync error : Publication with name 'mySharedCode' not found.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment