Skip to content

Commit 66c0dc9

Browse files
authored
Rhino: migrate from servicemix to mozilla (#181)
* Bundle org.mozilla.rhino to OSGI bundle * Rhino: migrate from servicemix to mozilla
1 parent 0abc110 commit 66c0dc9

3 files changed

Lines changed: 22 additions & 7 deletions

File tree

commons/util/util/pom.xml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,12 @@
3535
<artifactId>slf4j-api</artifactId>
3636
</dependency>
3737
<dependency>
38-
<groupId>org.apache.servicemix.bundles</groupId>
39-
<artifactId>org.apache.servicemix.bundles.rhino</artifactId>
40-
<version>${rhino.servicemix.version}</version>
38+
<groupId>org.mozilla</groupId>
39+
<artifactId>rhino</artifactId>
40+
</dependency>
41+
<dependency>
42+
<groupId>org.mozilla</groupId>
43+
<artifactId>rhino-engine</artifactId>
4144
</dependency>
4245
<dependency>
4346
<groupId>org.assertj</groupId>

pom.xml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,6 @@
206206
<slf4j.version>2.0.17</slf4j.version>
207207
<swagger.version>1.6.11</swagger.version>
208208
<rhino.version>1.7.15.1</rhino.version>
209-
<rhino.servicemix.version>1.7.15_1</rhino.servicemix.version>
210209
<jetty.version>11.0.25</jetty.version>
211210
<grizzly-framework.version>3.0.1</grizzly-framework.version>
212211
<servlet-api.version>5.0.0</servlet-api.version>
@@ -627,6 +626,16 @@
627626
<artifactId>common</artifactId>
628627
<version>${project.version}</version>
629628
</dependency>
629+
<dependency>
630+
<groupId>org.mozilla</groupId>
631+
<artifactId>rhino</artifactId>
632+
<version>${rhino.version}</version>
633+
</dependency>
634+
<dependency>
635+
<groupId>org.mozilla</groupId>
636+
<artifactId>rhino-engine</artifactId>
637+
<version>${rhino.version}</version>
638+
</dependency>
630639
<dependency>
631640
<groupId>org.asciidoctor</groupId>
632641
<artifactId>asciidoctorj</artifactId>

script/javascript/pom.xml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,12 @@
6565
</dependency>
6666

6767
<dependency>
68-
<groupId>org.apache.servicemix.bundles</groupId>
69-
<artifactId>org.apache.servicemix.bundles.rhino</artifactId>
70-
<version>${rhino.servicemix.version}</version>
68+
<groupId>org.mozilla</groupId>
69+
<artifactId>rhino</artifactId>
70+
</dependency>
71+
<dependency>
72+
<groupId>org.mozilla</groupId>
73+
<artifactId>rhino-engine</artifactId>
7174
</dependency>
7275
<!--
7376
<dependency>

0 commit comments

Comments
 (0)