Skip to content

Commit aac9c17

Browse files
committed
#5 Make modular
Closes #5
1 parent 9e72cde commit aac9c17

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,7 @@ tasks.named("jar", Jar) {
9393
manifest {
9494
attributes(
9595
'Implementation-Title': project.name,
96-
'Implementation-Version': project.version,
97-
'Automatic-Module-Name': 'org.firebirdsql.decimal'
96+
'Implementation-Version': project.version
9897
)
9998
}
10099
}

src/main/java/module-info.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module org.firebirdsql.decimal {
2+
exports org.firebirdsql.decimal;
3+
}

0 commit comments

Comments
 (0)