This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-examples.git
commit 853428a02178b12876b0303d07cce50cab291622 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Mon Sep 9 16:43:29 2024 +0200 Cleanup deprecated and outdated examples --- kotlin/README.adoc | 38 ---- kotlin/pom.xml | 151 --------------- .../kotlin/org/apache/camel/example/MainApp.kt | 35 ---- .../org/apache/camel/example/MyRouteBuilder.kt | 28 --- kotlin/src/main/resources/log4j2.properties | 23 --- .../kotlin/org/apache/camel/example/KotlinTest.kt | 48 ----- pom.xml | 3 - spring-security/README.adoc | 43 ----- spring-security/client/access-admin-as-bob.sh | 23 --- spring-security/client/access-admin-as-jim.sh | 23 --- spring-security/client/access-admin-no-auth.sh | 23 --- spring-security/client/access-user-as-bob.sh | 23 --- spring-security/client/access-user-as-jim.sh | 23 --- spring-security/client/access-user-no-auth.sh | 23 --- spring-security/pom.xml | 154 ---------------- .../src/main/resources/META-INF/LICENSE.txt | 203 --------------------- .../src/main/resources/META-INF/NOTICE.txt | 11 -- .../src/main/resources/camel-context.xml | 99 ---------- .../src/main/resources/log4j2.properties | 23 --- spring-security/src/main/webapp/WEB-INF/web.xml | 58 ------ .../org/apache/camel/example/SpringSecurityIT.java | 130 ------------- spring-security/src/test/resources/arquillian.xml | 13 -- 22 files changed, 1198 deletions(-) diff --git a/kotlin/README.adoc b/kotlin/README.adoc deleted file mode 100644 index 327af3ef..00000000 --- a/kotlin/README.adoc +++ /dev/null @@ -1,38 +0,0 @@ -== Camel Router with Kotlin Project - -A simple example that uses Kotlin programming language to define a -little Camel route. - -The Camel route listen on HTTP port 8080 and return back a constant -response. - -=== Build - -You will need to compile this example first: - -[source,sh] ----- -$ mvn compile ----- - -=== Run - -To run the example, type: - -[source,sh] ----- -$ mvn camel:run ----- - -You can then open the following url from a web browser: -http://localhost:8080 - -=== Help and contributions - -If you hit any problem using Camel or have some feedback, then please -https://camel.apache.org/community/support/[let us know]. - -We also love contributors, so -https://camel.apache.org/community/contributing/[get involved] :-) - -The Camel riders! diff --git a/kotlin/pom.xml b/kotlin/pom.xml deleted file mode 100644 index 63fb1eb6..00000000 --- a/kotlin/pom.xml +++ /dev/null @@ -1,151 +0,0 @@ -<?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 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.apache.camel.example</groupId> - <artifactId>camel-examples</artifactId> - <version>4.9.0-SNAPSHOT</version> - </parent> - - <artifactId>camel-example-kotlin</artifactId> - <packaging>jar</packaging> - <name>Camel :: Example :: Kotlin</name> - <description>A Camel route using Kotlin</description> - - <properties> - <category>Other Languages</category> - <kotlin.version>1.8.0</kotlin.version> - </properties> - - <dependencyManagement> - <dependencies> - <!-- Add Camel BOM --> - <dependency> - <groupId>org.apache.camel</groupId> - <artifactId>camel-bom</artifactId> - <version>${camel.version}</version> - <type>pom</type> - <scope>import</scope> - </dependency> - </dependencies> - </dependencyManagement> - - <dependencies> - - <dependency> - <groupId>org.jetbrains.kotlin</groupId> - <artifactId>kotlin-stdlib</artifactId> - <version>${kotlin.version}</version> - </dependency> - - <dependency> - <groupId>org.apache.camel</groupId> - <artifactId>camel-core</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel</groupId> - <artifactId>camel-main</artifactId> - </dependency> - - <!-- used for jetty --> - <dependency> - <groupId>org.apache.camel</groupId> - <artifactId>camel-jetty</artifactId> - </dependency> - - <!-- logging --> - <dependency> - <groupId>org.apache.logging.log4j</groupId> - <artifactId>log4j-core</artifactId> - <version>${log4j2-version}</version> - <scope>runtime</scope> - </dependency> - <dependency> - <groupId>org.apache.logging.log4j</groupId> - <artifactId>log4j-slf4j2-impl</artifactId> - <version>${log4j2-version}</version> - <scope>runtime</scope> - </dependency> - <!-- for testing --> - <dependency> - <groupId>org.apache.camel</groupId> - <artifactId>camel-test-main-junit5</artifactId> - <scope>test</scope> - </dependency> - <dependency> - <groupId>io.rest-assured</groupId> - <artifactId>kotlin-extensions</artifactId> - <version>${rest-assured-version}</version> - <scope>test</scope> - </dependency> - </dependencies> - - <build> - <sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory> - <testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory> - <defaultGoal>install</defaultGoal> - - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-resources-plugin</artifactId> - <version>${maven-resources-plugin-version}</version> - <configuration> - <encoding>UTF-8</encoding> - </configuration> - </plugin> - <plugin> - <groupId>org.jetbrains.kotlin</groupId> - <artifactId>kotlin-maven-plugin</artifactId> - <version>${kotlin.version}</version> - <executions> - <execution> - <id>compile</id> - <goals> - <goal>compile</goal> - </goals> - </execution> - <execution> - <id>test-compile</id> - <goals> - <goal>test-compile</goal> - </goals> - </execution> - </executions> - </plugin> - - <!-- Allows the example to be run via 'mvn compile exec:java' --> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>exec-maven-plugin</artifactId> - <version>${exec-maven-plugin-version}</version> - <configuration> - <mainClass>org.apache.camel.example.MainAppKt</mainClass> - <includePluginDependencies>false</includePluginDependencies> - </configuration> - </plugin> - </plugins> - </build> - -</project> diff --git a/kotlin/src/main/kotlin/org/apache/camel/example/MainApp.kt b/kotlin/src/main/kotlin/org/apache/camel/example/MainApp.kt deleted file mode 100644 index c2d3e267..00000000 --- a/kotlin/src/main/kotlin/org/apache/camel/example/MainApp.kt +++ /dev/null @@ -1,35 +0,0 @@ -/** - * 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. - */ -package org.apache.camel.example - -import org.apache.camel.main.Main - -/** - * A static main() so we can easily run these routing rules in our IDE - */ -fun main(args: Array<String>) { - System.out.println("\n\n\n\n"); - System.out.println("==============================================="); - System.out.println("Open your web browser on http://localhost:8080"); - System.out.println("Press ctrl+c to stop this example"); - System.out.println("==============================================="); - System.out.println("\n\n\n\n"); - - val main = Main() - main.configure().addRoutesBuilder(MyRouteBuilder()) - main.run(args) -} diff --git a/kotlin/src/main/kotlin/org/apache/camel/example/MyRouteBuilder.kt b/kotlin/src/main/kotlin/org/apache/camel/example/MyRouteBuilder.kt deleted file mode 100644 index a41f5a15..00000000 --- a/kotlin/src/main/kotlin/org/apache/camel/example/MyRouteBuilder.kt +++ /dev/null @@ -1,28 +0,0 @@ -/** - * 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. - */ -package org.apache.camel.example - -import org.apache.camel.builder.RouteBuilder - -class MyRouteBuilder() : RouteBuilder() { - - override fun configure() { - from("jetty:http://0.0.0.0:8080") - .transform(constant("Hello from Kotlin")) - } - -} \ No newline at end of file diff --git a/kotlin/src/main/resources/log4j2.properties b/kotlin/src/main/resources/log4j2.properties deleted file mode 100644 index d9f0508a..00000000 --- a/kotlin/src/main/resources/log4j2.properties +++ /dev/null @@ -1,23 +0,0 @@ -## --------------------------------------------------------------------------- -## 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. -## --------------------------------------------------------------------------- - -appender.out.type = Console -appender.out.name = out -appender.out.layout.type = PatternLayout -appender.out.layout.pattern = [%30.30t] %-30.30c{1} %-5p %m%n -rootLogger.level = INFO -rootLogger.appenderRef.out.ref = out diff --git a/kotlin/src/test/kotlin/org/apache/camel/example/KotlinTest.kt b/kotlin/src/test/kotlin/org/apache/camel/example/KotlinTest.kt deleted file mode 100644 index b507a182..00000000 --- a/kotlin/src/test/kotlin/org/apache/camel/example/KotlinTest.kt +++ /dev/null @@ -1,48 +0,0 @@ -/* - * 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. - */ -package org.apache.camel.example - -import io.restassured.module.kotlin.extensions.Given -import io.restassured.module.kotlin.extensions.Then -import io.restassured.module.kotlin.extensions.When -import org.apache.camel.main.MainConfigurationProperties -import org.apache.camel.test.main.junit5.CamelMainTestSupport -import org.apache.http.HttpStatus -import org.hamcrest.Matchers.equalTo -import org.junit.jupiter.api.Test - -/** - * A unit test checking that Camel supports Kotlin. - */ -class KotlinTest: CamelMainTestSupport() { - - @Test - fun `should support kotlin`() { - Given { - baseUri("http://localhost:8080") - } When { - get("/") - } Then { - statusCode(HttpStatus.SC_OK) - body(equalTo("Hello from Kotlin")) - } - } - - override fun configure(configuration: MainConfigurationProperties) { - configuration.addRoutesBuilder(MyRouteBuilder()) - } -} diff --git a/pom.xml b/pom.xml index d80e18a6..b3bebc3f 100644 --- a/pom.xml +++ b/pom.xml @@ -109,8 +109,6 @@ <module>kamelet-chucknorris</module> <module>kamelet-main</module> <module>kamelet-sql</module> - <!-- Commenting out kotlin as there are compilation failure and the dsl is now deprecated --> - <!--<module>kotlin</module>--> <module>loadbalancing</module> <module>main</module> <module>main-endpointdsl</module> @@ -136,7 +134,6 @@ <module>splunk</module> <module>spring</module> <module>spring-pulsar</module> - <module>spring-security</module> <module>spring-xquery</module> <module>telegram</module> <module>transformer-demo</module> diff --git a/spring-security/README.adoc b/spring-security/README.adoc deleted file mode 100644 index 6dbfa8a6..00000000 --- a/spring-security/README.adoc +++ /dev/null @@ -1,43 +0,0 @@ -== Camel Spring Security Example - -=== Introduction - -This example shows how to leverage the Spring Security to secure the -camel endpoint. - -=== Build - -You will need to compile this example first: - ----- -$ mvn clean package ----- - -=== Run - -To run the example, you need to start up the server and copy the .war to -the application server - -The example consumes messages from a servlet endpoint which is secured -by Spring Security with http basic authentication, there are two -services: - -* http://localhost:8080/camel-example-spring-security/camel/user -is for the authenticated user whose role is `ROLE_USER` -* http://localhost:8080/camel-example-spring-security/camel/admin -is for the authenticated user whose role is `ROLE_ADMIN` - -Then you can use the script in the client directory to send the request -and check the response, or use a web browser to access upper urls with the -user/password (`+jim/jimspassword+` with the admin and user role or -`+bob/bobspassword+` with the user role only). - -=== Help and contributions - -If you hit any problem using Camel or have some feedback, then please -https://camel.apache.org/community/support/[let us know]. - -We also love contributors, so -https://camel.apache.org/community/contributing/[get involved] :-) - -The Camel riders! diff --git a/spring-security/client/access-admin-as-bob.sh b/spring-security/client/access-admin-as-bob.sh deleted file mode 100644 index 4fad40b9..00000000 --- a/spring-security/client/access-admin-as-bob.sh +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/bash -# -# 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. -# - -WORK_DIR=../target/work -rm -rf $WORK_DIR -mkdir -p $WORK_DIR -wget --http-user=bob --http-password=bobspassword --directory-prefix=$WORK_DIR --output-file=$WORK_DIR/log.txt http://localhost:8080/camel-example-spring-security/camel/admin -cat -n $WORK_DIR/* | less diff --git a/spring-security/client/access-admin-as-jim.sh b/spring-security/client/access-admin-as-jim.sh deleted file mode 100644 index 86e20acf..00000000 --- a/spring-security/client/access-admin-as-jim.sh +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/bash -# -# 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. -# - -WORK_DIR=../target/work -rm -rf $WORK_DIR -mkdir -p $WORK_DIR -wget --http-user=jim --http-password=jimspassword --directory-prefix=$WORK_DIR --output-file=$WORK_DIR/log.txt http://localhost:8080/camel-example-spring-security/camel/admin -cat -n $WORK_DIR/* | less \ No newline at end of file diff --git a/spring-security/client/access-admin-no-auth.sh b/spring-security/client/access-admin-no-auth.sh deleted file mode 100644 index 09acf1e6..00000000 --- a/spring-security/client/access-admin-no-auth.sh +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/bash -# -# 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. -# - -WORK_DIR=../target/work -rm -rf $WORK_DIR -mkdir -p $WORK_DIR -wget --directory-prefix=$WORK_DIR --output-file=$WORK_DIR/log.txt http://localhost:8080/camel-example-spring-security/camel/admin -cat -n $WORK_DIR/* | less diff --git a/spring-security/client/access-user-as-bob.sh b/spring-security/client/access-user-as-bob.sh deleted file mode 100644 index 6f696767..00000000 --- a/spring-security/client/access-user-as-bob.sh +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/bash -# -# 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. -# - -WORK_DIR=../target/work -rm -rf $WORK_DIR -mkdir -p $WORK_DIR -wget --http-user=bob --http-password=bobspassword --directory-prefix=$WORK_DIR --output-file=$WORK_DIR/log.txt http://localhost:8080/camel-example-spring-security/camel/user -cat -n $WORK_DIR/* | less \ No newline at end of file diff --git a/spring-security/client/access-user-as-jim.sh b/spring-security/client/access-user-as-jim.sh deleted file mode 100644 index 821c2297..00000000 --- a/spring-security/client/access-user-as-jim.sh +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/bash -# -# 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. -# - -WORK_DIR=../target/work -rm -rf $WORK_DIR -mkdir -p $WORK_DIR -wget --http-user=jim --http-password=jimspassword --directory-prefix=$WORK_DIR --output-file=$WORK_DIR/log.txt http://localhost:8080/camel-example-spring-security/camel/user -cat -n $WORK_DIR/* | less \ No newline at end of file diff --git a/spring-security/client/access-user-no-auth.sh b/spring-security/client/access-user-no-auth.sh deleted file mode 100644 index f22fff05..00000000 --- a/spring-security/client/access-user-no-auth.sh +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/bash -# -# 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. -# - -WORK_DIR=../target/work -rm -rf $WORK_DIR -mkdir -p $WORK_DIR -wget --directory-prefix=$WORK_DIR --output-file=$WORK_DIR/log.txt http://localhost:8080/camel-example-spring-security/camel/user -cat -n $WORK_DIR/* | less \ No newline at end of file diff --git a/spring-security/pom.xml b/spring-security/pom.xml deleted file mode 100644 index 970e4680..00000000 --- a/spring-security/pom.xml +++ /dev/null @@ -1,154 +0,0 @@ -<?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 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.apache.camel.example</groupId> - <artifactId>camel-examples</artifactId> - <version>4.9.0-SNAPSHOT</version> - </parent> - - <artifactId>camel-example-spring-security</artifactId> - <packaging>war</packaging> - <name>Camel :: Example :: Spring :: Security</name> - <description>An example showing how to work with Camel and Spring Security</description> - - <properties> - <category>Security</category> - </properties> - - <dependencyManagement> - <dependencies> - <!-- Add Camel BOM --> - <dependency> - <groupId>org.apache.camel</groupId> - <artifactId>camel-bom</artifactId> - <version>${camel.version}</version> - <type>pom</type> - <scope>import</scope> - </dependency> - </dependencies> - </dependencyManagement> - - <dependencies> - <dependency> - <groupId>org.apache.camel</groupId> - <artifactId>camel-core</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel</groupId> - <artifactId>camel-spring-xml</artifactId> - </dependency> - <dependency> - <groupId>org.apache.camel</groupId> - <artifactId>camel-spring-security</artifactId> - </dependency> - <dependency> - <groupId>org.springframework.security</groupId> - <artifactId>spring-security-web</artifactId> - <version>${spring-security-version}</version> - </dependency> - <dependency> - <groupId>org.apache.camel</groupId> - <artifactId>camel-servlet</artifactId> - </dependency> - <dependency> - <groupId>org.springframework</groupId> - <artifactId>spring-web</artifactId> - <version>${spring-version}</version> - </dependency> - - <!-- logging --> - <dependency> - <groupId>org.apache.logging.log4j</groupId> - <artifactId>log4j-core</artifactId> - <version>${log4j2-version}</version> - <scope>runtime</scope> - </dependency> - <dependency> - <groupId>org.apache.logging.log4j</groupId> - <artifactId>log4j-slf4j2-impl</artifactId> - <version>${log4j2-version}</version> - <scope>runtime</scope> - </dependency> - - <!-- Test dependencies BEGIN --> - <dependency> - <groupId>org.jboss.arquillian.container</groupId> - <artifactId>arquillian-tomcat-embedded-10</artifactId> - <version>${arquillian-tomcat-version}</version> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.apache.tomcat.embed</groupId> - <artifactId>tomcat-embed-jasper</artifactId> - <version>${tomcat-version}</version> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.junit.jupiter</groupId> - <artifactId>junit-jupiter</artifactId> - <version>${junit-jupiter-version}</version> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.jboss.arquillian.junit5</groupId> - <artifactId>arquillian-junit5-container</artifactId> - <version>${arquillian-version}</version> - <scope>test</scope> - </dependency> - <dependency> - <groupId>io.rest-assured</groupId> - <artifactId>rest-assured</artifactId> - <version>${rest-assured-version}</version> - <scope>test</scope> - </dependency> - -<dependency> - <groupId>jakarta.servlet</groupId> - <artifactId>jakarta.servlet-api</artifactId> - <version>${jakarta-servlet-api-version}</version> - <scope>test</scope> -</dependency> - - <!-- Test dependencies END --> - - </dependencies> - - <build> - <finalName>${project.artifactId}</finalName> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-failsafe-plugin</artifactId> - <executions> - <execution> - <goals> - <goal>integration-test</goal> - <goal>verify</goal> - </goals> - </execution> - </executions> - </plugin> - </plugins> - </build> -</project> diff --git a/spring-security/src/main/resources/META-INF/LICENSE.txt b/spring-security/src/main/resources/META-INF/LICENSE.txt deleted file mode 100644 index 6b0b1270..00000000 --- a/spring-security/src/main/resources/META-INF/LICENSE.txt +++ /dev/null @@ -1,203 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed 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. - diff --git a/spring-security/src/main/resources/META-INF/NOTICE.txt b/spring-security/src/main/resources/META-INF/NOTICE.txt deleted file mode 100644 index 2e215bf2..00000000 --- a/spring-security/src/main/resources/META-INF/NOTICE.txt +++ /dev/null @@ -1,11 +0,0 @@ - ========================================================================= - == NOTICE file corresponding to the section 4 d of == - == the Apache License, Version 2.0, == - == in this case for the Apache Camel distribution. == - ========================================================================= - - This product includes software developed by - The Apache Software Foundation (http://www.apache.org/). - - Please read the different LICENSE files present in the licenses directory of - this distribution. diff --git a/spring-security/src/main/resources/camel-context.xml b/spring-security/src/main/resources/camel-context.xml deleted file mode 100644 index 7ab86b8f..00000000 --- a/spring-security/src/main/resources/camel-context.xml +++ /dev/null @@ -1,99 +0,0 @@ -<?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. - ---> -<!-- START SNIPPET: example --> -<beans xmlns="http://www.springframework.org/schema/beans" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xmlns:spring-security="http://www.springframework.org/schema/security" - xsi:schemaLocation=" - http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd - http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd - http://camel.apache.org/schema/spring-security http://camel.apache.org/schema/spring-security/camel-spring-security.xsd - http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security.xsd"> - - <spring-security:http realm="User Restrict Realm"> - <spring-security:intercept-url pattern="/camel/**" - access="hasRole('ROLE_USER') or hasRole('ROLE_ADMIN')"/> - <spring-security:http-basic/> - <spring-security:remember-me/> - </spring-security:http> - - <!-- set up the user configuration here --> - <spring-security:authentication-manager alias="authenticationManager"> - <spring-security:authentication-provider user-service-ref="userDetailsService"/> - </spring-security:authentication-manager> - - <spring-security:user-service id="userDetailsService"> - <spring-security:user name="jim" password="{noop}jimspassword" authorities="ROLE_USER, ROLE_ADMIN"/> - <spring-security:user name="bob" password="{noop}bobspassword" authorities="ROLE_USER"/> - </spring-security:user-service> - - <bean id="accessDecisionManager" class="org.springframework.security.access.vote.AffirmativeBased"> - <constructor-arg> - <bean class="org.springframework.security.access.vote.RoleVoter"/> - </constructor-arg> - <property name="allowIfAllAbstainDecisions" value="true"/> - </bean> - - <!-- The Policy for checking the authentication role of ADMIN --> - <authorizationPolicy id="admin" access="ROLE_ADMIN" - authenticationManager="authenticationManager" - accessDecisionManager="accessDecisionManager" - xmlns="http://camel.apache.org/schema/spring-security"/> - - <!-- The Policy for checking the authentication role of USER --> - <authorizationPolicy id="user" access="ROLE_USER" - xmlns="http://camel.apache.org/schema/spring-security"/> - - <camelContext id="myCamelContext" xmlns="http://camel.apache.org/schema/spring"> - <!-- Catch the authorization exception and set the Access Denied message back --> - <onException> - <exception>org.apache.camel.CamelAuthorizationException</exception> - <handled> - <constant>true</constant> - </handled> - <transform> - <simple>Access Denied with the Policy of ${exception.policyId} !</simple> - </transform> - </onException> - - <route> - <from uri="servlet:user"/> - <!-- wrap the route in the policy which enforces security check --> - <policy ref="user"> - <transform> - <simple>Normal user can access this service</simple> - </transform> - </policy> - </route> - - <route> - <from uri="servlet:admin"/> - <!-- wrap the route in the policy which enforces security check --> - <policy ref="admin"> - <transform> - <simple>Call the admin operation OK</simple> - </transform> - </policy> - </route> - - </camelContext> - -</beans> - <!-- END SNIPPET: example --> diff --git a/spring-security/src/main/resources/log4j2.properties b/spring-security/src/main/resources/log4j2.properties deleted file mode 100644 index f02e7aeb..00000000 --- a/spring-security/src/main/resources/log4j2.properties +++ /dev/null @@ -1,23 +0,0 @@ -## --------------------------------------------------------------------------- -## 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. -## --------------------------------------------------------------------------- - -appender.stdout.type = Console -appender.stdout.name = stdout -appender.stdout.layout.type = PatternLayout -appender.stdout.layout.pattern = %d [%-15.15t] %-5p %-30.30c{1} - %m%n -rootLogger.level = INFO -rootLogger.appenderRef.stdout.ref = stdout diff --git a/spring-security/src/main/webapp/WEB-INF/web.xml b/spring-security/src/main/webapp/WEB-INF/web.xml deleted file mode 100644 index 459734cd..00000000 --- a/spring-security/src/main/webapp/WEB-INF/web.xml +++ /dev/null @@ -1,58 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<!-- - - 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. - ---> -<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"> - - <display-name>My Web Application</display-name> - - <!-- location of spring xml files --> - <context-param> - <param-name>contextConfigLocation</param-name> - <param-value>classpath:camel-context.xml</param-value> - </context-param> - - <!-- the listener that kick-starts Spring --> - <listener> - <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> - </listener> - - <filter> - <filter-name>springSecurityFilterChain</filter-name> - <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class> - </filter> - - <filter-mapping> - <filter-name>springSecurityFilterChain</filter-name> - <url-pattern>/*</url-pattern> - </filter-mapping> - - <servlet> - <servlet-name>CamelServlet</servlet-name> - <servlet-class>org.apache.camel.component.servlet.CamelHttpTransportServlet</servlet-class> - <load-on-startup>1</load-on-startup> - </servlet> - - <servlet-mapping> - <servlet-name>CamelServlet</servlet-name> - <url-pattern>/camel/*</url-pattern> - </servlet-mapping> - -</web-app> diff --git a/spring-security/src/test/java/org/apache/camel/example/SpringSecurityIT.java b/spring-security/src/test/java/org/apache/camel/example/SpringSecurityIT.java deleted file mode 100644 index 788c331b..00000000 --- a/spring-security/src/test/java/org/apache/camel/example/SpringSecurityIT.java +++ /dev/null @@ -1,130 +0,0 @@ -/* - * 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. - */ -package org.apache.camel.example; - -import org.jboss.arquillian.container.test.api.Deployment; -import org.jboss.arquillian.container.test.api.RunAsClient; -import org.jboss.arquillian.junit5.ArquillianExtension; -import org.jboss.arquillian.test.api.ArquillianResource; -import org.jboss.shrinkwrap.api.ShrinkWrap; -import org.jboss.shrinkwrap.api.spec.WebArchive; -import org.jboss.shrinkwrap.resolver.api.maven.Maven; -import org.junit.jupiter.api.Test; -import org.junit.jupiter.api.extension.ExtendWith; - -import java.io.File; -import java.net.URL; - -import static io.restassured.RestAssured.given; -import static org.hamcrest.Matchers.containsString; - -/** - * A basic integration test checking that Camel can leverage Spring Security to secure the endpoints. - */ -@ExtendWith(ArquillianExtension.class) -public class SpringSecurityIT { - - @Deployment - public static WebArchive createDeployment() { - // build the .war with all the resources and libraries - return ShrinkWrap.create(WebArchive.class, "camel-example-spring-security.war") - .setWebXML(new File("./src/main/webapp/WEB-INF/web.xml")) - .addAsResource("log4j2.properties") - .addAsResource("camel-context.xml") - .addAsLibraries( - Maven.resolver().loadPomFromFile("pom.xml").importRuntimeDependencies().resolve() - .withTransitivity().asFile() - ); - } - - @ArquillianResource - URL url; - - @Test - @RunAsClient - void should_prevent_anonymous_access_to_admin() { - given() - .baseUri(url.toString()) - .when() - .get("/camel/admin") - .then() - .statusCode(401); - } - - @Test - @RunAsClient - void should_prevent_bob_to_access_to_admin() { - given() - .baseUri(url.toString()) - .auth().basic("bob", "bobspassword") - .when() - .get("/camel/admin") - .then() - .body(containsString("Access Denied with the Policy")); - } - - @Test - @RunAsClient - void should_allow_jim_to_access_to_admin() { - given() - .baseUri(url.toString()) - .auth().basic("jim", "jimspassword") - .when() - .get("/camel/admin") - .then() - .statusCode(200) - .body(containsString("OK")); - } - - @Test - @RunAsClient - void should_prevent_anonymous_access_to_user() { - given() - .baseUri(url.toString()) - .when() - .get("/camel/user") - .then() - .statusCode(401); - } - - @Test - @RunAsClient - void should_allow_bob_to_access_to_user() { - given() - .baseUri(url.toString()) - .auth().basic("bob", "bobspassword") - .when() - .get("/camel/user") - .then() - .statusCode(200) - .body(containsString("Normal user")); - } - - @Test - @RunAsClient - void should_allow_jim_to_access_to_user() { - given() - .baseUri(url.toString()) - .auth().basic("jim", "jimspassword") - .when() - .get("/camel/user") - .then() - .statusCode(200) - .body(containsString("Normal user")); - } - -} diff --git a/spring-security/src/test/resources/arquillian.xml b/spring-security/src/test/resources/arquillian.xml deleted file mode 100644 index d764c79a..00000000 --- a/spring-security/src/test/resources/arquillian.xml +++ /dev/null @@ -1,13 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="yes"?> -<arquillian xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://jboss.org/schema/arquillian" - xsi:schemaLocation="http://jboss.org/schema/arquillian http://jboss.org/schema/arquillian/arquillian_1_0.xsd"> - - <container qualifier="tomcat" default="true"> - <configuration> - <property name="tomcatHome">target/tomcat-embedded-9</property> - <property name="workDir">work</property> - <property name="bindHttpPort">8888</property> - <property name="unpackArchive">true</property> - </configuration> - </container> -</arquillian> \ No newline at end of file