[ 
https://issues.apache.org/jira/browse/CAMEL-12881?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16650737#comment-16650737
 ] 

ASF GitHub Bot commented on CAMEL-12881:
----------------------------------------

aldettinger closed pull request #2566: CAMEL-12881: Fixed the camel-infinispan 
integration test
URL: https://github.com/apache/camel/pull/2566
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/components/camel-infinispan/pom.xml 
b/components/camel-infinispan/pom.xml
index 4a46d01f6cb..ada6170a3e8 100644
--- a/components/camel-infinispan/pom.xml
+++ b/components/camel-infinispan/pom.xml
@@ -196,41 +196,35 @@
                 
<server.dir.name>infinispan-server-${infinispan-version}</server.dir.name>
                 
<server.dir>${server.dir.parent}/${server.dir.name}</server.dir>
             </properties>
-            <dependencies>
-                <dependency>
-                    <groupId>org.infinispan.server</groupId>
-                    <artifactId>infinispan-server</artifactId>
-                    <version>${infinispan-version}</version>
-                    <type>zip</type>
-                    <classifier>bin</classifier>
-                    <scope>test</scope>
-                </dependency>
-            </dependencies>
             <build>
-                <plugins>
-                    <plugin>
-                        <groupId>org.apache.maven.plugins</groupId>
-                        <artifactId>maven-dependency-plugin</artifactId>
-                        <executions>
-                            <execution>
-                                <id>unpack-server</id>
+                 <plugins>
+                     <plugin>
+                         <groupId>org.apache.maven.plugins</groupId>
+                         <artifactId>maven-antrun-plugin</artifactId>
+                         <executions>
+                             <execution>
+                                <id>install-binary-distribution</id>
                                 <phase>generate-test-resources</phase>
                                 <goals>
-                                    <goal>unpack</goal>
+                                    <goal>run</goal>
                                 </goals>
                                 <configuration>
-                                    <artifactItems>
-                                        <artifactItem>
-                                            
<groupId>org.infinispan.server</groupId>
-                                            
<artifactId>infinispan-server</artifactId>
-                                            
<version>${infinispan-version}</version>
-                                            <classifier>bin</classifier>
-                                            <type>zip</type>
-                                            
<outputDirectory>${server.dir.parent}</outputDirectory>
-                                        </artifactItem>
-                                    </artifactItems>
-                                </configuration>
-                            </execution>
+                                    <target>
+                                        <get
+                                         
src="https://downloads.jboss.org/infinispan/${infinispan-version}/infinispan-server-${infinispan-version}.zip";
+                                         
dest="${project.build.directory}/infinispan-server-${infinispan-version}.zip"/>
+                                        <unzip
+                                         
src="${project.build.directory}/infinispan-server-${infinispan-version}.zip"
+                                         dest="${server.dir.parent}"/>
+                                   </target>
+                               </configuration>
+                           </execution>
+                        </executions>
+                    </plugin>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-dependency-plugin</artifactId>
+                        <executions>
                             <execution>
                                 <id>deploy-converter-factory</id>
                                 <phase>generate-test-resources</phase>
@@ -254,7 +248,7 @@
                     <plugin>
                         <groupId>org.wildfly.plugins</groupId>
                         <artifactId>wildfly-maven-plugin</artifactId>
-                        <version>1.1.0.Alpha6</version>
+                        <version>1.2.2.Final</version>
                         <executions>
                             <execution>
                                 <id>start-server</id>


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


> Fix the camel-infinispan integration test
> -----------------------------------------
>
>                 Key: CAMEL-12881
>                 URL: https://issues.apache.org/jira/browse/CAMEL-12881
>             Project: Camel
>          Issue Type: Task
>          Components: camel-infinispan
>    Affects Versions: 2.23.0
>            Reporter: Alex Dettinger
>            Assignee: Alex Dettinger
>            Priority: Minor
>
> The camel-infinispan integration test is failing since infinispan-server 
> version 9.3.
> The bin classifier of the infinispan-server artifact is no more attached 
> since 9.3.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

Reply via email to