We have a multi-module maven project that has recently started failing
in the release:perform goal.
We have just added a couple more modules but it doesn't seem likely to
be the cause of the failure. We cannot understand what is causing
this
failure. It seems that the release:perform fails to compile the
source
after the SCM tag and checkout. The failure says that it cannot
find a
dependent jar but it is that jar that it is supposed to be building
releasing!
I will attach pom and log files but since I don't know if they will
get
into the newsgroup so here are excerpts:
I would greatly appreciate feedback on what may be going wrong with
this
release.
Parent POM:
<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>
<groupId>com.xrite</groupId>
<artifactId>xdsiii-drivers</artifactId>
<packaging>pom</packaging>
<version>1.100-SNAPSHOT</version>
<name>X-Rite XDSIII Instrument Drivers</name>
<description>X-Rite's XDSIII Java Instrument Drivers</description>
<url>http://xr-grr-build.xrite.com/site/xdsiii-drivers/$
{project.version
}/index.html</url>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>easymock</groupId>
<artifactId>easymock</artifactId>
<version>2.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>findbugs</groupId>
<artifactId>findbugs</artifactId>
<version>0.9.6</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.0.4</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging-api</artifactId>
<version>1.0.4</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.9</version>
</dependency>
<dependency>
<groupId>com.xrite</groupId>
<artifactId>xrite-commons</artifactId>
<version>[1.54,)</version>
</dependency>
<dependency>
<groupId>com.xrite</groupId>
<artifactId>xrite-test-commons</artifactId>
<version>[1.22,)</version>
</dependency>
</dependencies>
<modules>
<module>xdsiii-instrument-base</module>
<module>xdsiii-instrument-dtp22</module>
<module>xdsiii-instrument-dtp22-ca22</module>
<module>xdsiii-instrument-dtp22-cf57</module>
<module>xdsiii-instrument-dtp22-cfs57</module>
<module>xdsiii-instrument-dtp22-rm400</module>
<module>xdsiii-instrument-dtp22-rm425</module>
<module>xdsiii-instrument-spxx</module>
<module>xdsiii-instrument-spxx-rm61</module>
<module>xdsiii-instrument-vericolor</module>
<module>xdsiii-instrument-vericolor-vs410</module>
<module>xdsiii-driver-api</module>
<module>xdsiii-driver</module>
<module>xdsiii-driver-dtp22</module>
<module>xdsiii-driver-dtp22-ca22</module>
<module>xdsiii-driver-dtp22-cf57</module>
<module>xdsiii-driver-dtp22-cfs57</module>
<module>xdsiii-driver-dtp22-rm400</module>
<module>xdsiii-driver-dtp22-rm425</module>
<module>xdsiii-driver-spxx</module>
<module>xdsiii-driver-spxx-rm61</module>
<module>xdsiii-driver-vericolor</module>
<module>xdsiii-driver-vericolor-vs410</module>
<module>xdsiii-driver-factory</module>
</modules>
<scm>
<connection>scm:svn:http://xrite18/svn/components/xdsiii-drivers/
trunk/<
/connection>
<developerConnection>scm:svn:http://xrite18/svn/components/xdsiii-
driver
s/trunk/</developerConnection>
<url>http://xrite18/svn/components/xdsiii-drivers/trunk/</url>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.0.3</version>
<executions>
<execution>
<goals>
<goal>jar</goal>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.1</version>
<configuration>
<descriptor>src/main/assembly/assembly-bin.xml</descriptor>
<appendAssemblyId>true</appendAssemblyId>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.0</version>
<executions>
<execution>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-idea-plugin</artifactId>
<version>2.0.1-beta20060830</version>
<!--<version>2.1-20070303.231308-2</version>-->
<configuration>
<jdkName>1.5</jdkName>
<jdkLevel>1.5</jdkLevel>
<downloadSources>true</downloadSources>
<downloadJavadocs>true</downloadJavadocs>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.1</version>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>2.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.0-beta-6</version><!--<version>2.0-beta-4-20070419</
version>-
->
</plugin>
</plugins>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-webdav</artifactId>
<version>1.0-beta-2</version>
</extension>
</extensions>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>surefire-report-maven-plugin</artifactId>
</plugin>
<!--plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
</plugin-->
<!--Used to track TODO: reports-->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>taglist-maven-plugin</artifactId>
</plugin>
<!--Used to track releases and changes in each release
reports-->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>changes-maven-plugin</artifactId>
</plugin>
<!--Used to track SCM changes in each release reports-->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>changelog-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>surefire-report-maven-plugin</artifactId>
</plugin>
<plugin>
<!--Provides creating jar of source-->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jxr-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<configuration>
<targetjdk>1.5</targetjdk>
<rulesets>
<ruleset>/rulesets/basic.xml</ruleset>
<ruleset>/rulesets/controversial.xml</ruleset>
</rulesets>
<format>xml</format>
<linkXref>true</linkXref>
<sourceEncoding>utf-8</sourceEncoding>
<minimumTokens>100</minimumTokens>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<reportSets>
<reportSet>
<reports>
<report>dependencies</report>
<report>dependency-convergence</report>
<report>project-team</report>
<report>cim</report>
<report>mailing-list</report>
<report>index</report>
<report>summary</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
<distributionManagement>
<repository>
<id>releases</id>
<name>Inhouse Internal Release Repository</name>
<url>dav:http://xr-grr-build:8081/artifactory/[EMAIL PROTECTED]</url>
</repository>
<snapshotRepository>
<id>snapshots</id>
<name>Inhouse Internal Snapshot Repository</name>
<url>dav:http://xr-grr-build:8082/artifactory/[EMAIL PROTECTED]</
url>
<uniqueVersion>true</uniqueVersion>
</snapshotRepository>
<site>
<id>website</id>
<url>dav:http://xr-grr-build/site/xdsiii-drivers/${project.version}
</url
</site>
</distributionManagement>
</project>
End of build log:
[15:13:43]: [INFO] Checking in modified POMs...
[15:13:43]: [INFO] Executing: svn --non-interactive commit --file
c:\BuildAgent\bin\..\temp\teamcity.tmp\maven-scm-1118417036.commit
--targets c:\BuildAgent\bin\..\temp\teamcity.tmp\maven-scm-43105-
targets
[15:13:43]: [INFO] Working directory:
c:\BuildAgent\work\Agent\xdsiii-drivers
[15:13:45]: [INFO] Release preparation complete.
[15:13:45]: [INFO] [release:perform]
[15:13:45]: [INFO] Checking out the project to perform the release ...
[15:13:45]: [INFO] Executing: svn --non-interactive checkout
http://xrite18/svn/components/xdsiii-drivers/tags/xdsiii-drivers-1.99
checkout
[15:13:45]: [INFO] Working directory:
c:\BuildAgent\work\Agent\xdsiii-drivers\target
[15:14:52]: [INFO] Executing goals 'deploy site-deploy'...
[15:14:52]: [INFO] Executing: mvn deploy site-deploy --no-plugin-
updates
--batch-mode -P default,default -DperformRelease=true
[15:14:53]: [INFO] Scanning for projects...
[15:14:54]: [INFO] Reactor build order:
[15:14:54]: [INFO] X-Rite XDSIII Instrument Drivers
[15:14:54]: [INFO] X-Rite XDSIII Base Instrument
[15:14:54]: [INFO] X-Rite XDSIII DTP22 Instrument
[15:14:54]: [INFO] X-Rite XDSIII CA22 Instrument
[15:14:54]: [INFO] X-Rite XDSIII CF57 Instrument
[15:14:54]: [INFO] X-Rite XDSIII CFS57 Instrument
[15:14:54]: [INFO] X-Rite XDSIII RM400 Instrument
[15:14:54]: [INFO] X-Rite XDSIII RM425 Instrument
[15:14:54]: [INFO] X-Rite XDSIII SPxx Instrument
[15:14:54]: [INFO] X-Rite XDSIII RM61 Instrument
[15:14:54]: [INFO] X-Rite XDSIII VeriColor Instrument
[15:14:54]: [INFO] X-Rite XDSIII VS410 Instrument
[15:14:54]: [INFO] X-Rite XDSIII Driver Interface API
[15:14:54]: [INFO] X-Rite XDSIII Base Driver
[15:14:54]: [INFO] X-Rite XDSIII DTP22 Family Driver
[15:14:54]: [INFO] X-Rite XDSIII CA22 Driver
[15:14:54]: [INFO] X-Rite XDSIII CF57 Driver
[15:14:54]: [INFO] X-Rite XDSIII CFS57 Driver
[15:14:54]: [INFO] X-Rite XDSIII RM400 Driver
[15:14:54]: [INFO] X-Rite XDSIII RM425 Driver
[15:14:54]: [INFO] X-Rite XDSIII SPxx Family Driver
[15:14:54]: [INFO] X-Rite XDSIII RM61 Driver
[15:14:54]: [INFO] X-Rite XDSIII VeriColor Driver
[15:14:54]: [INFO] X-Rite XDSIII VS410 Driver
[15:14:54]: [INFO] X-Rite XDSIII Driver Factory API
[15:14:54]: WAGON_VERSION: 1.0-beta-2
[15:15:01]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:01]: [INFO] Building X-Rite XDSIII Instrument Drivers
[15:15:01]: [INFO] task-segment: [deploy, site-deploy]
[15:15:01]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:01]: [INFO] artifact org.apache.maven.plugins:maven-site-
plugin:
checking for updates from central
[15:15:02]: [INFO] artifact
org.apache.maven.plugins:maven-javadoc-plugin: checking for updates
from
central
[15:15:02]: [INFO] artifact
org.apache.maven.plugins:maven-compiler-plugin: checking for updates
from central
[15:15:04]: [INFO] [site:attach-descriptor]
[15:15:04]: [INFO] Preparing source:jar
[15:15:04]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:04]: [INFO] No goals needed for project - skipping
[15:15:04]: [INFO] [source:jar {execution: attach-sources}]
[15:15:04]: [INFO] Preparing source:jar
[15:15:04]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:04]: [INFO] No goals needed for project - skipping
[15:15:04]: [INFO] [source:jar {execution: default}]
[15:15:04]: [INFO] Preparing source:test-jar
[15:15:04]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:04]: [WARNING] Removing: test-jar from forked lifecycle, to
prevent recursive invocation.
[15:15:04]: [INFO] No goals needed for project - skipping
[15:15:04]: [INFO] [source:test-jar {execution: default}]
[15:15:04]: [INFO] Preparing javadoc:jar
[15:15:04]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:04]: [INFO] Building X-Rite XDSIII Instrument Drivers
[15:15:04]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:04]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:04]: [WARNING] Removing: test-jar from forked lifecycle, to
prevent recursive invocation.
[15:15:04]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [INFO] No goals needed for project - skipping
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [INFO] Building X-Rite XDSIII Base Instrument
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [WARNING] Removing: test-jar from forked lifecycle, to
prevent recursive invocation.
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [INFO] No goals needed for project - skipping
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [INFO] Building X-Rite XDSIII DTP22 Instrument
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [WARNING] Removing: test-jar from forked lifecycle, to
prevent recursive invocation.
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [INFO] No goals needed for project - skipping
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [INFO] Building X-Rite XDSIII CA22 Instrument
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [WARNING] Removing: test-jar from forked lifecycle, to
prevent recursive invocation.
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [INFO] No goals needed for project - skipping
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [INFO] Building X-Rite XDSIII CF57 Instrument
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [WARNING] Removing: test-jar from forked lifecycle, to
prevent recursive invocation.
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [INFO] No goals needed for project - skipping
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [INFO] Building X-Rite XDSIII CFS57 Instrument
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [WARNING] Removing: test-jar from forked lifecycle, to
prevent recursive invocation.
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [INFO] No goals needed for project - skipping
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [INFO] Building X-Rite XDSIII RM400 Instrument
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [WARNING] Removing: test-jar from forked lifecycle, to
prevent recursive invocation.
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [INFO] No goals needed for project - skipping
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [INFO] Building X-Rite XDSIII RM425 Instrument
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [WARNING] Removing: test-jar from forked lifecycle, to
prevent recursive invocation.
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [INFO] No goals needed for project - skipping
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [INFO] Building X-Rite XDSIII SPxx Instrument
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [WARNING] Removing: test-jar from forked lifecycle, to
prevent recursive invocation.
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [INFO] No goals needed for project - skipping
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [INFO] Building X-Rite XDSIII RM61 Instrument
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [WARNING] Removing: test-jar from forked lifecycle, to
prevent recursive invocation.
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [INFO] No goals needed for project - skipping
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [INFO] Building X-Rite XDSIII VeriColor Instrument
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [WARNING] Removing: test-jar from forked lifecycle, to
prevent recursive invocation.
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [INFO] No goals needed for project - skipping
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [INFO] Building X-Rite XDSIII VS410 Instrument
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [WARNING] Removing: test-jar from forked lifecycle, to
prevent recursive invocation.
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [INFO] No goals needed for project - skipping
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [INFO] Building X-Rite XDSIII Driver Interface API
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [WARNING] Removing: test-jar from forked lifecycle, to
prevent recursive invocation.
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [INFO] No goals needed for project - skipping
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [INFO] Building X-Rite XDSIII Base Driver
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [WARNING] Removing: test-jar from forked lifecycle, to
prevent recursive invocation.
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [INFO] No goals needed for project - skipping
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [INFO] Building X-Rite XDSIII DTP22 Family Driver
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [WARNING] Removing: test-jar from forked lifecycle, to
prevent recursive invocation.
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [INFO] No goals needed for project - skipping
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [INFO] Building X-Rite XDSIII CA22 Driver
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [WARNING] Removing: test-jar from forked lifecycle, to
prevent recursive invocation.
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [INFO] No goals needed for project - skipping
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [INFO] Building X-Rite XDSIII CF57 Driver
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [WARNING] Removing: test-jar from forked lifecycle, to
prevent recursive invocation.
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [INFO] No goals needed for project - skipping
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [INFO] Building X-Rite XDSIII CFS57 Driver
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [WARNING] Removing: test-jar from forked lifecycle, to
prevent recursive invocation.
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [INFO] No goals needed for project - skipping
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [INFO] Building X-Rite XDSIII RM400 Driver
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [WARNING] Removing: test-jar from forked lifecycle, to
prevent recursive invocation.
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [INFO] No goals needed for project - skipping
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [INFO] Building X-Rite XDSIII RM425 Driver
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [WARNING] Removing: test-jar from forked lifecycle, to
prevent recursive invocation.
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [INFO] No goals needed for project - skipping
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [INFO] Building X-Rite XDSIII SPxx Family Driver
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [WARNING] Removing: test-jar from forked lifecycle, to
prevent recursive invocation.
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [INFO] No goals needed for project - skipping
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [INFO] Building X-Rite XDSIII RM61 Driver
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [WARNING] Removing: test-jar from forked lifecycle, to
prevent recursive invocation.
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [INFO] No goals needed for project - skipping
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [INFO] Building X-Rite XDSIII VeriColor Driver
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [WARNING] Removing: test-jar from forked lifecycle, to
prevent recursive invocation.
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [INFO] No goals needed for project - skipping
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [INFO] Building X-Rite XDSIII VS410 Driver
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [WARNING] Removing: test-jar from forked lifecycle, to
prevent recursive invocation.
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [INFO] No goals needed for project - skipping
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [INFO] Building X-Rite XDSIII Driver Factory API
[15:15:05]: [INFO]
----------------------------------------------------------------------
--
----
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [WARNING] Removing: test-jar from forked lifecycle, to
prevent recursive invocation.
[15:15:05]: [WARNING] Removing: jar from forked lifecycle, to prevent
recursive invocation.
[15:15:05]: [INFO] No goals needed for project - skipping
[15:15:05]: [INFO] artifact com.xrite:xrite-commons: checking for
updates from central
[15:15:05]: [INFO] artifact com.xrite:xrite-colorlib-api: checking for
updates from central
[15:15:05]: [INFO] artifact com.xrite:xrite-test-commons: checking for
updates from central
[15:15:05]: Downloading:
http://xr-grr-build:8081/artifactory/repo/com/xrite/xdsiii-
instrument-ba
se/1.99/xdsiii-instrument-base-1.99.jar
[15:15:07]: [INFO]
----------------------------------------------------------------------
--
[15:15:07]: [ERROR] BUILD ERROR
[15:15:07]: [INFO]
----------------------------------------------------------------------
--
[15:15:07]: [INFO] Failed to resolve artifact.
[15:15:07]:
[15:15:07]: Missing:
[15:15:07]: ----------
[15:15:07]: 1) com.xrite:xdsiii-instrument-base:jar:1.99
[15:15:07]:
[15:15:07]: Try downloading the file manually from the project
website.
[15:15:07]:
[15:15:07]: Then, install it using the command:
[15:15:07]: mvn install:install-file -DgroupId=com.xrite
-DartifactId=xdsiii-instrument-base \
[15:15:07]: -Dversion=1.99 -Dpackaging=jar -Dfile=/path/to/file
[15:15:07]:
[15:15:07]: Path to dependency:
[15:15:07]: 1) com.xrite:xdsiii-instrument-dtp22:jar:1.99
[15:15:07]: 2) com.xrite:xdsiii-instrument-base:jar:1.99
[15:15:07]:
[15:15:07]: ----------
[15:15:07]: 1 required artifact is missing.
[15:15:07]:
[15:15:07]: for artifact:
[15:15:07]: com.xrite:xdsiii-instrument-dtp22:jar:1.99
[15:15:07]:
[15:15:07]: from the specified remote repositories:
[15:15:07]: central (http://xr-grr-build:8081/artifactory/repo),
[15:15:07]: snapshots (http://xr-grr-build:8082/artifactory/repo)
[15:15:07]:
[15:15:07]:
[15:15:07]: [INFO]
----------------------------------------------------------------------
--
[15:15:07]: [INFO] For more information, run Maven with the -e switch
[15:15:07]: [INFO]
----------------------------------------------------------------------
--
[15:15:07]: [INFO] Total time: 14 seconds
[15:15:07]: [INFO] Finished at: Sun Jul 29 15:15:07 EDT 2007
[15:15:07]: [INFO] Final Memory: 12M/22M
[15:15:07]: [INFO]
----------------------------------------------------------------------
--
[15:15:07]: [INFO]
----------------------------------------------------------------------
--
[15:15:07]: [ERROR] BUILD ERROR
[15:15:07]: [INFO]
----------------------------------------------------------------------
--
[15:15:07]: [INFO] Maven execution failed, exit code: '1'
[15:15:07]:
[15:15:07]: [INFO]
----------------------------------------------------------------------
--
[15:15:07]: [INFO] Trace
[15:15:07]: org.apache.maven.lifecycle.LifecycleExecutionException:
Maven execution failed, exit code: '1'
[15:15:07]: at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals
(Default
LifecycleExecutor.java:564)
[15:15:07]: at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeStandaloneG
oa
l(DefaultLifecycleExecutor.java:493)
[15:15:07]: at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal
(DefaultL
ifecycleExecutor.java:463)
[15:15:07]: at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHand
le
Failures(DefaultLifecycleExecutor.java:311)
[15:15:07]: at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegment
s(
DefaultLifecycleExecutor.java:224)
[15:15:07]: at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute
(DefaultLifec
ycleExecutor.java:143)
[15:15:07]: at
org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:334)
[15:15:07]: at
org.apache.maven.DefaultMaven.execute(DefaultMaven.java:125)
[15:15:07]: at org.apache.maven.cli.MavenCli.main(MavenCli.java:280)
[15:15:07]: at sun.reflect.NativeMethodAccessorImpl.invoke0(Native
Method)
[15:15:07]: at
sun.reflect.NativeMethodAccessorImpl.invoke
(NativeMethodAccessorImpl.jav
a:39)
[15:15:07]: at
sun.reflect.DelegatingMethodAccessorImpl.invoke
(DelegatingMethodAccessor
Impl.java:25)
[15:15:07]: at java.lang.reflect.Method.invoke(Method.java:585)
[15:15:07]: at
org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)
[15:15:07]: at
org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
[15:15:07]: at
org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java:430)
[15:15:07]: at org.codehaus.classworlds.Launcher.main(Launcher.java:
375)
[15:15:07]: Caused by: org.apache.maven.plugin.MojoExecutionException:
Maven execution failed, exit code: '1'
[15:15:07]: at
org.apache.maven.plugins.release.PerformReleaseMojo.execute
(PerformRelea
seMojo.java:106)
[15:15:07]: at
org.apache.maven.plugin.DefaultPluginManager.executeMojo
(DefaultPluginMa
nager.java:443)
[15:15:07]: at
org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals
(Default
LifecycleExecutor.java:539)
[15:15:07]: ... 16 more
[15:15:07]: Caused by:
org.apache.maven.shared.release.ReleaseExecutionException: Maven
execution failed, exit code: '1'
[15:15:07]: at
org.apache.maven.shared.release.phase.AbstractRunGoalsPhase.execute
(Abst
ractRunGoalsPhase.java:66)
[15:15:07]: at
org.apache.maven.shared.release.phase.RunPerformGoalsPhase.execute
(RunPe
rformGoalsPhase.java:57)
[15:15:07]: at
org.apache.maven.shared.release.DefaultReleaseManager.perform
(DefaultRel
easeManager.java:319)
[15:15:07]: at
org.apache.maven.shared.release.DefaultReleaseManager.perform
(DefaultRel
easeManager.java:267)
[15:15:07]: at
org.apache.maven.shared.release.DefaultReleaseManager.perform
(DefaultRel
easeManager.java:260)
[15:15:07]: at
org.apache.maven.plugins.release.PerformReleaseMojo.execute
(PerformRelea
seMojo.java:102)
[15:15:07]: ... 18 more
[15:15:07]: Caused by:
org.apache.maven.shared.release.exec.MavenExecutorException: Maven
execution failed, exit code: '1'
[15:15:07]: at
org.apache.maven.shared.release.exec.ForkedMavenExecutor.executeGoals(
Fo
rkedMavenExecutor.java:103)
[15:15:07]: at
org.apache.maven.shared.release.exec.ForkedMavenExecutor.executeGoals(
Fo
rkedMavenExecutor.java:121)
[15:15:07]: at
org.apache.maven.shared.release.phase.AbstractRunGoalsPhase.execute
(Abst
ractRunGoalsPhase.java:59)
[15:15:07]: ... 23 more
[15:15:07]: [INFO]
----------------------------------------------------------------------
--
[15:15:07]: [INFO] Total time: 9 minutes 58 seconds
[15:15:07]: [INFO] Finished at: Sun Jul 29 15:15:07 EDT 2007
[15:15:07]: [INFO] Final Memory: 17M/36M
[15:15:07]: [INFO]
----------------------------------------------------------------------
--
[15:15:07]: Number of processed tests: 2008
[15:14:00]: Build finished
<MavenReleaseFailure.zip>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]