Skip to content

Commit

Permalink
Merge pull request #145 from arjantijms/fix_module_info
Browse files Browse the repository at this point in the history
Add missing export entries to module-info
  • Loading branch information
arjantijms committed Mar 1, 2022
2 parents e8cc1e8 + a2fa8c3 commit 71a92a9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@
<!-- Restricts the Java version to 11 -->
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.9.0</version>
<version>3.10.0</version>
<configuration>
<source>11</source>
<target>11</target>
Expand Down
5 changes: 4 additions & 1 deletion api/src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021-2021 Contributors to the Eclipse Foundation
* Copyright (c) 2021-2022 Contributors to the Eclipse Foundation
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
Expand All @@ -15,4 +15,7 @@
*/
module jakarta.security.auth.message {
exports jakarta.security.auth.message;
exports jakarta.security.auth.message.callback;
exports jakarta.security.auth.message.config;
exports jakarta.security.auth.message.module;
}

0 comments on commit 71a92a9

Please sign in to comment.