Skip to content

Commit 1b63401

Browse files
authored
fixed MANIFEST.MF fields (#29)
1 parent 72a75f9 commit 1b63401

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

build.gradle.kts

+3-3
Original file line numberDiff line numberDiff line change
@@ -504,16 +504,16 @@ allprojects {
504504
configureEach<Jar> {
505505
manifest {
506506
attributes["Bundle-License"] = "BSD-2-Clause"
507-
attributes["Implementation-Title"] = "PostgreSQL JDBC Driver"
507+
attributes["Implementation-Title"] = "Amazon Web Services (AWS) JDBC Driver for PostgreSQL"
508508
attributes["Implementation-Version"] = project.version
509509
val jdbcSpec = props.string("jdbc.specification.version")
510510
if (jdbcSpec.isNotBlank()) {
511511
attributes["Specification-Vendor"] = "Oracle Corporation"
512512
attributes["Specification-Version"] = jdbcSpec
513513
attributes["Specification-Title"] = "JDBC"
514514
}
515-
attributes["Implementation-Vendor"] = "PostgreSQL Global Development Group"
516-
attributes["Implementation-Vendor-Id"] = "org.postgresql"
515+
attributes["Implementation-Vendor"] = "Amazon Web Services (AWS)"
516+
attributes["Implementation-Vendor-Id"] = "software.aws.rds"
517517
}
518518
}
519519

pgjdbc/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ val shadedLicenseFiles = licensesCopySpec(renderShadedLicense)
172172
tasks.configureEach<Jar> {
173173
archiveBaseName.set("aws-postgresql-jdbc")
174174
manifest {
175-
attributes["Main-Class"] = "org.postgresql.util.PGJDBCMain"
175+
attributes["Main-Class"] = "software.aws.rds.jdbc.postgresql.shading.org.postgresql.util.PGJDBCMain"
176176
attributes["Automatic-Module-Name"] = "org.postgresql.jdbc"
177177
}
178178
}

0 commit comments

Comments
 (0)