Skip to content

Commit

Permalink
Merge pull request #171 from jakartaredhat/master
Browse files Browse the repository at this point in the history
Add the missing module-info file, #169
  • Loading branch information
starksm64 committed Nov 8, 2021
2 parents 4d1186a + 99f4fbb commit 6ce8d8e
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>3.2.0</version>
<version>3.5.0</version>
<configuration>
<instructions>
<Export-Package>
Expand Down
17 changes: 17 additions & 0 deletions src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/*
* Jakarta Bean Validation API
*
* License: Apache License, Version 2.0
* See the license.txt file in the root directory or <http://www.apache.org/licenses/LICENSE-2.0>.
*/
module jakarta.validation {
exports jakarta.validation;
exports jakarta.validation.bootstrap;
exports jakarta.validation.constraints;
exports jakarta.validation.constraintvalidation;
exports jakarta.validation.executable;
exports jakarta.validation.groups;
exports jakarta.validation.metadata;
exports jakarta.validation.spi;
exports jakarta.validation.valueextraction;
}

0 comments on commit 6ce8d8e

Please sign in to comment.