mule-scripting-pack
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.mule.distributions</groupId>
<artifactId>mule-scripting-pack</artifactId>
<version>3.4.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.mule.distributions</groupId>
<artifactId>mule-distributions</artifactId>
<version>3.4.0</version>
</parent>
<artifactId>mule-scripting-pack</artifactId>
<packaging>pom</packaging>
<name>Mule Scripting Pack</name>
<description>Support for additional scripting languages in Mule</description>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>assembly.xml</descriptor>
</descriptors>
<appendAssemblyId>false</appendAssemblyId>
<tarLongFileMode>gnu</tarLongFileMode>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<!--
'attached' ensures there's only a single run bound to m2's lifecycle.
The default 'assembly' goal would run every plugin in this pom twice.
-->
<goal>attached</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.mule.tools</groupId>
<artifactId>mule-assembly-verifier</artifactId>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<!-- This is the engine for JSR-223 compliance, not the actual implementation -->
<groupId>javax.script</groupId>
<artifactId>jython-engine</artifactId>
<classifier>jdk14</classifier>
</dependency>
<dependency>
<!-- This is the actual language implementation -->
<groupId>org.python</groupId>
<artifactId>jython</artifactId>
</dependency>
<dependency>
<groupId>javax.script</groupId>
<artifactId>jruby-engine</artifactId>
<version>1.1</version>
<classifier>jdk14</classifier>
</dependency>
<dependency>
<groupId>javax.script</groupId>
<artifactId>js-engine</artifactId>
<version>1.1</version>
<classifier>jdk14</classifier>
</dependency>
<dependency>
<groupId>org.jruby</groupId>
<artifactId>jruby-complete</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>rhino</groupId>
<artifactId>js</artifactId>
<version>1.6R5</version>
</dependency>
</dependencies>
</project>