Skip to content

Commit

Permalink
Fix gradle files. Update JVM version to 1.1.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
ww898 committed Oct 9, 2024
1 parent 93d384b commit a053591
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 6 deletions.
19 changes: 15 additions & 4 deletions jvm/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ val junitVersion = "5.8.2"
val mockitoVersion = "4.2.0"
val isUnderTeamCity = System.getenv("TEAMCITY_VERSION") != null

version = rootProject.ext.get("projectVersion") as String

buildscript {
repositories {
maven { url = uri("https://packages.jetbrains.team/maven/p/jcs/maven") }
Expand Down Expand Up @@ -73,7 +75,6 @@ if (isUnderTeamCity) {
create<MavenPublication>("mavenJava") {
artifactId = "format-ripper"
group = "com.jetbrains.format-ripper"
version = rootProject.ext.get("projectVersion") as String
from(components["java"])
pom {
packaging = "jar"
Expand All @@ -88,11 +89,21 @@ if (isUnderTeamCity) {
}
}

organization {
name.set("JetBrains s.r.o.")
url.set("https://www.jetbrains.com/")
}

developers {
developer {
id.set("anton.vladimirov")
name.set("Anton Vladimirov")
email.set("[email protected]")
id.set("mikhail.pilin")
name.set("Mikhail Pilin")
email.set("[email protected]")
}
developer {
id.set("konstantin.kretov")
name.set("Konstantin Kretov")
email.set("[email protected]")
}
}

Expand Down
3 changes: 1 addition & 2 deletions jvm/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
kotlin.code.style=official
projectVersion=1.0.0
projectVersion=1.1.2

0 comments on commit a053591

Please sign in to comment.