mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-25 22:02:05 +01:00
Add Automatic-Module-Name to pgpainless-core and pgpainless-sop
This commit is contained in:
parent
265f72d99f
commit
337b5d68b6
2 changed files with 14 additions and 0 deletions
|
@ -27,3 +27,10 @@ dependencies {
|
||||||
// @Nullable, @Nonnull annotations
|
// @Nullable, @Nonnull annotations
|
||||||
implementation "com.google.code.findbugs:jsr305:3.0.2"
|
implementation "com.google.code.findbugs:jsr305:3.0.2"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// https://docs.gradle.org/current/userguide/java_library_plugin.html#sec:java_library_modular_auto
|
||||||
|
tasks.named('jar') {
|
||||||
|
manifest {
|
||||||
|
attributes('Automatic-Module-Name': 'org.pgpainless.core')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -34,3 +34,10 @@ test {
|
||||||
useJUnitPlatform()
|
useJUnitPlatform()
|
||||||
environment("test.implementation", "sop.testsuite.pgpainless.PGPainlessSopInstanceFactory")
|
environment("test.implementation", "sop.testsuite.pgpainless.PGPainlessSopInstanceFactory")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// https://docs.gradle.org/current/userguide/java_library_plugin.html#sec:java_library_modular_auto
|
||||||
|
tasks.named('jar') {
|
||||||
|
manifest {
|
||||||
|
attributes('Automatic-Module-Name': 'org.pgpainless.sop')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue