forked from pgjdbc/pgjdbc
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes to enable publishing of the jar
- Loading branch information
Showing
3 changed files
with
30 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,11 +50,11 @@ publishing { | |
val capitalizedName = project.name | ||
.replaceFirstChar { if (it.isLowerCase()) it.titlecase(Locale.getDefault()) else it.toString() } | ||
name.set( | ||
(project.findProperty("artifact.name") as? String) ?: "pgdjbc $capitalizedName" | ||
"YugabyteDB YSQL JDBC Driver" | ||
) | ||
description.set(project.description ?: "PostgreSQL JDBC Driver $capitalizedName") | ||
inceptionYear.set("1997") | ||
url.set("https://jdbc.postgresql.org") | ||
description.set(project.description ?: "Forked from https://github.com/pgjdbc/pgjdbc.git") | ||
inceptionYear.set("2016") | ||
url.set("https://www.yugabyte.com/") | ||
licenses { | ||
license { | ||
name.set("BSD-2-Clause") | ||
|
@@ -64,52 +64,39 @@ publishing { | |
} | ||
} | ||
organization { | ||
name.set("PostgreSQL Global Development Group") | ||
url.set("https://jdbc.postgresql.org/") | ||
name.set("Yugabyte Inc.") | ||
url.set("https://www.yugabyte.com/") | ||
} | ||
developers { | ||
developer { | ||
id.set("davecramer") | ||
name.set("Dave Cramer") | ||
id.set("kneeraj") | ||
name.set("Neeraj Kumar") | ||
} | ||
developer { | ||
id.set("jurka") | ||
name.set("Kris Jurka") | ||
id.set("sanyamsinghal") | ||
name.set("Sanyam Singhal") | ||
} | ||
developer { | ||
id.set("oliver") | ||
name.set("Oliver Jowett") | ||
id.set("ashetkar") | ||
name.set("Amogh Shetkar") | ||
} | ||
developer { | ||
id.set("ringerc") | ||
name.set("Craig Ringer") | ||
id.set("sfurti-yb") | ||
name.set("Sfurti Sarah") | ||
} | ||
developer { | ||
id.set("vlsi") | ||
name.set("Vladimir Sitnikov") | ||
} | ||
developer { | ||
id.set("bokken") | ||
name.set("Brett Okken") | ||
id.set("harshdaryani896") | ||
name.set("Harsh Daryani") | ||
} | ||
} | ||
issueManagement { | ||
system.set("GitHub issues") | ||
url.set("https://github.com/pgjdbc/pgjdbc/issues") | ||
} | ||
mailingLists { | ||
mailingList { | ||
name.set("PostgreSQL JDBC development list") | ||
subscribe.set("https://lists.postgresql.org/") | ||
unsubscribe.set("https://lists.postgresql.org/unsubscribe/") | ||
post.set("[email protected]") | ||
archive.set("https://www.postgresql.org/list/pgsql-jdbc/") | ||
} | ||
url.set("https://github.com/yugabyte/yugabyte-db/issues") | ||
} | ||
scm { | ||
connection.set("scm:git:https://github.com/pgjdbc/pgjdbc.git") | ||
developerConnection.set("scm:git:https://github.com/pgjdbc/pgjdbc.git") | ||
url.set("https://github.com/pgjdbc/pgjdbc") | ||
connection.set("scm:git:https://github.com/yugabyte/pgjdbc.git") | ||
developerConnection.set("scm:git:https://github.com/yugabyte/pgjdbc.git") | ||
url.set("https://github.com/yugabyte/pgjdbc") | ||
tag.set("HEAD") | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters