This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new 3091518 Fix camel-infinispan-common to attach test-jar 3091518 is described below commit 3091518ab2cb9f21f0f817edfd3744ed26fec115 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Tue Feb 9 07:05:13 2021 +0100 Fix camel-infinispan-common to attach test-jar --- .../camel-infinispan/camel-infinispan-common/pom.xml | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/components/camel-infinispan/camel-infinispan-common/pom.xml b/components/camel-infinispan/camel-infinispan-common/pom.xml index 4838dc92..833db94 100644 --- a/components/camel-infinispan/camel-infinispan-common/pom.xml +++ b/components/camel-infinispan/camel-infinispan-common/pom.xml @@ -17,7 +17,8 @@ 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"> +<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> @@ -69,4 +70,20 @@ </dependency> </dependencies> + <build> + <plugins> + <!-- generate the attached tests jar --> + <plugin> + <artifactId>maven-jar-plugin</artifactId> + <executions> + <execution> + <goals> + <goal>test-jar</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + </project>