Hi David,
On 23/01/17 00:54, David Hoffer wrote:
I will try all of these things the best I can, see my comments inline below.
In addition to my comments below I have a question about how Maven
handles plugin phases in a multi module build. Once the reactor module
build order is established does it build each module all the way to the
final phase specified by the command line before it moves on to the next
module? (E.g. is this guaranteed behavior?) Or does it build the same
phase across all modules before it moves to the next phase? Or does it
use some combination in some fashion?
it must build every module to the final phase...and go them with the
next module...
-Dave
On Sun, Jan 22, 2017 at 11:15 AM, Karl Heinz Marbaise <[email protected]
<mailto:[email protected]>> wrote:
Hi David,
the first thing I strongly recommend to make a build of your project
where you first clean the local cache ($HOME/.m2/repository)
completely and just run your build via:
mvn package -DskipTests=true
[dh] I don't trust package w/o also a clean so plan to add that is
well. W/o the clean any prior partial build would remain in the target
folder. Ultimately what needs to work is deploy as that is what the CI
system will run after a fresh checkout in a clean working area.
This was not a general hint to go with it was just a single task to see
if everything is right with your build...Of course you can add a clean
call in this case ...
The intention here is to check if the reactor builds correct and if all
dependencies between the modules are correct...
I know that you finally need to get working deploy...but first we should
see if something else is wrong...
(No usage of install!)..
[dh] I'm curious as to why no install? Wen we do our dev builds the
standard practice is to run clean install.
see my previous comments to check the dependencies between your modules...
Just for a test build...you can do that just locally do a fresh checkout
and remove the content of your cache and then
try to run: mvn clean package -DskipTests=true
(the clean after a fresh checkout is not needed)..
This should work without any issue...If it does not than the problem
is located somewhere else...
Maybe you can try to use maven-dependency-plugin:unpack instead of
unpack-dependencies like this:
For this you only a single execution of the plugin:
<configuration>
<artifactItems>
<artifactItem>
<groupId>xxxx</groupId>
<artifactId>artifactId<artifactId>
<version>${project.version}</version>
<type>zip</type>
<classifier>wsdl</classifier>
<overWrite>true</overWrite>
<includes>**/*.class,**/*.xml</includes>
<excludes>**/*test.class</excludes>
</artifactItem>
<artifactItem>
another one...
</artifactItem>
</artifactItems>
<outputDirectory>${project.build.directory}</outputDirectory>
<overWriteReleases>true</overWriteReleases>
<overWriteSnapshots>true</overWriteSnapshots>
</configuration>
[dh] I'm always wondering about the virtues of unpack vs.
unpack-dependencies. Since what I am unpacking is part of the current
reactor build I have always felt it is better to use unpack-dependencies
so I can be certain the build is using the artifact generated by the
current build and not a prior build downloaded from Nexus.
> My
understanding is unpack will get it from Nexus if it has a later
timestamp on the snapshot. However unpack-dependencies will never
attempt to download and always get from current build so better in cases
where its the current build's results you want. We would often need
multiple executions anyway as the outputDirectory is often different.
One thing you might consider is why have you separated the WSDL from
generating the code ? Can you combine the WSDL and the code
generation into a single module ? (Might this an option?)
[dh] No this isn't possible as we have large quantities of WSDL/Schemas
that are shared with our partners so we have one module that acts as
sort of the repository and publisher of the wsdl/schemas then our build
uses parts of that larger set of wsdl/schemas. So we either make zips
of those smaller parts of wsdl/schemas that we can consume in the
appropriate source generation modules or we extract part of the zip to
do the same.
OK just fine it was just a question...
BTW: I would try to remove the scope in your project where you do
the unpack...
[dh] We don't specify the scope where we do the unpack...here is any
example pom. (I assume this is where you were referring to scope?)
In the dependencies of the module where you do the unpack you have
defined provided...
<execution>
<id>unpack-JMS-WS-Eventing</id>
<phase>generate-sources</phase>
<goals>
<goal>unpack-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}</outputDirectory>
<includeGroupIds>com.issinc.jms.layer7.deployment</includeGroupIds>
<includeArtifactIds>layer7-static-resources</includeArtifactIds>
<includeClassifiers>wsdl-JMS-WS-Eventing</includeClassifiers>
<includeTypes>zip</includeTypes>
<excludeTransitive>true</excludeTransitive>
<overWriteSnapshots>true</overWriteSnapshots>
<overWriteReleases>true</overWriteReleases>
<failOnMissingClassifierArtifact>true</failOnMissingClassifierArtifact>
<ignorePermissions>true</ignorePermissions>
</configuration>
</execution>
What comes to my mind is that if you generate sources packages this
should be done in the appropriate package them selfs and not into a
parent (but this depends sometimes)...
[dh] That would seem to be unmanageable as you want all modules to have
source/javadocs generated but don't want to have to repeat that in every
module. So this is specified at the parent pom. However since a pom
type it has no source so it doesn't generate anything for itself just
its children. The only exception to this is we now also do generate
aggregated javadoc jar for the entire project via the
maven-javadoc-plugin aggregate-jar goal so this does run at the top
level. I don't know of any other way to generate aggregated javadocs
The problem with that is that the parent pom will run first before and
child has been finished and furthermore the javadoc will fork the life
cycle...(identified by "<<<" and ">>>" in the output...
Furthermore I would suggest to test it several times without
influence of Teamcity (cause it seemed to be having some kind of
watcher running)..I had such issues in Jenkins a while ago (with the
evil Mavne Job Type)...
Can you run that build several times without the ciBuild profile ?
[dh] Yes I can do this. In my prior experience it will happen less
without the ciBuild and have no idea why. However we do need sources
and javadocs so have to figure out how to build with those somehow.
Yes I know but we need to drill down to the problem first...
Furthermore it might be worth to check using the
maven-remote-resources plugin for the parts which you are
unpackaging into the appropriate packages...if it's only related to
single files etc. ? But I'm not sure...
[dh] I'm not familiar with that plugin. I just took a quick look. It
seems we do the same/similar thing using the maven-assembly-plugin.
E.g. our standard practice is to generate artifacts for later
consumption using the maven-assembly-plugin and then consume with
maven-dependency-plugin. Is this not a valid way to handle this?
The assembly is one option...the remote resources plugin packs things
and will be executed in the generate-resources phase by default and put
the files you need into appropriate directories...which is sometimes
less configureation...but first we should drill down to your problem
before we change anything...
Just some thoughts about...without really seeing the build and the
complete poms etc.
Kind regards
Karl Heinz Marbaise
On 22/01/17 17:58, David Hoffer wrote:
Any input on this? This is killing us right now...we don't have
a way to
get past this and builds are failing. We have no idea what to
try to fix
this.
Any input is greatly appreciated.
-Dave
On Sat, Jan 21, 2017 at 7:18 AM, David Hoffer
<[email protected] <mailto:[email protected]>> wrote:
Maven home: C:\Programs\Apache\Maven\apache-maven-3.3.9
Java version: 1.8.0_102, vendor: Oracle Corporation
Java home: C:\Programs\Java\jdk1.8.0_102\jre
Default locale: en_US, platform encoding: Cp1252
OS name: "windows 7", version: "6.1", arch: "amd64", family:
"dos"
Command line: mvn clean install -PciBuild -DskipTests=true
We are not using the -T option.
The JMS: Parent (POM) is the top level pom and it is a
regular pom, the
reason that it took 22 minutes is that the ciBuild profile
was enabled.
This profile just turns on generating sources and javadoc
jars for the
project, it also creates an uber javadoc jar using the
aggregate-jar goal.
As I previously mentioned it does seem that generating the
sources and
javadoc jars aggravates this issue so it occurs more often
and right now
its failing almost all the time. If I remove the source and
javadoc jar
generation it will fail the same way but generally not as often.
-Dave
On Sat, Jan 21, 2017 at 3:38 AM, Karl Heinz Marbaise
<[email protected] <mailto:[email protected]>>
wrote:
Hi,
how is Maven called ? Which Maven Version do you use?
Are you using "-T"
option?
What looks a little bit strnage to me is that a parent:
"[00:34:50] : [Step 2/3] [INFO] JMS: Parent (POM)
.................................. SUCCESS [22:08 min]"
shows a time of 22 minutes ? Is this really a pom or is the
<name>..</name> saying something different than the pom
itself (so
packaging different than pom?):
Kind regards
Karl Heinz
On 20/01/17 17:46, David Hoffer wrote:
Here is some build and log messages when run in
normal mode...I will get
debug logs. Note it's the unpack-JMS-WS-Eventing
step that is skipped
below...so the expected file is not found.
[00:34:49] :[Step 2/3] [INFO]
[00:34:49] :[Step 2/3] [INFO]
------------------------------------------------------------------------
[00:34:49] :[Step 2/3] [INFO] Building JMS JAX-WS:
Bullpen JAX-WS (JAR)
11.x-SNAPSHOT
[00:34:49] :[Step 2/3] [INFO]
------------------------------------------------------------------------
[00:34:49] :[Step 2/3] [Maven Watcher] project started:
com.issinc.jms.jax.ws
<http://com.issinc.jms.jax.ws>.resources:bullpen-jax-ws:jar:11.x-SNAPSHOT
[00:34:49] :[Step 2/3] [Maven Watcher]
[00:34:49]i:[Step 2/3] ##teamcity[projectStarted
tc:tags='tc:internal'
projectId='com.issinc.jms.jax.ws.resources:bullpen-jax-ws:ja
r:11.x-SNAPSHOT'
groupId='com.issinc.jms.jax.ws
<http://com.issinc.jms.jax.ws>.resources'
artifactId='bullpen-jax-ws'
testReportsDir0='F:/work/5c4a237177bf7a76/jax-ws-resources/b
ullpen-jax-ws/target/failsafe-reports'
testReportsDir1='F:/work/5c4a237177bf7a76/jax-ws-resources/b
ullpen-jax-ws/target/surefire-reports']
[00:34:49]E:[Step 2/3] com.issinc.jms.jax.ws
<http://com.issinc.jms.jax.ws>.resources:bullpen-jax-ws
[00:34:49]i:[com.issinc.jms.jax.ws.resources:bullpen-jax-ws]
##teamcity[importData tc:tags='tc:internal'
type='surefire'
path='F:/work/5c4a237177bf7a76/jax-ws-resources/bullpen-jax-
ws/target/failsafe-reports/TEST-*.xml'
whenNoDataPublished='nothing' logAsInternal='true']
[00:34:49]i:[com.issinc.jms.jax.ws.resources:bullpen-jax-ws]
##teamcity[importData tc:tags='tc:internal'
type='surefire'
path='F:/work/5c4a237177bf7a76/jax-ws-resources/bullpen-jax-
ws/target/surefire-reports/TEST-*.xml'
whenNoDataPublished='nothing' logAsInternal='true']
[00:34:49] :[com.issinc.jms.jax.ws
<http://com.issinc.jms.jax.ws>.resources:bullpen-jax-ws]
Importing
data from
'F:/work/5c4a237177bf7a76/jax-ws-resources/bullpen-jax-ws/ta
rget/failsafe-reports/TEST-*.xml'
(not existing file) with 'surefire' processor
[00:34:49] :[com.issinc.jms.jax.ws
<http://com.issinc.jms.jax.ws>.resources:bullpen-jax-ws]
Importing
data from
'F:/work/5c4a237177bf7a76/jax-ws-resources/bullpen-jax-ws/ta
rget/surefire-reports/TEST-*.xml'
(not existing file) with 'surefire' processor
[00:34:49] :[com.issinc.jms.jax.ws
<http://com.issinc.jms.jax.ws>.resources:bullpen-jax-ws]
[INFO]
[00:34:49] :[com.issinc.jms.jax.ws
<http://com.issinc.jms.jax.ws>.resources:bullpen-jax-ws]
[INFO] ---
properties-maven-plugin:1.0-alpha-2:set-system-properties
(set-additional-system-properties) @ bullpen-jax-ws ---
[00:34:49] :[com.issinc.jms.jax.ws
<http://com.issinc.jms.jax.ws>.resources:bullpen-jax-ws]
[INFO] Set
3 system properties
[00:34:49] :[com.issinc.jms.jax.ws
<http://com.issinc.jms.jax.ws>.resources:bullpen-jax-ws]
[INFO]
[00:34:49] :[com.issinc.jms.jax.ws
<http://com.issinc.jms.jax.ws>.resources:bullpen-jax-ws]
[INFO] ---
maven-dependency-plugin:3.0.0:unpack-dependencies
(unpack-bullpen-msg) @
bullpen-jax-ws ---
[00:34:49] :[com.issinc.jms.jax.ws
<http://com.issinc.jms.jax.ws>.resources:bullpen-jax-ws]
[INFO]
[00:34:49] :[com.issinc.jms.jax.ws
<http://com.issinc.jms.jax.ws>.resources:bullpen-jax-ws]
[INFO] ---
maven-dependency-plugin:3.0.0:unpack-dependencies
(unpack-JMS-WS-Eventing) @ bullpen-jax-ws ---
[00:34:49] :[com.issinc.jms.jax.ws
<http://com.issinc.jms.jax.ws>.resources:bullpen-jax-ws]
[INFO]
[00:34:49] :[com.issinc.jms.jax.ws
<http://com.issinc.jms.jax.ws>.resources:bullpen-jax-ws]
[INFO] ---
maven-replacer-plugin:1.4.1:replace
(replace-elements-import) @
bullpen-jax-ws ---
[00:34:50] :[com.issinc.jms.jax.ws
<http://com.issinc.jms.jax.ws>.resources:bullpen-jax-ws]
Surefire
report watcher
[00:34:50] :[Surefire report watcher] Watching paths:
[00:34:50] :[Surefire report watcher]
F:\work\5c4a237177bf7a76\jax-ws-resources\bullpen-jax-ws\tar
get\failsafe-reports\TEST-*.xml
[00:34:50] :[com.issinc.jms.jax.ws
<http://com.issinc.jms.jax.ws>.resources:bullpen-jax-ws]
Surefire
report watcher
[00:34:50] :[Surefire report watcher] Watching paths:
[00:34:50] :[Surefire report watcher]
F:\work\5c4a237177bf7a76\jax-ws-resources\bullpen-jax-ws\tar
get\surefire-reports\TEST-*.xml
[00:34:50] :[com.issinc.jms.jax.ws
<http://com.issinc.jms.jax.ws>.resources:bullpen-jax-ws]
[INFO]
Ignoring missing file
[00:34:50] :[com.issinc.jms.jax.ws
<http://com.issinc.jms.jax.ws>.resources:bullpen-jax-ws]
[INFO]
Replacement run on 0 file.
[00:34:50] :[com.issinc.jms.jax.ws
<http://com.issinc.jms.jax.ws>.resources:bullpen-jax-ws]
[INFO]
[00:34:50] :[com.issinc.jms.jax.ws
<http://com.issinc.jms.jax.ws>.resources:bullpen-jax-ws]
[INFO] ---
maven-replacer-plugin:1.4.1:replace
(replace-elements-namespace) @
bullpen-jax-ws ---
[00:34:50] :[com.issinc.jms.jax.ws
<http://com.issinc.jms.jax.ws>.resources:bullpen-jax-ws]
[INFO]
Ignoring missing file
[00:34:50] :[com.issinc.jms.jax.ws
<http://com.issinc.jms.jax.ws>.resources:bullpen-jax-ws]
[INFO]
Replacement run on 0 file.
[00:34:50] :[com.issinc.jms.jax.ws
<http://com.issinc.jms.jax.ws>.resources:bullpen-jax-ws]
[INFO]
[00:34:50] :[com.issinc.jms.jax.ws
<http://com.issinc.jms.jax.ws>.resources:bullpen-jax-ws]
[INFO] ---
maven-replacer-plugin:1.4.1:replace
(replace-types-namespace) @
bullpen-jax-ws ---
[00:34:50] :[com.issinc.jms.jax.ws
<http://com.issinc.jms.jax.ws>.resources:bullpen-jax-ws]
[INFO]
Ignoring missing file
[00:34:50] :[com.issinc.jms.jax.ws
<http://com.issinc.jms.jax.ws>.resources:bullpen-jax-ws]
[INFO]
Replacement run on 0 file.
[00:34:50] :[com.issinc.jms.jax.ws
<http://com.issinc.jms.jax.ws>.resources:bullpen-jax-ws]
[INFO]
[00:34:50] :[com.issinc.jms.jax.ws
<http://com.issinc.jms.jax.ws>.resources:bullpen-jax-ws]
[INFO] ---
jaxws-maven-plugin:2.3:wsimport
(bullpen-jax-ws-wsimport) @
bullpen-jax-ws ---
[00:34:50] :[com.issinc.jms.jax.ws
<http://com.issinc.jms.jax.ws>.resources:bullpen-jax-ws]
[Maven
Watcher]
[00:34:50]E:[com.issinc.jms.jax.ws.resources:bullpen-jax-ws]
Failed to
execute goal
org.jvnet.jax-ws-commons:jaxws-maven-plugin:2.3:wsimport
(bullpen-jax-ws-wsimport) on project bullpen-jax-ws:
'F:\work\5c4a237177bf7a76\jax-ws-resources\bullpen-jax-ws\ta
rget/wsdl/JMS-WS-Eventing/NotificationService.wsdl'
not found.
[00:34:50] :[com.issinc.jms.jax.ws
<http://com.issinc.jms.jax.ws>.resources:bullpen-jax-ws]
[Maven
Watcher]
[00:34:50]i:[com.issinc.jms.jax.ws.resources:bullpen-jax-ws]
##teamcity[projectFinished tc:tags='tc:internal'
projectId='com.issinc.jms.jax.ws.resources:bullpen-jax-ws:ja
r:11.x-SNAPSHOT']
[00:34:50] :[Step 2/3] [INFO]
------------------------------------------------------------------------
[00:34:50] :[Step 2/3] [INFO] Reactor Summary:
[00:34:50] :[Step 2/3] [INFO]
[00:34:50] :[Step 2/3] [INFO] JMS: Parent (POM)
.................................. SUCCESS [22:08 min]
[00:34:50] :[Step 2/3] [INFO] Third Party (POM)
.................................. SUCCESS [ 15.097 s]
[00:34:50] :[Step 2/3] [INFO] JMS Exchange (POM)
................................. SUCCESS [ 14.673 s]
[00:34:50] :[Step 2/3] [INFO] Exchange Web Services
Java API
..................... SUCCESS [ 56.476 s]
[00:34:50] :[Step 2/3] [INFO] JMS EWS (JAR)
...................................... SUCCESS [
21.454 s]
[00:34:50] :[Step 2/3] [INFO] Third Party: ASW
WSDL/Schema (JAR)
................. SUCCESS [ 17.851 s]
[00:34:50] :[Step 2/3] [INFO] Third Party code:
JAX-WS Model for 3-rd
party schema (JAR) SUCCESS [ 53.030 s]
[00:34:50] :[Step 2/3] [INFO] Third Party: JMS EDM
3.3.0 Schemas (POM)
........... SUCCESS [ 18.503 s]
[00:34:50] :[Step 2/3] [INFO] Third Party :
Enterprise Messaging Parent
(POM) .... SUCCESS [ 15.107 s]
[00:34:50] :[Step 2/3] [INFO] Third Party:
Enterprise Messaging WSDL
(POM) ....... SUCCESS [ 15.712 s]
[00:34:50] :[Step 2/3] [INFO] Third Party:
Enterprise Messaging SEI
Parent (POM) . SUCCESS [ 15.031 s]
[00:34:50] :[Step 2/3] [INFO] Third Party: EM WSN
Notification Consumer
SEI (JAR) SUCCESS [ 24.023 s]
[00:34:50] :[Step 2/3] [INFO] Third Party: EM WSN
Notification Producer
SEI (JAR) SUCCESS [ 25.026 s]
[00:34:50] :[Step 2/3] [INFO] Third Party: EM WSN
Subscription Manager
SEI (JAR) . SUCCESS [ 23.884 s]
[00:34:50] :[Step 2/3] [INFO] Third Party:
Enterprise Messaging WSN
Admin SEI (JAR) SUCCESS [ 25.346 s]
[00:34:50] :[Step 2/3] [INFO] Third Party: CCSDS (POM)
........................... SUCCESS [ 16.225 s]
[00:34:50] :[Step 2/3] [INFO] JMS Common: Parent (POM)
........................... SUCCESS [ 15.849 s]
[00:34:50] :[Step 2/3] [INFO] JMS Common: Stack
Parent (POM)
..................... SUCCESS [ 15.657 s]
[00:34:50] :[Step 2/3] [INFO] JMS Common: Core (JAR)
............................. SUCCESS [ 51.726 s]
[00:34:50] :[Step 2/3] [INFO] JMS Common: Domain
Model (JAR)
..................... SUCCESS [ 21.047 s]
[00:34:50] :[Step 2/3] [INFO] JMS Common: DAO (JAR)
.............................. SUCCESS [ 31.357 s]
[00:34:50] :[Step 2/3] [INFO] JMS Common: Crypto (JAR)
........................... SUCCESS [ 22.410 s]
[00:34:50] :[Step 2/3] [INFO] JMS Common: Config (JAR)
........................... SUCCESS [ 25.391 s]
[00:34:50] :[Step 2/3] [INFO] JMS Common: Service
CRUD - Client (JAR)
............ SUCCESS [ 19.778 s]
[00:34:50] :[Step 2/3] [INFO] JMS Common: Service
CRUD (JAR)
..................... SUCCESS [ 25.523 s]
[00:34:50] :[Step 2/3] [INFO] JMS Common: Custom
Parent (POM)
.................... SUCCESS [ 13.628 s]
[00:34:50] :[Step 2/3] [INFO] JMS Common: Domain -
Oracle (JAR)
.................. SUCCESS [ 17.035 s]
[00:34:50] :[Step 2/3] [INFO] JMS Common: Reverse
Engineering (JAR)
.............. SUCCESS [ 22.680 s]
[00:34:50] :[Step 2/3] [INFO] JMS Common: DAO -
Hibernate (JAR)
.................. SUCCESS [ 17.086 s]
[00:34:50] :[Step 2/3] [INFO] JMS Common: Crust (JAR)
............................ SUCCESS [ 33.916 s]
[00:34:50] :[Step 2/3] [INFO] JMS Common: Config JMS
Notify (JAR)
................ SUCCESS [ 17.187 s]
[00:34:50] :[Step 2/3] [INFO] common-jsf
......................................... SUCCESS [
21.274 s]
[00:34:50] :[Step 2/3] [INFO] JMS Common: Quartz-Cmd
(ONEJAR)
.................... SUCCESS [ 25.680 s]
[00:34:50] :[Step 2/3] [INFO] JMS Common: Domain -
Hibernate (JAR)
............... SUCCESS [ 16.654 s]
[00:34:50] :[Step 2/3] [INFO] JMS Common: Domain -
OpenJPA (JAR)
................. SUCCESS [ 16.389 s]
[00:34:50] :[Step 2/3] [INFO] JMS Common: Parse -
ANTLR (JAR)
.................... SUCCESS [ 16.133 s]
[00:34:50] :[Step 2/3] [INFO] JMS Common: Transform
- XSLT (JAR)
................. SUCCESS [ 19.031 s]
[00:34:50] :[Step 2/3] [INFO] JMS Common: Service
CRUD - AXIS (JAR)
.............. SUCCESS [ 18.922 s]
[00:34:50] :[Step 2/3] [INFO] JMS Classifier Service
(JAR)
....................... SUCCESS [ 23.380 s]
[00:34:50] :[Step 2/3] [INFO] JMS Common: Legacy
Parent (POM)
.................... SUCCESS [ 12.517 s]
[00:34:50] :[Step 2/3] [INFO] JMS Common: Util (JAR)
............................. SUCCESS [ 23.341 s]
[00:34:50] :[Step 2/3] [INFO] JMS Common: ESB -
ServiceMix (JAR)
................. SUCCESS [ 30.479 s]
[00:34:50] :[Step 2/3] [INFO] JMS Common: IO (JAR)
............................... SUCCESS [ 15.556 s]
[00:34:50] :[Step 2/3] [INFO] JMS Common: JEE - MDB
(JAR)
........................ SUCCESS [ 16.814 s]
[00:34:50] :[Step 2/3] [INFO] JMS Common: JAXB (JAR)
............................. SUCCESS [ 15.189 s]
[00:34:50] :[Step 2/3] [INFO] JMS Common: Logging (JAR)
.......................... SUCCESS [ 19.696 s]
[00:34:50] :[Step 2/3] [INFO] JMS Common: Parsers (JAR)
.......................... SUCCESS [ 23.917 s]
[00:34:50] :[Step 2/3] [INFO] JMS: Notification Parent
........................... SUCCESS [ 11.979 s]
[00:34:50] :[Step 2/3] [INFO] JMS Notification:
Notification API (JAR)
........... SUCCESS [ 15.814 s]
[00:34:50] :[Step 2/3] [INFO] JMS Notification:
Common (JAR)
..................... SUCCESS [ 21.994 s]
[00:34:50] :[Step 2/3] [INFO] JMS Common: Message (JAR)
.......................... SUCCESS [ 24.964 s]
[00:34:50] :[Step 2/3] [INFO] JMS Common:
Import/Export (JAR)
.................... SUCCESS [ 16.588 s]
[00:34:50] :[Step 2/3] [INFO] JMS Common: DAO -
Legacy (JAR)
..................... SUCCESS [ 16.412 s]
[00:34:50] :[Step 2/3] [INFO] JMS Persistence:
Legacy Persistence (JAR)
.......... SUCCESS [ 21.701 s]
[00:34:50] :[Step 2/3] [INFO] JMS Installer:
Database Files (ZIP)
................ SUCCESS [06:18 min]
[00:34:50] :[Step 2/3] [INFO] JMS Orchestration:
Parent (POM)
.................... SUCCESS [ 12.929 s]
[00:34:50] :[Step 2/3] [INFO] Activiti BPM - (OSGi)
.............................. SUCCESS [ 26.050 s]
[00:34:50] :[Step 2/3] [INFO] JMS Domain Model:
Parent (POM)
..................... SUCCESS [ 11.523 s]
[00:34:50] :[Step 2/3] [INFO] JMS Bullpen: Domain
Model (JAR)
.................... SUCCESS [ 32.741 s]
[00:34:50] :[Step 2/3] [INFO] JMS Bullpen: Parent (POM)
.......................... SUCCESS [ 11.461 s]
[00:34:50] :[Step 2/3] [INFO] JMS Bullpen: DAO (JAR)
............................. SUCCESS [ 28.254 s]
[00:34:50] :[Step 2/3] [INFO] JMS Bullpen: CRUD (JAR)
............................ SUCCESS [ 41.435 s]
[00:34:50] :[Step 2/3] [INFO] JMS Orchestration:
Hazelcast (OSGi)
................ SUCCESS [ 18.782 s]
[00:34:50] :[Step 2/3] [INFO] JMS Orchestration:
Bullpen Parent (POM)
............ SUCCESS [ 11.396 s]
[00:34:50] :[Step 2/3] [INFO] JMS Bullpen: Message
Broker (OSGi)
................. SUCCESS [01:06 min]
[00:34:50] :[Step 2/3] [INFO] JMS Layer7: Layer7
Parent (POM)
.................... SUCCESS [ 11.399 s]
[00:34:50] :[Step 2/3] [INFO] JMS Layer7: Layer7
Deployment (POM)
................ SUCCESS [ 11.337 s]
[00:34:50] :[Step 2/3] [INFO] JMS Layer7: Layer7
Static Resources (ZIPs)
......... SUCCESS [01:01 min]
[00:34:50] :[Step 2/3] [INFO] JMS JAX-WS: Resources
Parent(POM)
.................. SUCCESS [ 13.468 s]
[00:34:50] :[Step 2/3] [INFO] JMS JAX-WS: Bullpen
JAX-WS (JAR)
................... FAILURE [ 0.538 s]
[00:34:50] :[Step 2/3] [INFO] JMS Notification:
Bullpen Client (JAR)
............. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Notification:
Services Parent (POM)
............ SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Notification
Services: API (JAR)
............... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Notification
Services: Common (JAR)
............ SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Notification
Services: EJBs (JAR)
.............. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Notification
Services: Notification
Callback EE (JAR) SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Notification
Services: Webapp (WAR)
............ SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
Domain Model (JAR)
.......... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
Parent (POM)
................ SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
JAX-WS Services
............. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
JAX-WS Services
WSDL/Domain . SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
JAX-WS EJB WS Model
(JAR) ... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Notification
Services: EAR (EAR)
............... SKIPPED
[00:34:50] :[Step 2/3] [INFO] Sensor Management
Service: Parent (POM)
............ SKIPPED
[00:34:50] :[Step 2/3] [INFO] SMS: Mission Services
(JAR)
........................ SKIPPED
[00:34:50] :[Step 2/3] [INFO] SMS: Sensor Management
Service (WAR)
............... SKIPPED
[00:34:50] :[Step 2/3] [INFO] SMS: SAAJ (WAR)
.................................... SKIPPED
[00:34:50] :[Step 2/3] [INFO] SMS: jmsMissionThreads
(EAR)
....................... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Core : Domain
Model (JAR)
...................... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Hiet: Domain Model
(JAR)
....................... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS KARNAC: Domain
Model (JAR)
..................... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Test, Training and
Exercise : Domain
Model (JAR) SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Orchestration:
Orchestration
WSDLs/schemas (ZIP) SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS JAX-WS: Data
Product Generator JAX-WS
(JAR) .... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS JAX-WS:
PublisherOrchestrationService
JAX-WS (JAR) SKIPPED
[00:34:50] :[Step 2/3] [INFO] Orchestration Clients
(JAR)
........................ SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
Parse - ANTLR (JAR)
......... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
Utilities (JAR)
............. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
Parse - Util (JAR)
.......... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
Configuration (EJB)
......... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
CRUD Model (JAR)
............ SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
Domain Listener -
Context (JAR) SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
DAO - EJB (JAR)
............. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
Time Utilities
(JAR) ........ SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
Satellite Number
Utilities (JAR) SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
Parse (JAR)
................. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
Parse - Third Party
(JAR) ... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
Satellite Number
Reservation (JAR) SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
Astro Utilities
(JAR) ....... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
Staging to Real
Converter (JAR) SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
Write (JAR)
................. SKIPPED
[00:34:50] :[Step 2/3] [INFO] ASW: JAX-WS Client
................................. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
Domain Model -
Hibernate (JAR) SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
DAO - POJO (JAR)
............ SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
Satcat-Loader
............... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Bulk Loader
.................................... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
CXF Clients Parent
(POM) .... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
Common Client CXF
(JAR) ..... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Core: Parent (POM)
............................. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Core: CRUD Model (JAR)
......................... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Core: Domain
Listener - Context (JAR)
.......... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Core: DAO - EJB (JAR)
.......................... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Core: CRUD (JAR)
............................... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Core: Data
Environment (JAR)
................... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
Ingest Service
(AAR) ........ SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
Ingest Service CXF
Client - SWA (JAR) SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Bullpen: Clients (POM)
......................... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Bullpen: Publisher
Client (JAR)
................ SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Core Services:
Parent (POM)
.................... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Core Services:
Notification Parent
(POM) ....... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Core Service:
Notification WS Client
(JAR) ..... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
Admin Tools -
Common (JAR) .. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
RSO Duplicate
Detection (JAR) SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS JAX-WS: Satcat
Mediator JAX-WS (JAR)
........... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
EJB JAX-WS Services
(JAR) ... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
Json EJB (JAR)
.............. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
Domain Listener -
AXIS (JAR) SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
ElementUpdater
(JAR) ........ SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Core Services:
Messaging Parent (POM)
.......... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Core Service:
Email Messaging Support
(JAR) .... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
SpaceFaces - JSF
tools (JAR) SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
Dataminer Framework
Parent (POM) SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
Data Miner
Framework Common (JAR) SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
Data Miner
Framework Ingest Parent (POM) SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
Data Miner
Framework Ingest Common (JAR) SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
Data Miner
Framework Engine (JAR) SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
Data Miner
Framework RX Engine (JAR) SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
Data Miner
Framework Ingest DML Evidence Trigger (JAR) SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
CRUD (JAR)
.................. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Orchestration:
Database Connector
Parent (POM) . SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Orchestration:
Satellite Catalog Data
Source (OSGi) SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Orchestration:
Resources Parent(POM)
........... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Orchestration:
SatCatExternalIngest
Resources (JAR) SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Orchestration:
Satellite Catalog
Facade (POM) .. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Orchestration:
Satcat Mediator (OSGi)
.......... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Orchestration:
Satcat Publisher (OSGi)
......... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
Integration -
Quartz (JAR) .. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
UI (WAR)
.................... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
Admin Tools - USV
(WAR) ..... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Core:
Configuration (EJB)
...................... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
Booster Jar (JAR)
........... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Core Service:
Angular Parent (JAR)
............. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
Booster Type UI
(WAR) ....... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
Servlets (WAR)
.............. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
JSON Servlet (WAR)
.......... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
HIET Parent (POM)
........... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
HIET Big Board
(JAR) ........ SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Core Services:
Site Translator Parent
(POM) .... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Core Services:
Site Translator WS
Client (JAR) . SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
HIET Web Archive
(WAR) ...... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
SOB Parent (POM)
............ SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
SOB Service (AAR)
........... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
SMS Parent (POM)
............ SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
SMS Service (AAR)
........... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
Shared Resources
(JAR) ...... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
PLOT Service (AAR)
.......... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
OCMToCSM Service
(AAR) ...... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
RawMsg Service
(AAR) ........ SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
OCMToCDM Service
(AAR) ...... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
OnOrbit Service
(AAR) ....... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
SP Controls Service
(AAR) ... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
User and Groups
Admin Service (AAR) SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
Security Checker
(WAR) ...... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
satcat-services-axis (WAR) .. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
Enterprise
Deployment (EAR) . SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
Ingest Service
Client (JAR) . SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
CRUD Client (JAR)
........... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
CRUD (EAR)
.................. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
Data Miner
Framework Ingest Oracle Logminer (JAR) SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
Test RSO Duplicate
Detection (JAR) SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Test, Training and
Exercise: Parent
(POM) ...... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Test, Training and
Exercise:
Configuration (EJB) SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Test, Training and
Exercise: CRUD
Model (JAR) .. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Test, Training and
Exercise: Domain
Listener - Context (JAR) SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Test, Training and
Exercise: DAO - EJB
(JAR) ... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Test, Training and
Exercise: CRUD
(JAR) ........ SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Test, Training and
Exercise: Domain
Model - Hibernate (JAR) SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Test, Training and
Exercise: Shared
Resources (JAR) SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Test, Training and
Exercise: CRUD
(EAR) ........ SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS TTX: JAX-WS Services
........................... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS TTX: JAX-WS
Services WSDL/Domain
............... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS TTX: JAX-WS EJB WS
Model (JAR)
................. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS TTX: EJB JAX-WS
Services (JAR)
................. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Satellite Catalog:
Json EJB (JAR)
.............. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS ttx Catalog: JSON
Servlet (WAR)
................ SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS TTX: Content
Repository - Web Archive
(WAR) .... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Test, Training and
Exercise: Servlets
(WAR) .... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Test, Training and
Exercise: UI (WAR)
.......... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS TTX: Enterprise
Deployment (EAR)
............... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Core: Domain Model
- Hibernate (JAR)
........... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Core: Shared
Resources (JAR)
................... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Core: CRUD (EAR)
............................... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Cross Domain
Solutions: Parent (POM)
........... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Cross Domain
Solutions: API (JAR)
.............. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Cross Domain
Solutions: Common (JAR)
........... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Cross Domain
Solutions: Webapp (WAR)
........... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Cross Domain
Solutions: EAR (EAR)
.............. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Gangplank Server:
Parent (POM)
................. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Gangplank Server:
Core (JAR)
................... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Gangplank Server:
Util (JAR)
................... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Layer7: Service
API Management (JAR)
........... SKIPPED
[00:34:50] :[Step 2/3] [INFO] KARNAC: Parent (POM)
............................... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS KARNAC: DAO (JAR)
.............................. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS KARNAC: CRUD (JAR)
............................. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Layer7: Layer7
Custom Assertions
Parent (POM) .. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Layer7: Layer7
Base64 Encoder
Assertion (JAR) .. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Layer7: Layer7
Decrypt Assertion (JAR)
......... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Layer7: Layer7
Delay Assertion (JAR)
........... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Layer7: Layer7
Require Role For
Service Operation Assertion (JAR) SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Layer7: Layer7
Restrict Or Allow
Service Operation (JAR) SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Layer7: Layer7
Dynamic Resources
(ZIPs) ........ SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Gangplank Server:
Camel (JAR)
.................. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Gangplank Server:
SFTP (JAR)
................... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Gangplank Server:
Activemq (JAR)
............... SKIPPED
[00:34:50] :[Step 2/3] [INFO] Bullpen Notification
Client
........................ SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Gangplank Server:
Shareplex
.................... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Gangplank Server:
Server (JAR)
................. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Gangplank Tools:
Parent (POM)
.................. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Gangplank Monitor
Tool (EXE)
................... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Gangplank Config
Tool (EXE)
.................... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Gangplank Server:
Wrapper Config
Generator (JAR) SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Gangplank Server:
Bundle (ZIP)
................. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Gangplank Server:
Installer and
Updater (JAR) .. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Core Service:
Common (JAR)
..................... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Core Service: EJB
Parent (POM)
................. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Core Service:
Email Processor MDB
(EJB) ........ SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Core Service:
History MDB (EJB)
................ SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Core Service: JMS
Notification Monitor
MDB (EJB) SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Core Service: JMS
Property Change
Monitor MDB (EJB) SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Core Service: JMS
Timer MDB (EJB)
.............. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Core Service: AAR
Service Parent (POM)
......... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Core Service:
Collaboration Service
(AAR) ...... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Core Service: JMS
Archive Service
(AAR) ........ SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Core Service: JMS
Utility Service
(AAR) ........ SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Core Service:
Monitor Service (AAR)
............ SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Core Service:
Notification Service
(AAR) ....... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Core Service:
Roaming Profile Service
(AAR) .... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Core Service:
Space Data Source (AAR)
.......... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Core Service:
Space List Service (AAR)
......... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Core Service:
Space UDOP Document
(AAR) ........ SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Core Service:
SPADOC Service (AAR)
............. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Core Service: Web
Application (WAR)
............ SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Core Service:
Enterprise Web
Application (EAR) . SKIPPED
[00:34:50] :[Step 2/3] [INFO] spaDoc stand-alone
SQLCreator (JAR)
................ SKIPPED
[00:34:50] :[Step 2/3] [INFO] onOrbit stand-alone
SQLCreator (JAR)
............... SKIPPED
[00:34:50] :[Step 2/3] [INFO] Catalog Security
Checker: Verifies access
to catalog (JAR) SKIPPED
[00:34:50] :[Step 2/3] [INFO] Property Parser:
Command line version of
Property Parser (JAR) SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Access Control
................................. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS DEC: UI Framework
.............................. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS JAX-WS: Obs Router
JAX-WS (JAR)
................ SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS JAX-WS: SKIWeb
JAX-WS (JAR)
.................... SKIPPED
[00:34:50] :[Step 2/3] [INFO] bullpen-common
..................................... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Bullpen: Data
Admin (WAR)
...................... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Bullpen:
Enterprise Deployment (EAR)
........... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Bullpen: Tools
................................. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Resources: Common
Resources (OSGi)
............. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Resources:
Orchestration Resources
(OSGi) ...... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Orchestration: JMS
Data Source (OSGi)
.......... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Orchestration:
Common Services (OSGi)
.......... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Orchestration:
Bullpen Data Source
(OSGi) ...... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Bullpen: CS3 (OSGi)
............................ SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Bullpen: Eventing
(OSGi)
....................... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Orchestration:
Cross Domain (OSGi)
............. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Observation
Router: Satellite Catalog
Domain Service (OSGi) SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Orchestration:
Satcat Bulk Data (OSGi)
......... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Orchestration:
Connector Bundles (POM)
......... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Orchestration:
AMQP Connector (OSGi)
........... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Orchestration:
CS3-AMQP-JMS (OSGi)
............. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Orchestration: CS3
Connector
................... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Orchestration:
CS3-JMS as ASW Bridge
(OSGi) .... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Orchestration:
CS3-JMS as JMS Bridge
(OSGi) .... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Orchestration:
SKIWeb (OSGi)
................... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Observation
Router: Parent (POM)
............... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Observation
Router: Messaging (OSGi)
........... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Enterprise
Messaging Orchestration
Parent (POM) SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Enterprise
Messaging Management (JAR)
.......... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Enterprise
Messaging Notification
Consumer (OSGi) SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Enterprise
Messaging Mediator (OSGi)
........... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Enterprise
Messaging Mime (BUNDLE)
............. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Orchestration:
Installers (POM)
................ SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Orchestration: ESB
Installer (ZIP)
............. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Orchestration:
ThOR Installer (ZIP)
............ SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS KARNAC: Enterprise
Deployment (EAR)
............ SKIPPED
[00:34:50] :[Step 2/3] [INFO] Visual Magnitude:
Parent (POM)
..................... SKIPPED
[00:34:50] :[Step 2/3] [INFO] Visual Magnitude: Util
(JAR)
....................... SKIPPED
[00:34:50] :[Step 2/3] [INFO] Visual Magnitude: Math
Utilities (JAR)
............. SKIPPED
[00:34:50] :[Step 2/3] [INFO] Visual Magnitude: KOI
(JAR)
........................ SKIPPED
[00:34:50] :[Step 2/3] [INFO] Visual Magnitude:
Command Line Package
(JAR) ....... SKIPPED
[00:34:50] :[Step 2/3] [INFO] Visual Magnitude: KOI
Test (JAR)
................... SKIPPED
[00:34:50] :[Step 2/3] [INFO] Visual Magnitude:
Vismag EJB (JAR)
................. SKIPPED
[00:34:50] :[Step 2/3] [INFO] Visual Magnitude:
Servlets (WAR)
................... SKIPPED
[00:34:50] :[Step 2/3] [INFO] Visual Magnitude: EAR
.............................. SKIPPED
[00:34:50] :[Step 2/3] [INFO] Database Backup
Utility: Bundles Database
backup utility (JAR) SKIPPED
[00:34:50] :[Step 2/3] [INFO] templating-parent
.................................. SKIPPED
[00:34:50] :[Step 2/3] [INFO] templating-api
..................................... SKIPPED
[00:34:50] :[Step 2/3] [INFO] templating-common
.................................. SKIPPED
[00:34:50] :[Step 2/3] [INFO] samples
............................................ SKIPPED
[00:34:50] :[Step 2/3] [INFO] samples-soap
....................................... SKIPPED
[00:34:50] :[Step 2/3] [INFO] service-templates
.................................. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS: Docs Parent (POM)
............................. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS SOAP-UI Projects
............................... SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS: Distribution (POM)
............................ SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Installer: Deploy
Files (ZIP)
.................. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Installer:
Artifacts Parent (POM)
.............. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Installer:
apache24Linux (ZIP)
................. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Installer: Sample
Files (ZIP)
.................. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Installer: IA
Project Files (ZIP)
.............. SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS Installer: Parent
(POM)
........................ SKIPPED
[00:34:50] :[Step 2/3] [INFO] JMS: Patches Parent (POM)
.......................... SKIPPED
[00:34:50] :[Step 2/3] [INFO]
------------------------------------------------------------------------
[00:34:50] :[Step 2/3] [INFO] BUILD FAILURE
[00:34:50] :[Step 2/3] [INFO]
------------------------------------------------------------------------
[00:34:50] :[Step 2/3] [INFO] Total time: 53:47 min
[00:34:50] :[Step 2/3] [INFO] Finished at:
2017-01-20T00:34:50-07:00
[00:34:52] :[Step 2/3] [INFO] Final Memory: 485M/6148M
[00:34:52] :[Step 2/3] [INFO]
------------------------------------------------------------------------
[00:34:52] :[Step 2/3] [Maven Watcher] building
report document...
[00:34:56] :[Step 2/3] [Maven Watcher] building
report document done
[00:34:56] :[Step 2/3] [Maven Watcher] writing report to
F:\temp\buildTmp\maven-build-info.xml
[00:34:57] :[Step 2/3] [Maven Watcher] done writing
report
[00:34:57]W:[Step 2/3] [ERROR] Failed to execute goal
org.jvnet.jax-ws-commons:jaxws-maven-plugin:2.3:wsimport
(bullpen-jax-ws-wsimport) on project bullpen-jax-ws:
'F:\work\5c4a237177bf7a76\jax-ws-resources\bullpen-jax-ws\ta
rget/wsdl/JMS-WS-Eventing/NotificationService.wsdl'
not found. -> [Help 1]
[00:34:57]W:[Step 2/3] [ERROR]
[00:34:57]W:[Step 2/3] [ERROR] To see the full stack
trace of the
errors, re-run Maven with the -e switch.
[00:34:57]W:[Step 2/3] [ERROR] Re-run Maven using
the -X switch to
enable full debug logging.
[00:34:57]W:[Step 2/3] [ERROR]
[00:34:57]W:[Step 2/3] [ERROR] For more information
about the errors and
possible solutions, please read the following articles:
[00:34:57]W:[Step 2/3] [ERROR] [Help 1]
http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
<http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException>
[00:34:57]W:[Step 2/3] [ERROR]
[00:34:57]W:[Step 2/3] [ERROR] After correcting the
problems, you can
resume the build with the command
[00:34:57]W:[Step 2/3] [ERROR] mvn <goals> -rf
:bullpen-jax-ws
Here is the partial pom of the failing module.
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
<http://maven.apache.org/POM/4.0.0>
http://maven.apache.org/xsd/maven-4.0.0.xsd
<http://maven.apache.org/xsd/maven-4.0.0.xsd>"
xmlns="http://maven.apache.org/POM/4.0.0
<http://maven.apache.org/POM/4.0.0>"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance
<http://www.w3.org/2001/XMLSchema-instance>">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.issinc.jms.jax.ws
<http://com.issinc.jms.jax.ws>.resources</groupId>
<artifactId>jax-ws-resources</artifactId>
<version>11.x-SNAPSHOT</version>
</parent>
<artifactId>bullpen-jax-ws</artifactId>
<name>JMS JAX-WS: Bullpen JAX-WS (JAR)</name>
<dependencies>
<dependency>
<groupId>com.issinc.jms.bullpen</groupId>
<artifactId>bullpen-msg</artifactId>
<version>${project.version}</version>
<classifier>wsdl</classifier>
<type>zip</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.issinc.jms.layer7.deployment</groupId>
<artifactId>layer7-static-resources</artifactId>
<classifier>wsdl-JMS-WS-Eventing</classifier>
<type>zip</type>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack-bullpen-msg</id>
<phase>generate-sources</phase>
<goals>
<goal>unpack-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.bui
ld.directory}</outputDirectory>
<includeGroupIds>com.issinc.jm <http://com.issinc.jm>
s.bullpen</includeGroupIds>
<includeArtifactIds>bullpen-ms
g</includeArtifactIds>
<includeClassifiers>wsdl</incl
udeClassifiers>
<includeTypes>zip</includeTypes>
<excludeTransitive>true</excludeTransitive>
<overWriteSnapshots>true</over
WriteSnapshots>
<overWriteReleases>true</overWriteReleases>
</configuration>
</execution>
<execution>
<id>unpack-JMS-WS-Eventing</id>
<phase>generate-sources</phase>
<goals>
<goal>unpack-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.bui
ld.directory}</outputDirectory>
<includeGroupIds>com.issinc.jm <http://com.issinc.jm>
s.layer7.deployment</includeGroupIds>
<includeArtifactIds>layer7-sta
tic-resources</includeArtifactIds>
<includeClassifiers>wsdl-JMS-W
S-Eventing</includeClassifiers>
<includeTypes>zip</includeTypes>
<excludeTransitive>true</excludeTransitive>
<overWriteSnapshots>true</over
WriteSnapshots>
<overWriteReleases>true</overWriteReleases>
</configuration>
</execution>
</executions>
</plugin>
...
On Fri, Jan 20, 2017 at 9:33 AM, Karl Heinz Marbaise
<[email protected] <mailto:[email protected]>
<mailto:[email protected]
<mailto:[email protected]>>> wrote:
Hi,
On 20/01/17 17:07, Bernd Eckenfels wrote:
Any logs (on debug level)?
yes and a concrete error message and of course
(as Bernd already
mentioned log output)...
Just a note: Have you correctly defined a
dependency to the module
which creates the zip/tar/jar from your module
which uses
maven-dependency-plugin:unpack ?
Kind regards
Karl Heinz Marbaise
------------------------------------------------------------
---------
To unsubscribe, e-mail:
[email protected]
<mailto:[email protected]>
<mailto:[email protected]
<mailto:[email protected]>>
For additional commands, e-mail:
[email protected]
<mailto:[email protected]>
<mailto:[email protected]
<mailto:[email protected]>>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]