Skip to content

Commit

Permalink
Merge pull request #297 from loulou2u/fix/script-api-fix-for-cernnunos
Browse files Browse the repository at this point in the history
fix: exclude script-api from Cernnunos and add back replacement as dep..
  • Loading branch information
bjagg authored Jun 23, 2022
2 parents 206fcfe + 44c06b1 commit 4084cfc
Showing 1 changed file with 40 additions and 8 deletions.
48 changes: 40 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,6 @@
<releases><enabled>true</enabled></releases>
<snapshots><enabled>false</enabled></snapshots>
</repository>
<repository>
<id>Antricore</id>
<name>Atricore Repository</name>
<!-- mirror of even more Codehaus artifacts -->
<url>http://repository.atricore.org/m2-release-repository/</url>
<releases><enabled>true</enabled></releases>
<snapshots><enabled>false</enabled></snapshots>
</repository>
<repository>
<id>3rd-party-embedded</id>
<url>file://${project.basedir}/3rd-party/repository</url>
Expand Down Expand Up @@ -130,7 +122,29 @@
<groupId>rhino</groupId>
<artifactId>js</artifactId>
</exclusion>
<exclusion>
<groupId>javax.script</groupId>
<artifactId>script-api</artifactId>
</exclusion>
<exclusion>
<groupId>javax.script</groupId>
<artifactId>groovy-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<!-- for cernunnos -->
<groupId>javax.script</groupId>
<artifactId>script-api</artifactId>
<version>1.0-osgi</version>
<scope>runtime</scope>
</dependency>
<dependency>
<!-- for cernunnos -->
<groupId>javax.script</groupId>
<artifactId>groovy-engine</artifactId>
<version>1.1</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.ibm.icu</groupId>
Expand Down Expand Up @@ -1127,6 +1141,23 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.4.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<doclint>none</doclint>
</configuration>
</execution>
</executions>
</plugin>
<!--
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
Expand All @@ -1143,6 +1174,7 @@
</execution>
</executions>
</plugin>
-->
</plugins>
</build>
<profiles>
Expand Down

0 comments on commit 4084cfc

Please sign in to comment.