Correct moditect configuration to work on java8

This commit is contained in:
John J. Aylward 2023-10-16 13:16:27 -04:00
parent 134074aeaa
commit 9a9efac2af
2 changed files with 7 additions and 6 deletions

2
.gitignore vendored
View File

@ -1,6 +1,8 @@
# ignore eclipse project files # ignore eclipse project files
.project .project
.classpath .classpath
# ignore vscode files
.vscode
# ignore Intellij Idea project files # ignore Intellij Idea project files
.idea .idea
*.iml *.iml

11
pom.xml
View File

@ -172,12 +172,11 @@
<configuration> <configuration>
<jvmVersion>9</jvmVersion> <jvmVersion>9</jvmVersion>
<module> <module>
<moduleInfo> <moduleInfoSource>
<name>org.json</name> module org.json {
<exports> exports org.json;
org.json; }
</exports> </moduleInfoSource>
</moduleInfo>
</module> </module>
</configuration> </configuration>
</execution> </execution>