I am copying a resource into another folder before packaging using the maven-dependecy-plugins copy goal.

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-dependency-plugin</artifactId>
    <version>2.4</version>
    <executions>
        <execution>
            <id>copy</id>
            <phase>prepare-package</phase>
            <goals>
                <goal>copy</goal>
            </goals>
            <configuration>
                <failBuild>false</failBuild>
                <artifactItems>
                    <artifactItem>
                        <groupId>my.groupID</groupId>
                        <artifactId>myArtifact</artifactId>
                        <version>0.0.1-SNAPSHOT</version>
                        <type>jar</type>
                        <overWrite>true</overWrite>
                        <outputDirectory>my/custom/path</outputDirectory>
                    </artifactItem>
                </artifactItems>
            </configuration>
        </execution>
    </executions>
</plugin>

The resource is not vital and it is likely possible that it is not accessible. That's why I want the build not to fail if it is not accessible. I already set the failBuild property to false but it had no effect. Is there a way to achieve this?

link|improve this question

67% accept rate
feedback

2 Answers

I guess you get a resolve problem, that the artifact doesnt exist or can't be found in any repository. That's how maven works, if you specify a dependency you need to be able to retrieve it.

link|improve this answer
Yes, I knew that. My question is if theres any way around that strict policy. That artifact is not even declared in the dependencies section so I thought it must be possible to skip it in the copy goal if it cannot be resolved. – André Feb 2 at 18:43
1  
I'm pretty sure that it can't be done using the dependency plugin. I'd use the antrun plugin and the copy target... – Peter Liljenberg Feb 2 at 18:59
OK, i'll give it a try tomorrow. Thanks! – André Feb 2 at 20:16
If tried it today. If I got it right I have to either declare my dependency in the dependencies section (which of course also makes the build fail if it's missing) or have to provide an actual file. Or am I missing something? What I actually need is to load my artifact via groupId and artifactId but ignore it if it cannot be found in the repositories. – André Feb 4 at 16:12
1  
Hard to tell by the brief description. Do you have a mail address I can reach you on so we can dig deeper :) – Peter Liljenberg Feb 4 at 20:05
show 3 more comments
feedback
up vote 0 down vote accepted

I resolved my problem by using the copy artifact plugin of jenkins now.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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