Skip to content

Commit

Permalink
Update graal deps (#377)
Browse files Browse the repository at this point in the history
* update graal

* fix javadoc

---------
  • Loading branch information
thmarx authored Jan 15, 2025
1 parent b6cc32f commit 0d9e5c7
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public class HTTPUtil {
* Adds the context according to the siteproperties and the preview to an url
*
* @param url
* @param requestContext
* @param featureContainer
* @return
*/
public static String modifyUrl(String url, final FeatureContainer featureContainer) {
Expand Down
11 changes: 10 additions & 1 deletion cms-extensions/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,22 @@
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<!-- <dependency>
<groupId>org.graalvm.polyglot</groupId>
<artifactId>polyglot</artifactId>
</dependency>
<dependency>
<groupId>org.graalvm.js</groupId>
<artifactId>js-language</artifactId>
</dependency>-->
<dependency>
<groupId>org.graalvm.polyglot</groupId>
<artifactId>polyglot</artifactId>
</dependency>
<dependency>
<groupId>org.graalvm.polyglot</groupId>
<artifactId>js</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
Expand Down
8 changes: 0 additions & 8 deletions cms-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,14 +82,6 @@
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.graalvm.polyglot</groupId>
<artifactId>polyglot</artifactId>
</dependency>
<dependency>
<groupId>org.graalvm.js</groupId>
<artifactId>js-language</artifactId>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
Expand Down
13 changes: 12 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@
<version>2.3.232</version>
</dependency>

<dependency>
<!--dependency>
<groupId>org.graalvm.polyglot</groupId>
<artifactId>polyglot</artifactId>
<version>24.1.1</version>
Expand All @@ -226,6 +226,17 @@
<groupId>org.graalvm.js</groupId>
<artifactId>js-language</artifactId>
<version>24.1.1</version>
</dependency-->
<dependency>
<groupId>org.graalvm.polyglot</groupId>
<artifactId>polyglot</artifactId>
<version>24.1.1</version>
</dependency>
<dependency>
<groupId>org.graalvm.polyglot</groupId>
<artifactId>js</artifactId>
<version>24.1.1</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
Expand Down

0 comments on commit 0d9e5c7

Please sign in to comment.