blob: 40b20e8b9bad7ece4e334771d04b081fe5acd64c [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.camel</groupId>
<artifactId>camel-parent</artifactId>
<version>1.4.0</version>
</parent>
<artifactId>camel-script</artifactId>
<packaging>bundle</packaging>
<name>Camel :: Script</name>
<description>Camel Script support</description>
<properties>
<camel.osgi.export.pkg>org.apache.camel.builder.script.*</camel.osgi.export.pkg>
</properties>
<repositories>
<repository>
<id>logicblaze.all</id>
<name>LogicBlaze Repository</name>
<url>http://repo.logicblaze.com/maven2-all</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-core</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>${spring-version}</version>
</dependency>
<!-- testing -->
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-core</artifactId>
<type>test-jar</type>
<optional>true</optional>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-spring</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.script</groupId>
<artifactId>groovy-engine</artifactId>
<version>1.0</version>
<classifier>jdk14</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.script</groupId>
<artifactId>js-engine</artifactId>
<version>1.0</version>
<classifier>jdk14</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>rhino</groupId>
<artifactId>js</artifactId>
<version>1.6R7</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.script</groupId>
<artifactId>jython-engine</artifactId>
<version>1.0</version>
<classifier>jdk14</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.python</groupId>
<artifactId>jython</artifactId>
<version>2.2.1</version>
</dependency>
<dependency>
<groupId>javax.script</groupId>
<artifactId>jruby-engine</artifactId>
<version>1.0</version>
<classifier>jdk14</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<profiles>
<profile>
<id>jdk1.5</id>
<activation>
<jdk>1.5</jdk>
</activation>
<dependencies>
<!-- required for the retrotranslated JSR-223 api & engines -->
<dependency>
<groupId>net.sf.retrotranslator</groupId>
<artifactId>retrotranslator-runtime</artifactId>
<version>1.2.1</version>
</dependency>
<!-- these dependencies are only for Java 5, they are not required for Java 6 -->
<dependency>
<groupId>javax.script</groupId>
<artifactId>script-api</artifactId>
<version>1.0</version>
<classifier>jdk14</classifier>
</dependency>
</dependencies>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<childDelegation>false</childDelegation>
<useFile>true</useFile>
<includes>
<!--<include>**/*Test.*</include>-->
</includes>
<excludes>
<exclude>**/*Test.*</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>