Skip to content

Commit

Permalink
Fix minor issue with POM packaging value
Browse files Browse the repository at this point in the history
  • Loading branch information
gabor-boros committed Mar 4, 2020
1 parent c312908 commit 4a11667
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ plugins {
id("com.jfrog.bintray") version "1.8.4"
}

version = "2.4.1"
version = "2.4.1.1"
group = "com.rethinkdb"

java.sourceCompatibility = JavaVersion.VERSION_1_8
Expand Down Expand Up @@ -291,7 +291,7 @@ tasks {
pom.withXml {
val root = asNode()
root.appendNode("name", "RethinkDB Java Driver")
root.appendNode("packaging", "Official Java driver for RethinkDB")
root.appendNode("packaging", "jar")
root.appendNode("description", "Official Java driver for RethinkDB")
root.appendNode("url", "http://rethinkdb.com")

Expand Down

0 comments on commit 4a11667

Please sign in to comment.