Skip to content

Commit

Permalink
Updating README and pom
Browse files Browse the repository at this point in the history
  • Loading branch information
mxro committed Jul 27, 2024
1 parent 74d6558 commit 70bd902
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 23 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ for JS evaluation and better handling of monitoring for threads for possible CPU

## Version History

- 0.4.3: Ensure compatibility with Java Platform Module System (JPMS) ([PR #154](https://github.com/javadelight/delight-nashorn-sandbox/pull/154) by [nea89o](https://github.com/nea89o))
- 0.4.2: Ensure compatibility with Java 17
- 0.4.0: Upgrade to Java 20
- 0.3.2: Updating JSBeautifier dependency ([PR #143](https://github.com/javadelight/delight-nashorn-sandbox/pull/143) by [davejbur](https://github.com/davejbur))
Expand Down
46 changes: 23 additions & 23 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>org.javadelight</groupId>
<artifactId>delight-nashorn-sandbox</artifactId>
<version>0.4.2</version>
<version>0.4.3</version>
<description>A safe sandbox to execute JavaScript code from Nashorn.</description>
<url>https://github.com/javadelight/delight-nashorn-sandbox</url>

Expand All @@ -30,12 +30,12 @@
<groupId>org.webjars.npm</groupId>
<artifactId>js-beautify</artifactId>
<version>1.14.7</version>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.openjdk.nashorn</groupId>
Expand All @@ -55,9 +55,9 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.mifmif</groupId>
<artifactId>generex</artifactId>
<version>1.0.2</version>
<groupId>com.github.mifmif</groupId>
<artifactId>generex</artifactId>
<version>1.0.2</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down Expand Up @@ -86,13 +86,13 @@
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<configuration>
<gpgArguments>
Expand Down Expand Up @@ -138,7 +138,7 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<configuration>
<release>11</release>
<release>11</release>
</configuration>
</plugin>

Expand All @@ -161,7 +161,7 @@
</Service-Component>
<Bundle-RequiredExecutionEnvironment>JavaSE-1.6
</Bundle-RequiredExecutionEnvironment>
<Automatic-Module-Name>org.javadelight.nashornsandbox</Automatic-Module-Name>
<Automatic-Module-Name>org.javadelight.nashornsandbox</Automatic-Module-Name>
</instructions>
</configuration>
</plugin>
Expand Down Expand Up @@ -337,9 +337,9 @@

<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>


Expand Down Expand Up @@ -381,4 +381,4 @@
</license>
</licenses>

</project>
</project>

0 comments on commit 70bd902

Please sign in to comment.