Skip to content

Commit

Permalink
GEOMESA-3339 Add js-script engine for Java 17+ (#3060)
Browse files Browse the repository at this point in the history
  • Loading branch information
elahrvivaz authored Mar 18, 2024
1 parent 340ddd5 commit 51a8845
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
2 changes: 2 additions & 0 deletions build/cqs.tsv
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,8 @@ org.json4s:json4s-scalap_2.12 3.6.12 compile
org.locationtech.jts.io:jts-io-common 1.19.0 compile
org.locationtech.jts:jts-core 1.19.0 compile
org.locationtech.spatial4j:spatial4j 0.8 compile
org.mozilla:rhino 1.7.14 compile
org.mozilla:rhino-engine 1.7.14 compile
org.objenesis:objenesis 2.5.1 compile
org.objenesis:objenesis 2.6 compile
org.objenesis:objenesis 3.3 compile
Expand Down
8 changes: 8 additions & 0 deletions geomesa-convert/geomesa-convert-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,14 @@
<groupId>org.scala-lang.modules</groupId>
<artifactId>scala-parser-combinators_${scala.binary.version}</artifactId>
</dependency>
<dependency>
<groupId>org.mozilla</groupId>
<artifactId>rhino</artifactId>
</dependency>
<dependency>
<groupId>org.mozilla</groupId>
<artifactId>rhino-engine</artifactId>
</dependency>

<dependency>
<groupId>org.specs2</groupId>
Expand Down
11 changes: 11 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@
<parquet.version>1.13.1</parquet.version>
<postgres.version>42.7.2</postgres.version>
<pureconfig.version>0.17.4</pureconfig.version>
<rhino.js.version>1.7.14</rhino.js.version>
<s2.geometry.version>1.0.1</s2.geometry.version>
<sizeof.version>0.4.3</sizeof.version>
<spring.security.version>5.8.9</spring.security.version> <!-- geoserver is still on 5.x -->
Expand Down Expand Up @@ -1340,6 +1341,16 @@
<artifactId>gson</artifactId>
<version>${gson.version}</version>
</dependency>
<dependency>
<groupId>org.mozilla</groupId>
<artifactId>rhino</artifactId>
<version>${rhino.js.version}</version>
</dependency>
<dependency>
<groupId>org.mozilla</groupId>
<artifactId>rhino-engine</artifactId>
<version>${rhino.js.version}</version>
</dependency>
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
Expand Down

0 comments on commit 51a8845

Please sign in to comment.