core/build.gradle.kts [71:103]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - tasks.withType { archiveBaseName = resultArchiveBaseName // to change name of out/libs/*.jar } publishing { publications { create("mavenJava") { from(components["java"]) artifactId = resultArchiveBaseName // by default `project.name` is used - "core" pom { name = "JediTerm" description = "Pure Java Terminal Emulator" url = "https://github.com/JetBrains/jediterm" licenses { license { name = "LGPL 3.0" url = "https://www.gnu.org/licenses/lgpl.txt" } } scm { connection = "scm:git:git://github.com/JetBrains/jediterm.git" developerConnection = "scm:git:ssh:github.com/JetBrains/jediterm.git" url = "https://github.com/JetBrains/jediterm" } } } } repositories { maven { url = uri("https://packages.jetbrains.team/maven/p/ij/intellij-dependencies") credentials { username = System.getenv("INTELLIJ_DEPENDENCIES_BOT") password = System.getenv("INTELLIJ_DEPENDENCIES_TOKEN") - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ui/build.gradle.kts [73:105]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - tasks.withType { archiveBaseName = resultArchiveBaseName } publishing { publications { create("mavenJava") { from(components["java"]) artifactId = resultArchiveBaseName pom { name = "JediTerm" description = "Pure Java Terminal Emulator" url = "https://github.com/JetBrains/jediterm" licenses { license { name = "LGPL 3.0" url = "https://www.gnu.org/licenses/lgpl.txt" } } scm { connection = "scm:git:git://github.com/JetBrains/jediterm.git" developerConnection = "scm:git:ssh:github.com/JetBrains/jediterm.git" url = "https://github.com/JetBrains/jediterm" } } } } repositories { maven { url = uri("https://packages.jetbrains.team/maven/p/ij/intellij-dependencies") credentials { username = System.getenv("INTELLIJ_DEPENDENCIES_BOT") password = System.getenv("INTELLIJ_DEPENDENCIES_TOKEN") - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -