Skip to content

Commit

Permalink
updated javadoc version to avoid module generation bug
Browse files Browse the repository at this point in the history
  • Loading branch information
nahsra committed Sep 21, 2023
1 parent 24b1a5b commit fcfd8fe
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
Binary file added .DS_Store
Binary file not shown.
8 changes: 7 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
<versions.maven-gpg-plugin>3.0.1</versions.maven-gpg-plugin>
<versions.jacoco-maven-plugin>0.8.7</versions.jacoco-maven-plugin>

<versions.maven-javadoc-plugin>2.9.1</versions.maven-javadoc-plugin>
<versions.maven-javadoc-plugin>3.6.0</versions.maven-javadoc-plugin>
<versions.nexus-staging-maven-plugin>1.6.13</versions.nexus-staging-maven-plugin>
</properties>

Expand All @@ -83,6 +83,12 @@
<artifactId>commons-fileupload</artifactId>
<version>1.5</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
Expand Down
1 change: 1 addition & 0 deletions src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/** Export our package so that it can be used by other modules. */
open module io.github.pixee.security {
exports io.github.pixee.security;
exports io.github.pixee.security.jakarta;

requires org.apache.commons.io;
requires java.xml;
Expand Down

0 comments on commit fcfd8fe

Please sign in to comment.