Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] javax.persistence class cannot be resolved - It is indirectly referenced from required .class files

Yes, that's what I meant. If I have an explicit Require-Bundle, shouldn't Tycho be picking it up? I have a bundle with an explicit Import-Package on javax.persistence and that package is in turn explicitly required with Require-Bundle. Tycho doesn't seem to navigate the dependency.

The chain is NiCECore -> NiCE Data Structures -> JPA.  I was able to get it to build by also adding the EclipseLink jars as explicit Required-Bundles to the NiCE Data Structures plugin. Previously I only had javax.persistence as an Import-Package. I suppose this makes sense - they are JEE and we are building outside of a JEE container.

However, this reveals a second problem, one that I mentioned in an early email. The tests for NiCE Data Structures do not run and they produce an InvocationTargetException (see attached log). I've also included the output from the build, run with -X.

Any thoughts?

Jay

On Mon, Jun 4, 2012 at 3:44 PM, Igor Fedorenko <igor@xxxxxxxxxxxxxx> wrote:
C -> A -> B

OSGi dependencies are not transitive. C will not "see" any packages from
B, you need to add explicit Require-Bundle or Import-Package.

--
Regards,
Igor


On 12-06-04 2:44 PM, Jay Jay Billings wrote:
Igor,

I had some more time to look at this today. Can you answer a quick
question for me?

If bundle A depends on bundle B and bundle C depends on A, shouldn't
Tycho include bundle B in the class path in addition to bundle A when it
is building bundle C?

I have the case above with JPA (EclipseLink) and I ran the build with
the -X flag. The transitive dependency described above is not satisfied.

Jay

On Sat, Jun 2, 2012 at 10:10 AM, Jay Jay Billings
<jayjaybillings@xxxxxxxxx <mailto:jayjaybillings@gmail.com>> wrote:

   Igor,

   Changing the repository and running mvn clean seems to fix the
   problem with the JPA annotations, but now it produces the second
   error I reported when it tries to run the tests (see below). These
   tests run fine in Eclipse.

   Any thoughts? I've confirmed that this happens with both 0.14 and
   0.15. It doesn't say what class it is trying to launch or anything -
   it just fails as soon as it tries to launch the tests.

   Jay


   !ENTRY org.eclipse.osgi 4 0 2012-06-02 10:06:28.190
   !MESSAGE Application error
   !STACK 1
   org.apache.maven.surefire.util.SurefireReflectionException:
   java.lang.reflect.InvocationTargetException; nested exception is
   java.lang.reflect.InvocationTargetException: null
   java.lang.reflect.InvocationTargetException
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at
   sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
            at
   sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
            at java.lang.reflect.Method.invoke(Method.java:616)
            at
   org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray(ReflectionUtils.java:164)
            at
   org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(ProviderFactory.java:110)
            at
   org.apache.maven.surefire.booter.SurefireStarter.invokeProvider(SurefireStarter.java:175)
            at
   org.apache.maven.surefire.booter.SurefireStarter.runSuitesInProcess(SurefireStarter.java:123)
            at
   org.eclipse.tycho.surefire.osgibooter.OsgiSurefireBooter.run(OsgiSurefireBooter.java:84)
            at
   org.eclipse.tycho.surefire.osgibooter.HeadlessTestApplication.run(HeadlessTestApplication.java:21)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at
   sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
            at
   sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
            at java.lang.reflect.Method.invoke(Method.java:616)
            at
   org.eclipse.equinox.internal.app.EclipseAppContainer.callMethodWithException(EclipseAppContainer.java:587)
            at
   org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:198)
            at
   org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
            at
   org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
            at
   org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:353)
            at
   org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:180)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at
   sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
            at
   sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
            at java.lang.reflect.Method.invoke(Method.java:616)
            at
   org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:622)
            at org.eclipse.equinox.launcher.Main.basicRun(Main.java:577)
            at org.eclipse.equinox.launcher.Main.run(Main.java:1410)
            at org.eclipse.equinox.launcher.Main.main(Main.java:1386)
   Caused by: java.lang.NullPointerException
            at java.lang.Class.getAnnotation(Class.java:3048)
            at
   org.apache.maven.surefire.common.junit4.JUnit4TestChecker.isValidJUnit4Test(JUnit4TestChecker.java:63)
            at
   org.apache.maven.surefire.common.junit4.JUnit4TestChecker.accept(JUnit4TestChecker.java:52)
            at
   org.apache.maven.surefire.util.DefaultDirectoryScanner.locateTestClasses(DefaultDirectoryScanner.java:80)
            at
   org.apache.maven.surefire.junit4.JUnit4Provider.scanClassPath(JUnit4Provider.java:174)
            at
   org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:83)
            ... 28 more



   On Fri, Jun 1, 2012 at 8:09 PM, Jay Jay Billings
   <jayjaybillings@xxxxxxxxx <mailto:jayjaybillings@gmail.com>> wrote:

       Thanks Igor. I will let you know what I find and if I get a
       chance I will make a smaller example program.

       Jay


       On Fri, Jun 1, 2012 at 7:57 PM, Igor Fedorenko
       <igor@xxxxxxxxxxxxxx <mailto:igor@xxxxxxxxxxxxxx>> wrote:

           I don't have the time to investigate problems with source
           tree this big,
           but your target platform configuration does not look right.
           I do not
           believe Tycho supports target file with location
           type="Directory", only
           type="InstallableUnit" is supported. From what I can tell,
           the build
           should fail with dependency resolution errors unless you
           have installed
           required dependencies to your local repository. Try running
           the build
           with -Dmaven.repo.local=<some-__empty-dir> and see what happens.


           --
           Regards,
           Igor




           On 12-06-01 6:19 PM, Jay Jay Billings wrote:

               Igor,

               I do not have examples of this happening that are
               independent of my code
               base, but my code is relatively small and completely
               open-source. Is
               that sufficient for a standalone example?

               Access and build instructions:
               http://sourceforge.net/apps/__mediawiki/niceproject/index.__php?title=Getting_NiCE#__Regular_Command_Line_SVN___Access
               <http://sourceforge.net/apps/mediawiki/niceproject/index.php?title=Getting_NiCE#Regular_Command_Line_SVN_Access>
               Repo:
               https://niceproject.svn.__sourceforge.net/svnroot/__niceproject/trunk

               <https://niceproject.svn.sourceforge.net/svnroot/niceproject/trunk>

               The current build has each plugin importing
               javax.persistence in their
               MANIFEST.mf files, which would have to be removed from
               at least one of
               the bundles to produce "[ERROR] The type
               javax.persistence.CascadeType
               cannot be resolved. It is indirectly referenced from
               required .class files."

               If you need something smaller, I can try to put it
               together for you over
               the weekend.

               One point that may be important: we are using EclipseLink
               (org.eclipse.persistence).

               Thanks!

               Jay

               On Fri, Jun 1, 2012 at 5:50 PM, Igor Fedorenko
               <igor@xxxxxxxxxxxxxx <mailto:igor@xxxxxxxxxxxxxx>
               <mailto:igor@xxxxxxxxxxxxxx

               <mailto:igor@xxxxxxxxxxxxxx>>> wrote:

                   Are you able to provide complete standalone example
               that demonstrates
                   the problem?

                   --
                   Regards,
                   Igor


                   On 12-06-01 5:00 PM, Jay Jay Billings wrote:

                       Everyone,

                       I get the error below when trying to use
               EclipseLink in an RCP
                       application with Tycho 0.14 -OR- Tycho 0.13. It
               is resolved by
                       adding
                       javax.persistence to the imported package list
               of all of my bundles,
                       even those that do not explicitly use it.

                       I think this is a regression of this bug:

               http://dev.eclipse.org/____mhonarc/lists/tycho-user/____msg00030.html
               <http://dev.eclipse.org/__mhonarc/lists/tycho-user/__msg00030.html>

               <http://dev.eclipse.org/__mhonarc/lists/tycho-user/__msg00030.html
               <http://dev.eclipse.org/mhonarc/lists/tycho-user/msg00030.html>>


                       The DataComponent class mentioned below is
               annotated with JPA
                       annotations and it is class that is used by
               almost all of the other
                       bundles. I would expect the dependency to be
               resolved transitively.

                       Is there a way to fix this in Tycho?

                       Jay

                       -----

                       [ERROR] Failed to execute goal

                 org.eclipse.tycho:tycho-____compiler-plugin:0.14.0:compile


                       (default-compile)
                       on project gov.ornl.nice.niceclient: Compilation
               failure:
                       Compilation
                       failure:
                       [ERROR]

                 /home/bkj/research/NiCE/____NiCEWorkspace/gov.ornl.nice.____niceclient/src/gov/ornl/nice/____niceclient/iniceclient/____uiwidgets/IExtraInfoWidget.____java:[1,0]
                       [ERROR] package
               gov.ornl.nice.niceclient.____iniceclient.uiwidgets;


                       [ERROR] ^
                       [ERROR] The type javax.persistence.CascadeType
               cannot be
                       resolved. It is
                       indirectly referenced from required .class files
                       [ERROR]

                 /home/bkj/research/NiCE/____NiCEWorkspace/gov.ornl.nice.____niceclient/src/gov/ornl/nice/____niceclient/iniceclient/____uiwidgets/IExtraInfoWidget.____java:[1,0]
                       [ERROR] package
               gov.ornl.nice.niceclient.____iniceclient.uiwidgets;


                       [ERROR] ^
                       [ERROR] The type javax.persistence.FetchType
               cannot be resolved.
                       It is
                       indirectly referenced from required .class files
                       [ERROR]

                 /home/bkj/research/NiCE/____NiCEWorkspace/gov.ornl.nice.____niceclient/src/gov/ornl/nice/____niceclient/eclipseuiwidgets/____NiCEDataComponentSectionPart.____java:[92,0]
                       [ERROR] System.out.println("____DataComponent " +


                       dataComp.getName() + ":");
                       [ERROR] ^^^^^^^^^^^^^^^^^^
                       [ERROR] The type
               javax.persistence.____GenerationType cannot be


                       resolved. It
                       is indirectly referenced from required .class files
                       [ERROR]

                 /home/bkj/research/NiCE/____NiCEWorkspace/gov.ornl.nice.____niceclient/src/gov/ornl/nice/____niceclient/eclipseuiwidgets/____NiCEDataComponentSectionPart.____java:[92,0]
                       [ERROR] System.out.println("____DataComponent " +


                       dataComp.getName() + ":");
                       [ERROR] ^^^^^^^^^^^^^^^^^^
                       [ERROR] The type
               javax.persistence.____InheritanceType cannot be


                       resolved.
                       It is indirectly referenced from required .class
               files
                       [ERROR] 4 problems (4 errors)
                       [ERROR] -> [Help 1]


                       ___________________________________________________

                       tycho-user mailing list
               tycho-user@xxxxxxxxxxx <mailto:tycho-user@xxxxxxxxxxx>
               <mailto:tycho-user@xxxxxxxxxxx
               <mailto:tycho-user@xxxxxxxxxxx>__>
               https://dev.eclipse.org/____mailman/listinfo/tycho-user
               <https://dev.eclipse.org/__mailman/listinfo/tycho-user>
               <https://dev.eclipse.org/__mailman/listinfo/tycho-user
               <https://dev.eclipse.org/mailman/listinfo/tycho-user>>

                   ___________________________________________________

                   tycho-user mailing list
               tycho-user@xxxxxxxxxxx <mailto:tycho-user@xxxxxxxxxxx>
               <mailto:tycho-user@xxxxxxxxxxx
               <mailto:tycho-user@xxxxxxxxxxx>__>
               https://dev.eclipse.org/____mailman/listinfo/tycho-user
               <https://dev.eclipse.org/__mailman/listinfo/tycho-user>


               <https://dev.eclipse.org/__mailman/listinfo/tycho-user
               <https://dev.eclipse.org/mailman/listinfo/tycho-user>>




               _________________________________________________
               tycho-user mailing list
               tycho-user@xxxxxxxxxxx <mailto:tycho-user@xxxxxxxxxxx>
               https://dev.eclipse.org/__mailman/listinfo/tycho-user
               <https://dev.eclipse.org/mailman/listinfo/tycho-user>

           _________________________________________________
           tycho-user mailing list
           tycho-user@xxxxxxxxxxx <mailto:tycho-user@xxxxxxxxxxx>
           https://dev.eclipse.org/__mailman/listinfo/tycho-user
           <https://dev.eclipse.org/mailman/listinfo/tycho-user>






_______________________________________________
tycho-user mailing list
tycho-user@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/tycho-user
_______________________________________________
tycho-user mailing list
tycho-user@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/tycho-user

[INFO] Scanning for projects...
[INFO] Computing target platform for MavenProject: NiCE:gov.ornl.nice.niceclient:2.0.0 @ /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.niceclient/pom.xml
[WARNING] Target location type: Directory is not supported
[WARNING] Target location type: Directory is not supported
[WARNING] Target location type: Directory is not supported
[INFO] Resolving dependencies of MavenProject: NiCE:gov.ornl.nice.niceclient:2.0.0 @ /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.niceclient/pom.xml
[WARNING] The following locally built units have been used to resolve project dependencies:
[WARNING]   gov.ornl.nice.nicecore/2.0.0
[WARNING]   gov.ornl.nice.niceitem/2.0.0
[WARNING]   gov.ornl.nice.nicedatastructures/2.0.0
[WARNING]   gov.ornl.nice.niceclient/2.0.0
[INFO] Resolving class path of MavenProject: NiCE:gov.ornl.nice.niceclient:2.0.0 @ /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.niceclient/pom.xml
[INFO] Computing target platform for MavenProject: NiCE:gov.ornl.nice.niceclient.test:2.0.0 @ /home/bkj/research/NiCE/trunk938/tests/gov.ornl.nice.niceclient.test/pom.xml
[INFO] Resolving dependencies of MavenProject: NiCE:gov.ornl.nice.niceclient.test:2.0.0 @ /home/bkj/research/NiCE/trunk938/tests/gov.ornl.nice.niceclient.test/pom.xml
[WARNING] The following locally built units have been used to resolve project dependencies:
[WARNING]   gov.ornl.nice.nicecore/2.0.0
[WARNING]   gov.ornl.nice.niceclient.test/2.0.0
[WARNING]   gov.ornl.nice.niceitem/2.0.0
[WARNING]   gov.ornl.nice.nicedatastructures/2.0.0
[WARNING]   gov.ornl.nice.niceclient/2.0.0
[INFO] Resolving class path of MavenProject: NiCE:gov.ornl.nice.niceclient.test:2.0.0 @ /home/bkj/research/NiCE/trunk938/tests/gov.ornl.nice.niceclient.test/pom.xml
[INFO] Computing target platform for MavenProject: NiCE:gov.ornl.nice.nicedatastructures:2.0.0 @ /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.nicedatastructures/pom.xml
[INFO] Resolving dependencies of MavenProject: NiCE:gov.ornl.nice.nicedatastructures:2.0.0 @ /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.nicedatastructures/pom.xml
[WARNING] The following locally built units have been used to resolve project dependencies:
[WARNING]   gov.ornl.nice.nicedatastructures/2.0.0
[INFO] Resolving class path of MavenProject: NiCE:gov.ornl.nice.nicedatastructures:2.0.0 @ /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.nicedatastructures/pom.xml
[INFO] Computing target platform for MavenProject: NiCE:gov.ornl.nice.nicedatastructures.test:2.0.0 @ /home/bkj/research/NiCE/trunk938/tests/gov.ornl.nice.nicedatastructures.test/pom.xml
[INFO] Resolving dependencies of MavenProject: NiCE:gov.ornl.nice.nicedatastructures.test:2.0.0 @ /home/bkj/research/NiCE/trunk938/tests/gov.ornl.nice.nicedatastructures.test/pom.xml
[WARNING] The following locally built units have been used to resolve project dependencies:
[WARNING]   gov.ornl.nice.nicedatastructures/2.0.0
[INFO] Resolving class path of MavenProject: NiCE:gov.ornl.nice.nicedatastructures.test:2.0.0 @ /home/bkj/research/NiCE/trunk938/tests/gov.ornl.nice.nicedatastructures.test/pom.xml
[INFO] Computing target platform for MavenProject: NiCE:gov.ornl.nice.nicecore:2.0.0 @ /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.nicecore/pom.xml
[INFO] Resolving dependencies of MavenProject: NiCE:gov.ornl.nice.nicecore:2.0.0 @ /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.nicecore/pom.xml
[WARNING] The following locally built units have been used to resolve project dependencies:
[WARNING]   gov.ornl.nice.nicecore/2.0.0
[WARNING]   gov.ornl.nice.niceitem/2.0.0
[WARNING]   gov.ornl.nice.nicedatastructures/2.0.0
[INFO] Resolving class path of MavenProject: NiCE:gov.ornl.nice.nicecore:2.0.0 @ /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.nicecore/pom.xml
[INFO] Computing target platform for MavenProject: NiCE:gov.ornl.nice.nicecore.test:2.0.0 @ /home/bkj/research/NiCE/trunk938/tests/gov.ornl.nice.nicecore.test/pom.xml
[INFO] Resolving dependencies of MavenProject: NiCE:gov.ornl.nice.nicecore.test:2.0.0 @ /home/bkj/research/NiCE/trunk938/tests/gov.ornl.nice.nicecore.test/pom.xml
[WARNING] The following locally built units have been used to resolve project dependencies:
[WARNING]   gov.ornl.nice.nicecore/2.0.0
[WARNING]   gov.ornl.nice.niceitem/2.0.0
[WARNING]   gov.ornl.nice.nicedatastructures/2.0.0
[INFO] Resolving class path of MavenProject: NiCE:gov.ornl.nice.nicecore.test:2.0.0 @ /home/bkj/research/NiCE/trunk938/tests/gov.ornl.nice.nicecore.test/pom.xml
[INFO] Computing target platform for MavenProject: NiCE:gov.ornl.nice.niceitem:2.0.0 @ /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.niceitem/pom.xml
[INFO] Resolving dependencies of MavenProject: NiCE:gov.ornl.nice.niceitem:2.0.0 @ /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.niceitem/pom.xml
[WARNING] The following locally built units have been used to resolve project dependencies:
[WARNING]   gov.ornl.nice.niceitem/2.0.0
[WARNING]   gov.ornl.nice.nicedatastructures/2.0.0
[INFO] Resolving class path of MavenProject: NiCE:gov.ornl.nice.niceitem:2.0.0 @ /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.niceitem/pom.xml
[INFO] Computing target platform for MavenProject: NiCE:gov.ornl.nice.niceitem.test:2.0.0 @ /home/bkj/research/NiCE/trunk938/tests/gov.ornl.nice.niceitem.test/pom.xml
[INFO] Resolving dependencies of MavenProject: NiCE:gov.ornl.nice.niceitem.test:2.0.0 @ /home/bkj/research/NiCE/trunk938/tests/gov.ornl.nice.niceitem.test/pom.xml
[WARNING] The following locally built units have been used to resolve project dependencies:
[WARNING]   gov.ornl.nice.niceitem/2.0.0
[WARNING]   gov.ornl.nice.nicedatastructures/2.0.0
[INFO] Resolving class path of MavenProject: NiCE:gov.ornl.nice.niceitem.test:2.0.0 @ /home/bkj/research/NiCE/trunk938/tests/gov.ornl.nice.niceitem.test/pom.xml
[INFO] Computing target platform for MavenProject: NiCE:gov.ornl.nice.ampfp:2.0.0 @ /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.ampfp/pom.xml
[INFO] Resolving dependencies of MavenProject: NiCE:gov.ornl.nice.ampfp:2.0.0 @ /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.ampfp/pom.xml
[WARNING] The following locally built units have been used to resolve project dependencies:
[WARNING]   gov.ornl.nice.niceitem/2.0.0
[WARNING]   gov.ornl.nice.nicedatastructures/2.0.0
[INFO] Resolving class path of MavenProject: NiCE:gov.ornl.nice.ampfp:2.0.0 @ /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.ampfp/pom.xml
[INFO] Computing target platform for MavenProject: NiCE:gov.ornl.nice.feature:2.0.0 @ /home/bkj/research/NiCE/trunk938/features/gov.ornl.nice.feature/pom.xml
[WARNING] Target location type: Directory is not supported
[WARNING] Target location type: Directory is not supported
[WARNING] Target location type: Directory is not supported
[INFO] Resolving dependencies of MavenProject: NiCE:gov.ornl.nice.feature:2.0.0 @ /home/bkj/research/NiCE/trunk938/features/gov.ornl.nice.feature/pom.xml
[WARNING] The following locally built units have been used to resolve project dependencies:
[WARNING]   gov.ornl.nice.nicecore/2.0.0
[WARNING]   gov.ornl.nice.niceitem/2.0.0
[WARNING]   gov.ornl.nice.nicedatastructures/2.0.0
[WARNING]   gov.ornl.nice.niceclient/2.0.0
[INFO] Resolving class path of MavenProject: NiCE:gov.ornl.nice.feature:2.0.0 @ /home/bkj/research/NiCE/trunk938/features/gov.ornl.nice.feature/pom.xml
[INFO] Computing target platform for MavenProject: NiCE:gov.ornl.nice.core.feature:2.0.0 @ /home/bkj/research/NiCE/trunk938/features/gov.ornl.nice.core.feature/pom.xml
[INFO] Resolving dependencies of MavenProject: NiCE:gov.ornl.nice.core.feature:2.0.0 @ /home/bkj/research/NiCE/trunk938/features/gov.ornl.nice.core.feature/pom.xml
[WARNING] The following locally built units have been used to resolve project dependencies:
[WARNING]   gov.ornl.nice.nicecore/2.0.0
[WARNING]   gov.ornl.nice.niceitem/2.0.0
[WARNING]   gov.ornl.nice.nicedatastructures/2.0.0
[INFO] Resolving class path of MavenProject: NiCE:gov.ornl.nice.core.feature:2.0.0 @ /home/bkj/research/NiCE/trunk938/features/gov.ornl.nice.core.feature/pom.xml
[INFO] Computing target platform for MavenProject: NiCE:gov.ornl.nice.repository:2.0.0 @ /home/bkj/research/NiCE/trunk938/repository/gov.ornl.nice.repository/pom.xml
[INFO] Resolving dependencies of MavenProject: NiCE:gov.ornl.nice.repository:2.0.0 @ /home/bkj/research/NiCE/trunk938/repository/gov.ornl.nice.repository/pom.xml
[WARNING] The following locally built units have been used to resolve project dependencies:
[WARNING]   gov.ornl.nice.nicecore/2.0.0
[WARNING]   gov.ornl.nice.niceitem/2.0.0
[WARNING]   gov.ornl.nice.nicedatastructures/2.0.0
[WARNING]   gov.ornl.nice.niceclient/2.0.0
[INFO] Resolving class path of MavenProject: NiCE:gov.ornl.nice.repository:2.0.0 @ /home/bkj/research/NiCE/trunk938/repository/gov.ornl.nice.repository/pom.xml
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Build Order:
[INFO] 
[INFO] gov.ornl.nice.build
[INFO] gov.ornl.nice.target.indigo
[INFO] gov.ornl.nice.nicedatastructures
[INFO] gov.ornl.nice.niceitem
[INFO] gov.ornl.nice.nicecore
[INFO] gov.ornl.nice.niceclient
[INFO] gov.ornl.nice.niceclient.test
[INFO] gov.ornl.nice.nicedatastructures.test
[INFO] gov.ornl.nice.nicecore.test
[INFO] gov.ornl.nice.niceitem.test
[INFO] gov.ornl.nice.ampfp
[INFO] NiCE Feature
[INFO] NiCE Core Feature
[INFO] NiCE Infrastructure Product
[INFO]                                                                         
[INFO] ------------------------------------------------------------------------
[INFO] Building gov.ornl.nice.build 2.0.0
[INFO] ------------------------------------------------------------------------
[INFO] 
[INFO] --- maven-antrun-plugin:1.1:run (default) @ gov.ornl.nice.build ---
[INFO] Executing tasks
     [echo] Displaying full POM filename:
     [echo] [pom-filename] /home/bkj/research/NiCE/trunk938/build/gov.ornl.nice.build/hudson/pom.xml
[INFO] Executed tasks
[INFO] 
[INFO] --- maven-install-plugin:2.3.1:install (default-install) @ gov.ornl.nice.build ---
[INFO] Installing /home/bkj/research/NiCE/trunk938/build/gov.ornl.nice.build/hudson/pom.xml to /home/bkj/research/NiCE/alternativeMVNRepo/NiCE/gov.ornl.nice.build/2.0.0/gov.ornl.nice.build-2.0.0.pom
[INFO]                                                                         
[INFO] ------------------------------------------------------------------------
[INFO] Building gov.ornl.nice.target.indigo 2.0.0
[INFO] ------------------------------------------------------------------------
[INFO] 
[INFO] --- maven-antrun-plugin:1.1:run (default) @ gov.ornl.nice.target.indigo ---
[INFO] Executing tasks
     [echo] Displaying full POM filename:
     [echo] [pom-filename] /home/bkj/research/NiCE/trunk938/targets/gov.ornl.nice.target.indigo/pom.xml
[INFO] Executed tasks
[INFO] 
[INFO] --- build-helper-maven-plugin:1.3:attach-artifact (attach-artifacts) @ gov.ornl.nice.target.indigo ---
[INFO] 
[INFO] --- maven-install-plugin:2.3.1:install (default-install) @ gov.ornl.nice.target.indigo ---
[INFO] Installing /home/bkj/research/NiCE/trunk938/targets/gov.ornl.nice.target.indigo/pom.xml to /home/bkj/research/NiCE/alternativeMVNRepo/NiCE/gov.ornl.nice.target.indigo/2.0.0/gov.ornl.nice.target.indigo-2.0.0.pom
[INFO] Installing /home/bkj/research/NiCE/trunk938/targets/gov.ornl.nice.target.indigo/indigo.target to /home/bkj/research/NiCE/alternativeMVNRepo/NiCE/gov.ornl.nice.target.indigo/2.0.0/gov.ornl.nice.target.indigo-2.0.0-indigo.target
[INFO]                                                                         
[INFO] ------------------------------------------------------------------------
[INFO] Building gov.ornl.nice.nicedatastructures 2.0.0
[INFO] ------------------------------------------------------------------------
[INFO] 
[INFO] --- tycho-packaging-plugin:0.15.0:build-qualifier (default-build-qualifier) @ gov.ornl.nice.nicedatastructures ---
[INFO] 
[INFO] --- tycho-packaging-plugin:0.15.0:validate-id (default-validate-id) @ gov.ornl.nice.nicedatastructures ---
[INFO] 
[INFO] --- tycho-packaging-plugin:0.15.0:validate-version (default-validate-version) @ gov.ornl.nice.nicedatastructures ---
[INFO] 
[INFO] --- maven-antrun-plugin:1.1:run (default) @ gov.ornl.nice.nicedatastructures ---
[INFO] Executing tasks
     [echo] Displaying full POM filename:
     [echo] [pom-filename] /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.nicedatastructures/pom.xml
[INFO] Executed tasks
[INFO] 
[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ gov.ornl.nice.nicedatastructures ---
[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] skip non existing resourceDirectory /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.nicedatastructures/src/main/resources
[INFO] 
[INFO] --- tycho-compiler-plugin:0.15.0:compile (default-compile) @ gov.ornl.nice.nicedatastructures ---
[INFO] Compiling 21 source files to /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.nicedatastructures/target/classes
[INFO] 
[INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ gov.ornl.nice.nicedatastructures ---
[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] skip non existing resourceDirectory /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.nicedatastructures/src/test/resources
[INFO] 
[INFO] --- tycho-packaging-plugin:0.15.0:package-plugin (default-package-plugin) @ gov.ornl.nice.nicedatastructures ---
[INFO] Building jar: /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.nicedatastructures/target/gov.ornl.nice.nicedatastructures-2.0.0.jar
[INFO] 
[INFO] --- tycho-p2-plugin:0.15.0:p2-metadata-default (default-p2-metadata-default) @ gov.ornl.nice.nicedatastructures ---
[INFO] 
[INFO] --- maven-install-plugin:2.3.1:install (default-install) @ gov.ornl.nice.nicedatastructures ---
[INFO] Installing /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.nicedatastructures/target/gov.ornl.nice.nicedatastructures-2.0.0.jar to /home/bkj/research/NiCE/alternativeMVNRepo/NiCE/gov.ornl.nice.nicedatastructures/2.0.0/gov.ornl.nice.nicedatastructures-2.0.0.jar
[INFO] Installing /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.nicedatastructures/pom.xml to /home/bkj/research/NiCE/alternativeMVNRepo/NiCE/gov.ornl.nice.nicedatastructures/2.0.0/gov.ornl.nice.nicedatastructures-2.0.0.pom
[INFO] Installing /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.nicedatastructures/target/p2content.xml to /home/bkj/research/NiCE/alternativeMVNRepo/NiCE/gov.ornl.nice.nicedatastructures/2.0.0/gov.ornl.nice.nicedatastructures-2.0.0-p2metadata.xml
[INFO] Installing /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.nicedatastructures/target/p2artifacts.xml to /home/bkj/research/NiCE/alternativeMVNRepo/NiCE/gov.ornl.nice.nicedatastructures/2.0.0/gov.ornl.nice.nicedatastructures-2.0.0-p2artifacts.xml
[INFO] 
[INFO] --- tycho-p2-plugin:0.15.0:update-local-index (default-update-local-index) @ gov.ornl.nice.nicedatastructures ---
[INFO]                                                                         
[INFO] ------------------------------------------------------------------------
[INFO] Building gov.ornl.nice.niceitem 2.0.0
[INFO] ------------------------------------------------------------------------
[INFO] 
[INFO] --- tycho-packaging-plugin:0.15.0:build-qualifier (default-build-qualifier) @ gov.ornl.nice.niceitem ---
[INFO] 
[INFO] --- tycho-packaging-plugin:0.15.0:validate-id (default-validate-id) @ gov.ornl.nice.niceitem ---
[INFO] 
[INFO] --- tycho-packaging-plugin:0.15.0:validate-version (default-validate-version) @ gov.ornl.nice.niceitem ---
[INFO] 
[INFO] --- maven-antrun-plugin:1.1:run (default) @ gov.ornl.nice.niceitem ---
[INFO] Executing tasks
     [echo] Displaying full POM filename:
     [echo] [pom-filename] /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.niceitem/pom.xml
[INFO] Executed tasks
[INFO] 
[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ gov.ornl.nice.niceitem ---
[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] skip non existing resourceDirectory /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.niceitem/src/main/resources
[INFO] 
[INFO] --- tycho-compiler-plugin:0.15.0:compile (default-compile) @ gov.ornl.nice.niceitem ---
[INFO] Compiling 20 source files to /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.niceitem/target/classes
[INFO] 
[INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ gov.ornl.nice.niceitem ---
[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] skip non existing resourceDirectory /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.niceitem/src/test/resources
[INFO] 
[INFO] --- tycho-packaging-plugin:0.15.0:package-plugin (default-package-plugin) @ gov.ornl.nice.niceitem ---
[INFO] Building jar: /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.niceitem/target/gov.ornl.nice.niceitem-2.0.0.jar
[INFO] 
[INFO] --- tycho-p2-plugin:0.15.0:p2-metadata-default (default-p2-metadata-default) @ gov.ornl.nice.niceitem ---
[INFO] 
[INFO] --- maven-install-plugin:2.3.1:install (default-install) @ gov.ornl.nice.niceitem ---
[INFO] Installing /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.niceitem/target/gov.ornl.nice.niceitem-2.0.0.jar to /home/bkj/research/NiCE/alternativeMVNRepo/NiCE/gov.ornl.nice.niceitem/2.0.0/gov.ornl.nice.niceitem-2.0.0.jar
[INFO] Installing /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.niceitem/pom.xml to /home/bkj/research/NiCE/alternativeMVNRepo/NiCE/gov.ornl.nice.niceitem/2.0.0/gov.ornl.nice.niceitem-2.0.0.pom
[INFO] Installing /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.niceitem/target/p2content.xml to /home/bkj/research/NiCE/alternativeMVNRepo/NiCE/gov.ornl.nice.niceitem/2.0.0/gov.ornl.nice.niceitem-2.0.0-p2metadata.xml
[INFO] Installing /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.niceitem/target/p2artifacts.xml to /home/bkj/research/NiCE/alternativeMVNRepo/NiCE/gov.ornl.nice.niceitem/2.0.0/gov.ornl.nice.niceitem-2.0.0-p2artifacts.xml
[INFO] 
[INFO] --- tycho-p2-plugin:0.15.0:update-local-index (default-update-local-index) @ gov.ornl.nice.niceitem ---
[INFO]                                                                         
[INFO] ------------------------------------------------------------------------
[INFO] Building gov.ornl.nice.nicecore 2.0.0
[INFO] ------------------------------------------------------------------------
[INFO] 
[INFO] --- tycho-packaging-plugin:0.15.0:build-qualifier (default-build-qualifier) @ gov.ornl.nice.nicecore ---
[INFO] 
[INFO] --- tycho-packaging-plugin:0.15.0:validate-id (default-validate-id) @ gov.ornl.nice.nicecore ---
[INFO] 
[INFO] --- tycho-packaging-plugin:0.15.0:validate-version (default-validate-version) @ gov.ornl.nice.nicecore ---
[INFO] 
[INFO] --- maven-antrun-plugin:1.1:run (default) @ gov.ornl.nice.nicecore ---
[INFO] Executing tasks
     [echo] Displaying full POM filename:
     [echo] [pom-filename] /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.nicecore/pom.xml
[INFO] Executed tasks
[INFO] 
[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ gov.ornl.nice.nicecore ---
[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] skip non existing resourceDirectory /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.nicecore/src/main/resources
[INFO] 
[INFO] --- tycho-compiler-plugin:0.15.0:compile (default-compile) @ gov.ornl.nice.nicecore ---
[INFO] Compiling 4 source files to /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.nicecore/target/classes
[INFO] 
[INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ gov.ornl.nice.nicecore ---
[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] skip non existing resourceDirectory /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.nicecore/src/test/resources
[INFO] 
[INFO] --- tycho-packaging-plugin:0.15.0:package-plugin (default-package-plugin) @ gov.ornl.nice.nicecore ---
[INFO] Building jar: /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.nicecore/target/gov.ornl.nice.nicecore-2.0.0.jar
[INFO] 
[INFO] --- tycho-p2-plugin:0.15.0:p2-metadata-default (default-p2-metadata-default) @ gov.ornl.nice.nicecore ---
[INFO] 
[INFO] --- maven-install-plugin:2.3.1:install (default-install) @ gov.ornl.nice.nicecore ---
[INFO] Installing /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.nicecore/target/gov.ornl.nice.nicecore-2.0.0.jar to /home/bkj/research/NiCE/alternativeMVNRepo/NiCE/gov.ornl.nice.nicecore/2.0.0/gov.ornl.nice.nicecore-2.0.0.jar
[INFO] Installing /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.nicecore/pom.xml to /home/bkj/research/NiCE/alternativeMVNRepo/NiCE/gov.ornl.nice.nicecore/2.0.0/gov.ornl.nice.nicecore-2.0.0.pom
[INFO] Installing /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.nicecore/target/p2content.xml to /home/bkj/research/NiCE/alternativeMVNRepo/NiCE/gov.ornl.nice.nicecore/2.0.0/gov.ornl.nice.nicecore-2.0.0-p2metadata.xml
[INFO] Installing /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.nicecore/target/p2artifacts.xml to /home/bkj/research/NiCE/alternativeMVNRepo/NiCE/gov.ornl.nice.nicecore/2.0.0/gov.ornl.nice.nicecore-2.0.0-p2artifacts.xml
[INFO] 
[INFO] --- tycho-p2-plugin:0.15.0:update-local-index (default-update-local-index) @ gov.ornl.nice.nicecore ---
[INFO]                                                                         
[INFO] ------------------------------------------------------------------------
[INFO] Building gov.ornl.nice.niceclient 2.0.0
[INFO] ------------------------------------------------------------------------
[INFO] 
[INFO] --- tycho-packaging-plugin:0.15.0:build-qualifier (default-build-qualifier) @ gov.ornl.nice.niceclient ---
[INFO] 
[INFO] --- tycho-packaging-plugin:0.15.0:validate-id (default-validate-id) @ gov.ornl.nice.niceclient ---
[INFO] 
[INFO] --- tycho-packaging-plugin:0.15.0:validate-version (default-validate-version) @ gov.ornl.nice.niceclient ---
[INFO] 
[INFO] --- maven-antrun-plugin:1.1:run (default) @ gov.ornl.nice.niceclient ---
[INFO] Executing tasks
     [echo] Displaying full POM filename:
     [echo] [pom-filename] /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.niceclient/pom.xml
[INFO] Executed tasks
[INFO] 
[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ gov.ornl.nice.niceclient ---
[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] skip non existing resourceDirectory /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.niceclient/src/main/resources
[INFO] 
[INFO] --- tycho-compiler-plugin:0.15.0:compile (default-compile) @ gov.ornl.nice.niceclient ---
[INFO] Compiling 42 source files to /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.niceclient/target/classes
[INFO] 
[INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ gov.ornl.nice.niceclient ---
[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] skip non existing resourceDirectory /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.niceclient/src/test/resources
[INFO] 
[INFO] --- tycho-packaging-plugin:0.15.0:package-plugin (default-package-plugin) @ gov.ornl.nice.niceclient ---
[INFO] Building jar: /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.niceclient/target/gov.ornl.nice.niceclient-2.0.0.jar
[INFO] 
[INFO] --- tycho-p2-plugin:0.15.0:p2-metadata-default (default-p2-metadata-default) @ gov.ornl.nice.niceclient ---
[INFO] 
[INFO] --- maven-install-plugin:2.3.1:install (default-install) @ gov.ornl.nice.niceclient ---
[INFO] Installing /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.niceclient/target/gov.ornl.nice.niceclient-2.0.0.jar to /home/bkj/research/NiCE/alternativeMVNRepo/NiCE/gov.ornl.nice.niceclient/2.0.0/gov.ornl.nice.niceclient-2.0.0.jar
[INFO] Installing /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.niceclient/pom.xml to /home/bkj/research/NiCE/alternativeMVNRepo/NiCE/gov.ornl.nice.niceclient/2.0.0/gov.ornl.nice.niceclient-2.0.0.pom
[INFO] Installing /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.niceclient/target/p2content.xml to /home/bkj/research/NiCE/alternativeMVNRepo/NiCE/gov.ornl.nice.niceclient/2.0.0/gov.ornl.nice.niceclient-2.0.0-p2metadata.xml
[INFO] Installing /home/bkj/research/NiCE/trunk938/src/gov.ornl.nice.niceclient/target/p2artifacts.xml to /home/bkj/research/NiCE/alternativeMVNRepo/NiCE/gov.ornl.nice.niceclient/2.0.0/gov.ornl.nice.niceclient-2.0.0-p2artifacts.xml
[INFO] 
[INFO] --- tycho-p2-plugin:0.15.0:update-local-index (default-update-local-index) @ gov.ornl.nice.niceclient ---
[INFO]                                                                         
[INFO] ------------------------------------------------------------------------
[INFO] Building gov.ornl.nice.niceclient.test 2.0.0
[INFO] ------------------------------------------------------------------------
[INFO] 
[INFO] --- tycho-packaging-plugin:0.15.0:build-qualifier (default-build-qualifier) @ gov.ornl.nice.niceclient.test ---
[INFO] 
[INFO] --- tycho-packaging-plugin:0.15.0:validate-id (default-validate-id) @ gov.ornl.nice.niceclient.test ---
[INFO] 
[INFO] --- tycho-packaging-plugin:0.15.0:validate-version (default-validate-version) @ gov.ornl.nice.niceclient.test ---
[INFO] 
[INFO] --- maven-antrun-plugin:1.1:run (default) @ gov.ornl.nice.niceclient.test ---
[INFO] Executing tasks
     [echo] Displaying full POM filename:
     [echo] [pom-filename] /home/bkj/research/NiCE/trunk938/tests/gov.ornl.nice.niceclient.test/pom.xml
[INFO] Executed tasks
[INFO] 
[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ gov.ornl.nice.niceclient.test ---
[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] skip non existing resourceDirectory /home/bkj/research/NiCE/trunk938/tests/gov.ornl.nice.niceclient.test/src/main/resources
[INFO] 
[INFO] --- tycho-compiler-plugin:0.15.0:compile (default-compile) @ gov.ornl.nice.niceclient.test ---
[INFO] Compiling 21 source files to /home/bkj/research/NiCE/trunk938/tests/gov.ornl.nice.niceclient.test/target/classes
[INFO] 
[INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ gov.ornl.nice.niceclient.test ---
[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] skip non existing resourceDirectory /home/bkj/research/NiCE/trunk938/tests/gov.ornl.nice.niceclient.test/src/test/resources
[INFO] 
[INFO] --- tycho-compiler-plugin:0.15.0:testCompile (default-testCompile) @ gov.ornl.nice.niceclient.test ---
[INFO] Nothing to compile - all classes are up to date
[INFO] 
[INFO] --- tycho-packaging-plugin:0.15.0:package-plugin (default-package-plugin) @ gov.ornl.nice.niceclient.test ---
[INFO] Building jar: /home/bkj/research/NiCE/trunk938/tests/gov.ornl.nice.niceclient.test/target/gov.ornl.nice.niceclient.test-2.0.0.jar
[INFO] 
[INFO] --- tycho-p2-plugin:0.15.0:p2-metadata-default (default-p2-metadata-default) @ gov.ornl.nice.niceclient.test ---
[INFO] 
[INFO] --- tycho-surefire-plugin:0.15.0:test (default-test) @ gov.ornl.nice.niceclient.test ---
[WARNING] The following locally built units have been used to resolve project dependencies:
[WARNING]   gov.ornl.nice.nicecore/2.0.0
[WARNING]   gov.ornl.nice.niceclient.test/2.0.0
[WARNING]   gov.ornl.nice.niceitem/2.0.0
[WARNING]   gov.ornl.nice.nicedatastructures/2.0.0
[WARNING]   gov.ornl.nice.niceclient/2.0.0
[INFO] Expected eclipse log file: /home/bkj/research/NiCE/trunk938/tests/gov.ornl.nice.niceclient.test/target/work/data/.metadata/.log
[INFO] Command line:
	/bin/sh -c cd /home/bkj/research/NiCE/trunk938/tests/gov.ornl.nice.niceclient.test && /usr/lib/jvm/java-1.6.0-openjdk-1.6.0.0.x86_64/jre/bin/java -Dosgi.noShutdown=false -Dosgi.os=linux -Dosgi.ws=gtk -Dosgi.arch=x86_64 -jar /home/bkj/research/NiCE/alternativeMVNRepo/p2/osgi/bundle/org.eclipse.equinox.launcher/1.2.0.v20110502/org.eclipse.equinox.launcher-1.2.0.v20110502.jar -data /home/bkj/research/NiCE/trunk938/tests/gov.ornl.nice.niceclient.test/target/work/data -dev file:/home/bkj/research/NiCE/trunk938/tests/gov.ornl.nice.niceclient.test/target/dev.properties -install /home/bkj/research/NiCE/trunk938/tests/gov.ornl.nice.niceclient.test/target/work -configuration /home/bkj/research/NiCE/trunk938/tests/gov.ornl.nice.niceclient.test/target/work/configuration -application org.eclipse.tycho.surefire.osgibooter.headlesstest -testproperties /home/bkj/research/NiCE/trunk938/tests/gov.ornl.nice.niceclient.test/target/surefire.properties

-------------------------------------------------------
 T E S T S
-------------------------------------------------------
Running gov.ornl.nice.niceclient.test.eclipseuiwidgets.ExtraInfoDialogTester
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.05 sec
Running gov.ornl.nice.niceclient.test.eclipseuiwidgets.EclipseUIWidgetFactoryTester
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003 sec
Running gov.ornl.nice.niceclient.test.eclipseuiwidgets.NiCEFormEditorTester
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.099 sec
Running gov.ornl.nice.niceclient.test.eclipseuiwidgets.EclipseTextEditorTester
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.033 sec
Running gov.ornl.nice.niceclient.test.eclipseuiwidgets.EclipseExtraInfoWidgetTester
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003 sec
Running gov.ornl.nice.niceclient.test.eclipseuiwidgets.EclipseErrorBoxWidgetTester
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec
Running gov.ornl.nice.niceclient.test.eclipseuiwidgets.NiCEDataComponentSectionPartTester
Exception in thread "Thread-6" java.lang.NullPointerException
	at org.eclipse.ui.forms.AbstractFormPart.markStale(AbstractFormPart.java:116)
	at gov.ornl.nice.niceclient.eclipseuiwidgets.NiCEDataComponentSectionPart.update(NiCEDataComponentSectionPart.java:292)
	at gov.ornl.nice.nicedatastructures.form.DataComponent$1.run(DataComponent.java:374)
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.828 sec
Running gov.ornl.nice.niceclient.test.eclipseuiwidgets.NiCESectionPageTester
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.006 sec
Running gov.ornl.nice.niceclient.test.eclipseuiwidgets.NiCETableComponentSectionPartTester
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.029 sec
Running gov.ornl.nice.niceclient.test.eclipseuiwidgets.EclipseFormWidgetTester
Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003 sec
Running gov.ornl.nice.niceclient.test.eclipseuiwidgets.NiCEOutputPageTester
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 sec
Running gov.ornl.nice.niceclient.test.niceclienttests.ItemProcessorTester
FakeCore Message: Call to process() finished.
Item id = 2 , actionName = blend
INiCEClient ItemProcessor Message: Status = Processed
FakeCore Message: Call to process() finished.
Item id = 2 , actionName = NeedsInfo
FakeExtraInfoWidget Message: Displayed.
FakeCore Message: Name = passed
FakeCore Message: Name = passed
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.305 sec
FakeCore Message: Name = passed
Running gov.ornl.nice.niceclient.test.niceclienttests.NiCEClientTester
INiCEClient: Core service set.
INiCEClient Message: Creating Item 1, NiCE Object
INiCEClient Message: Creating Item 2, NiCE Object
INiCEClient Message: Creating Item 3, NiCE Object
INiCEClient Message: Creating Item 4, NiCE Object
INiCEClient: Core service set.
INiCEClient: Core service set.
INiCEClient Message: Creating Item 2, NiCE Object
INiCEClient: Core service set.
FakeCore Message: Name = passed
Name = passed
INiCEClient: Core service set.
INiCEClient Message: Creating Item 2, NiCE Object
INiCEClient Message: Processing Item 2, NiCE Object
FakeCore Message: Call to process() finished.
Item id = 2 , actionName = blend
INiCEClient ItemProcessor Message: Status = Processed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
INiCEClient Message: Processing Item 2, NiCE Object
FakeCore Message: Call to process() finished.
Item id = 2 , actionName = blend
INiCEClient ItemProcessor Message: Status = Processed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
INiCEClient Message: Processing Item 2, NiCE Object
FakeCore Message: Call to process() finished.
Item id = 2 , actionName = NeedsInfo
FakeExtraInfoWidget Message: Displayed.
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
INiCEClient: Core service set.
INiCEClient: Core service set.
INiCEClient: Core service set.
INiCEClient: Core service set.
Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.818 sec

Results :

Tests run: 25, Failures: 0, Errors: 0, Skipped: 0

FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
FakeCore Message: Name = passed
[INFO] All tests passed!
[INFO] 
[INFO] --- maven-install-plugin:2.3.1:install (default-install) @ gov.ornl.nice.niceclient.test ---
[INFO] Installing /home/bkj/research/NiCE/trunk938/tests/gov.ornl.nice.niceclient.test/target/gov.ornl.nice.niceclient.test-2.0.0.jar to /home/bkj/research/NiCE/alternativeMVNRepo/NiCE/gov.ornl.nice.niceclient.test/2.0.0/gov.ornl.nice.niceclient.test-2.0.0.jar
[INFO] Installing /home/bkj/research/NiCE/trunk938/tests/gov.ornl.nice.niceclient.test/pom.xml to /home/bkj/research/NiCE/alternativeMVNRepo/NiCE/gov.ornl.nice.niceclient.test/2.0.0/gov.ornl.nice.niceclient.test-2.0.0.pom
[INFO] Installing /home/bkj/research/NiCE/trunk938/tests/gov.ornl.nice.niceclient.test/target/p2content.xml to /home/bkj/research/NiCE/alternativeMVNRepo/NiCE/gov.ornl.nice.niceclient.test/2.0.0/gov.ornl.nice.niceclient.test-2.0.0-p2metadata.xml
[INFO] Installing /home/bkj/research/NiCE/trunk938/tests/gov.ornl.nice.niceclient.test/target/p2artifacts.xml to /home/bkj/research/NiCE/alternativeMVNRepo/NiCE/gov.ornl.nice.niceclient.test/2.0.0/gov.ornl.nice.niceclient.test-2.0.0-p2artifacts.xml
[INFO] 
[INFO] --- tycho-p2-plugin:0.15.0:update-local-index (default-update-local-index) @ gov.ornl.nice.niceclient.test ---
[INFO]                                                                         
[INFO] ------------------------------------------------------------------------
[INFO] Building gov.ornl.nice.nicedatastructures.test 2.0.0
[INFO] ------------------------------------------------------------------------
[INFO] 
[INFO] --- tycho-packaging-plugin:0.15.0:build-qualifier (default-build-qualifier) @ gov.ornl.nice.nicedatastructures.test ---
[INFO] 
[INFO] --- tycho-packaging-plugin:0.15.0:validate-id (default-validate-id) @ gov.ornl.nice.nicedatastructures.test ---
[INFO] 
[INFO] --- tycho-packaging-plugin:0.15.0:validate-version (default-validate-version) @ gov.ornl.nice.nicedatastructures.test ---
[INFO] 
[INFO] --- maven-antrun-plugin:1.1:run (default) @ gov.ornl.nice.nicedatastructures.test ---
[INFO] Executing tasks
     [echo] Displaying full POM filename:
     [echo] [pom-filename] /home/bkj/research/NiCE/trunk938/tests/gov.ornl.nice.nicedatastructures.test/pom.xml
[INFO] Executed tasks
[INFO] 
[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ gov.ornl.nice.nicedatastructures.test ---
[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] skip non existing resourceDirectory /home/bkj/research/NiCE/trunk938/tests/gov.ornl.nice.nicedatastructures.test/src/main/resources
[INFO] 
[INFO] --- tycho-compiler-plugin:0.15.0:compile (default-compile) @ gov.ornl.nice.nicedatastructures.test ---
[INFO] Compiling 15 source files to /home/bkj/research/NiCE/trunk938/tests/gov.ornl.nice.nicedatastructures.test/target/classes
[INFO] 
[INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ gov.ornl.nice.nicedatastructures.test ---
[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!
[INFO] skip non existing resourceDirectory /home/bkj/research/NiCE/trunk938/tests/gov.ornl.nice.nicedatastructures.test/src/test/resources
[INFO] 
[INFO] --- tycho-compiler-plugin:0.15.0:testCompile (default-testCompile) @ gov.ornl.nice.nicedatastructures.test ---
[INFO] Nothing to compile - all classes are up to date
[INFO] 
[INFO] --- tycho-packaging-plugin:0.15.0:package-plugin (default-package-plugin) @ gov.ornl.nice.nicedatastructures.test ---
[INFO] Building jar: /home/bkj/research/NiCE/trunk938/tests/gov.ornl.nice.nicedatastructures.test/target/gov.ornl.nice.nicedatastructures.test-2.0.0.jar
[INFO] 
[INFO] --- tycho-p2-plugin:0.15.0:p2-metadata-default (default-p2-metadata-default) @ gov.ornl.nice.nicedatastructures.test ---
[INFO] 
[INFO] --- tycho-surefire-plugin:0.15.0:test (default-test) @ gov.ornl.nice.nicedatastructures.test ---
[WARNING] The following locally built units have been used to resolve project dependencies:
[WARNING]   gov.ornl.nice.nicedatastructures/2.0.0
[INFO] Expected eclipse log file: /home/bkj/research/NiCE/trunk938/tests/gov.ornl.nice.nicedatastructures.test/target/work/data/.metadata/.log
[INFO] Command line:
	/bin/sh -c cd /home/bkj/research/NiCE/trunk938/tests/gov.ornl.nice.nicedatastructures.test && /usr/lib/jvm/java-1.6.0-openjdk-1.6.0.0.x86_64/jre/bin/java -Dosgi.noShutdown=false -Dosgi.os=linux -Dosgi.ws=gtk -Dosgi.arch=x86_64 -jar /home/bkj/research/NiCE/alternativeMVNRepo/p2/osgi/bundle/org.eclipse.equinox.launcher/1.2.0.v20110502/org.eclipse.equinox.launcher-1.2.0.v20110502.jar -data /home/bkj/research/NiCE/trunk938/tests/gov.ornl.nice.nicedatastructures.test/target/work/data -dev file:/home/bkj/research/NiCE/trunk938/tests/gov.ornl.nice.nicedatastructures.test/target/dev.properties -install /home/bkj/research/NiCE/trunk938/tests/gov.ornl.nice.nicedatastructures.test/target/work -configuration /home/bkj/research/NiCE/trunk938/tests/gov.ornl.nice.nicedatastructures.test/target/work/configuration -application org.eclipse.tycho.surefire.osgibooter.headlesstest -testproperties /home/bkj/research/NiCE/trunk938/tests/gov.ornl.nice.nicedatastructures.test/target/surefire.properties

-------------------------------------------------------
 T E S T S
-------------------------------------------------------
An error has occurred. See the log file
/home/bkj/research/NiCE/trunk938/tests/gov.ornl.nice.nicedatastructures.test/target/work/configuration/1338841634416.log.
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO] 
[INFO] gov.ornl.nice.build ............................... SUCCESS [1.208s]
[INFO] gov.ornl.nice.target.indigo ....................... SUCCESS [0.840s]
[INFO] gov.ornl.nice.nicedatastructures .................. SUCCESS [3.079s]
[INFO] gov.ornl.nice.niceitem ............................ SUCCESS [1.282s]
[INFO] gov.ornl.nice.nicecore ............................ SUCCESS [1.092s]
[INFO] gov.ornl.nice.niceclient .......................... SUCCESS [2.094s]
[INFO] gov.ornl.nice.niceclient.test ..................... SUCCESS [12.582s]
[INFO] gov.ornl.nice.nicedatastructures.test ............. FAILURE [5.883s]
[INFO] gov.ornl.nice.nicecore.test ....................... SKIPPED
[INFO] gov.ornl.nice.niceitem.test ....................... SKIPPED
[INFO] gov.ornl.nice.ampfp ............................... SKIPPED
[INFO] NiCE Feature ...................................... SKIPPED
[INFO] NiCE Core Feature ................................. SKIPPED
[INFO] NiCE Infrastructure Product ....................... SKIPPED
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 1:18.250s
[INFO] Finished at: Mon Jun 04 16:27:17 EDT 2012
[INFO] Final Memory: 80M/404M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.eclipse.tycho:tycho-surefire-plugin:0.15.0:test (default-test) on project gov.ornl.nice.nicedatastructures.test: An unexpected error occured (return code 13). See log for details. -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
[ERROR] 
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR]   mvn <goals> -rf :gov.ornl.nice.nicedatastructures.test

Attachment: 1338841634416.log
Description: Binary data


Back to the top