Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Currently, I set up an integration test suite. The base is a Maven project with several modules which are dependent to each other to setup a database, to put some data into it and to run tests on it, before wrapping everything up. Additionally, I have modules with some utilities and test data in there.

The first step (not mentioned above) is the copy of a zipped image which includes a lot of JAR files which make up the software suite to be tested. Unfortunately, the software is not build by Maven, but by Ant, so I can not find the stuff in an Artifactory or something similar.

My problem is now, that I copy and unzip the image with an integration test method, but I do not know, how I can add the JAR files to the Maven classpath. All other modules need to compile and run against the jars extracted from the ZIP file.

How can I add the JARs to the Maven class path for later compiling and test runs? The destination of the ZIP content is always the same directory. Unfortunately, the names of the JARs contain version information (build numbers) which change. So an easy usage of system and the tag is not working so easily. A path entry like ${package.path}/lib/*/.jar would be great. Is there a plugin, maybe?

Or does anyone have a better idea to setup an integration test against prebuild JARs?

share|improve this question
Have you thought of using Ivy in the Ant script to publish to Artifactory? – McDowell Nov 27 '11 at 15:55

1 Answer

up vote 1 down vote accepted

Create a single jar from all of your dependencies, everything in ${package.path}/lib/*/.jar.

You could use an ant task to create this jar, either before you run maven, or as part of your maven build.

To merge your jars, you can use the Ant Jar Task (see section Merging Archives). From there:

<jar destfile="build/main/checksites.jar">
    <fileset dir="build/main/classes"/>
    <restrict>
     <name name="**/*.class"/>
     <archives>
       <zips>
         <fileset dir="lib/main" includes="**/*.jar"/>
       </zips>
     </archives>
    </restrict>
</jar>

This creates a jar file which embeds all the classes from all the jars in lib/main.

You can then use the system scope which points at this jar as normal in maven. Note: if you create the jar in maven (via ant), then you should create the jar in target, so that it gets cleaned correctly.

To use an ant build file from maven, you can use the maven antrun plugin, similarly to:

<plugin>
    <artifactId>maven-antrun-plugin</artifactId>

    <executions>
        <execution>
            <phase>package</phase>
            <goals>
                <goal>run</goal>
            </goals>
            <configuration>
                <tasks>
                    <property name="local.project.artifact.name" value="${project.build.finalName}" />
                    <property name="local.distribution.artifact.name" value="${local.project.artifact.name}-distribution" />
                    <property name="local.distribution.artifact.file" value="${project.build.directory}/${local.distribution.artifact.name}.zip" />
                    <ant antfile="build-deploy.xml" />
                </tasks>
            </configuration>
        </execution>
    </executions>
</plugin>

This runs the ant build file build-deploy.xml in the package phase. The modifications necessary for your system are left as an exercise for the reader :-).

share|improve this answer
Nice Idea, actually. The issue for the current situation is, that I have artifacts within the JAR files which would overwrite each other. That is not working. On the other side, as long as the jar file is not present, Maven complains and will not start. That is the same question again: How can I change the class path during a Maven run? – Rick-Rainer Ludwig Nov 28 '11 at 14:07
It complains even if you do it as part of the process-resources or validate phase? – Matthew Farwell Nov 28 '11 at 14:32
Oh, you are right. The Maven Eclipse plugin is complaining, but the command line tool does not until process-resources. That was a good sign. I added the Ant tasks and I get a massive ZIP file which I give Maven as dependency in the process-resources phase, what is working. But the Classpath is still not working. I think there is a MANIFEST missing or something. Do you have an idea? The compilation phase fails grandiously... ;-) – Rick-Rainer Ludwig Nov 28 '11 at 17:54
Ok, the hint to add a library jar during process-resources phase was excellent to put an already referenced system scoped library to the classpath. I will do it at the end with a Maven MOJO, I think, but I reward the answer as the accepted answer. Thanks again! – Rick-Rainer Ludwig Dec 3 '11 at 20:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.