Bug 573080 - Introduce SessionLogger service

Change-Id: I9425619c70d89f2277c4b3c834ea4a9318b5c476
Signed-off-by: Dirk Fauth <dirk.fauth@de.bosch.com>
diff --git a/.mvn/extensions.xml b/.mvn/extensions.xml
index 10751ac..a94c9cb 100644
--- a/.mvn/extensions.xml
+++ b/.mvn/extensions.xml
@@ -3,6 +3,6 @@
   <extension>

     <groupId>org.eclipse.tycho.extras</groupId>

     <artifactId>tycho-pomless</artifactId>

-    <version>2.0.0</version>

+    <version>2.3.0</version>

   </extension>

 </extensions>
\ No newline at end of file
diff --git a/.project b/.project
new file mode 100644
index 0000000..370a67d
--- /dev/null
+++ b/.project
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>org.eclipse.app4mc.addon.migration</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.m2e.core.maven2Builder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>org.eclipse.m2e.core.maven2Nature</nature>
+	</natures>
+</projectDescription>
diff --git a/features/org.eclipse.app4mc.amalthea.converters.headless.runtime/feature.xml b/features/org.eclipse.app4mc.amalthea.converters.headless.runtime/feature.xml
index 867e6a2..03c6fed 100644
--- a/features/org.eclipse.app4mc.amalthea.converters.headless.runtime/feature.xml
+++ b/features/org.eclipse.app4mc.amalthea.converters.headless.runtime/feature.xml
@@ -72,32 +72,10 @@
          unpack="false"/>
 
    <plugin
-         id="org.slf4j.api"
-         download-size="0"
-         install-size="0"
-         version="0.0.0"
-         unpack="false"/>
-
-   <plugin
-         id="org.apache.log4j"
-         download-size="0"
-         install-size="0"
-         version="0.0.0"
-         unpack="false"/>
-
-   <plugin
          id="org.eclipse.equinox.common"
          download-size="0"
          install-size="0"
          version="0.0.0"
          unpack="false"/>
 
-   <plugin
-         id="org.slf4j.impl.log4j12"
-         download-size="0"
-         install-size="0"
-         version="0.0.0"
-         fragment="true"
-         unpack="false"/>
-
 </feature>
diff --git a/features/org.eclipse.app4mc.amalthea.converters.headless/feature.xml b/features/org.eclipse.app4mc.amalthea.converters.headless/feature.xml
index 6c5e424..a45ea69 100644
--- a/features/org.eclipse.app4mc.amalthea.converters.headless/feature.xml
+++ b/features/org.eclipse.app4mc.amalthea.converters.headless/feature.xml
@@ -128,14 +128,6 @@
          unpack="false"/>
 
    <plugin
-         id="org.eclipse.app4mc.amalthea.converters.log4j.configuration"
-         download-size="0"
-         install-size="0"
-         version="0.0.0"
-         fragment="true"
-         unpack="false"/>
-
-   <plugin
          id="org.jaxen"
          download-size="0"
          install-size="0"
diff --git a/features/org.eclipse.app4mc.amalthea.converters.sdk/build.properties b/features/org.eclipse.app4mc.amalthea.converters.sdk/build.properties
index 09cb93b..3a1bdfa 100644
--- a/features/org.eclipse.app4mc.amalthea.converters.sdk/build.properties
+++ b/features/org.eclipse.app4mc.amalthea.converters.sdk/build.properties
@@ -1,3 +1,5 @@
 bin.includes = feature.xml,\
-               epl-2.0.html
-src.includes = epl-2.0.html
+               epl-2.0.html,\
+               about.html
+src.includes = epl-2.0.html,\
+               about.html
diff --git a/features/org.eclipse.app4mc.amalthea.converters.sdk/feature.xml b/features/org.eclipse.app4mc.amalthea.converters.sdk/feature.xml
index 00a8817..5cddd04 100644
--- a/features/org.eclipse.app4mc.amalthea.converters.sdk/feature.xml
+++ b/features/org.eclipse.app4mc.amalthea.converters.sdk/feature.xml
@@ -151,14 +151,6 @@
          install-size="0"

          version="0.0.0"

          unpack="false"/>

-   

-   <plugin

-         id="org.eclipse.app4mc.amalthea.converters.log4j.configuration.source"

-         download-size="0"

-         install-size="0"

-         version="0.0.0"

-         fragment="true"

-         unpack="false"/>

 

    <plugin

          id="org.jaxen.source"

diff --git a/features/org.eclipse.app4mc.amalthea.converters/build.properties b/features/org.eclipse.app4mc.amalthea.converters/build.properties
index 412b4ee..5d7cfc9 100644
--- a/features/org.eclipse.app4mc.amalthea.converters/build.properties
+++ b/features/org.eclipse.app4mc.amalthea.converters/build.properties
@@ -1,3 +1,5 @@
 bin.includes = feature.xml,\

-               epl-2.0.html

-src.includes = epl-2.0.html

+               epl-2.0.html,\

+               about.html

+src.includes = epl-2.0.html,\

+               about.html

diff --git a/features/org.eclipse.app4mc.amalthea.converters/feature.xml b/features/org.eclipse.app4mc.amalthea.converters/feature.xml
index 1a191fd..c2c4e4f 100644
--- a/features/org.eclipse.app4mc.amalthea.converters/feature.xml
+++ b/features/org.eclipse.app4mc.amalthea.converters/feature.xml
@@ -28,7 +28,6 @@
       <import plugin="org.eclipse.jface.databinding"/>

       <import plugin="org.eclipse.help"/>

       <import plugin="org.eclipse.core.expressions"/>

-      <import plugin="org.slf4j.api"/>

    </requires>

 

    <plugin

diff --git a/features/org.eclipse.app4mc.utils.headless.sdk/.project b/features/org.eclipse.app4mc.utils.headless.sdk/.project
new file mode 100644
index 0000000..92631f6
--- /dev/null
+++ b/features/org.eclipse.app4mc.utils.headless.sdk/.project
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>org.eclipse.app4mc.utils.headless.sdk</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.pde.FeatureBuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>org.eclipse.pde.FeatureNature</nature>
+	</natures>
+</projectDescription>
diff --git a/features/org.eclipse.app4mc.utils.headless.sdk/about.html b/features/org.eclipse.app4mc.utils.headless.sdk/about.html
new file mode 100644
index 0000000..164f781
--- /dev/null
+++ b/features/org.eclipse.app4mc.utils.headless.sdk/about.html
@@ -0,0 +1,36 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>About</title>
+</head>
+<body lang="EN-US">
+	<h2>About This Content</h2>
+
+	<p>November 30, 2017</p>
+	<h3>License</h3>
+
+	<p>
+		The Eclipse Foundation makes available all content in this plug-in
+		(&quot;Content&quot;). Unless otherwise indicated below, the Content
+		is provided to you under the terms and conditions of the Eclipse
+		Public License Version 2.0 (&quot;EPL&quot;). A copy of the EPL is
+		available at <a href="http://www.eclipse.org/legal/epl-2.0">http://www.eclipse.org/legal/epl-2.0</a>.
+		For purposes of the EPL, &quot;Program&quot; will mean the Content.
+	</p>
+
+	<p>
+		If you did not receive this Content directly from the Eclipse
+		Foundation, the Content is being redistributed by another party
+		(&quot;Redistributor&quot;) and different terms and conditions may
+		apply to your use of any object code in the Content. Check the
+		Redistributor's license that was provided with the Content. If no such
+		license exists, contact the Redistributor. Unless otherwise indicated
+		below, the terms and conditions of the EPL still apply to any source
+		code in the Content and such source code may be obtained at <a
+			href="http://www.eclipse.org/">http://www.eclipse.org</a>.
+	</p>
+
+</body>
+</html>
\ No newline at end of file
diff --git a/features/org.eclipse.app4mc.utils.headless.sdk/build.properties b/features/org.eclipse.app4mc.utils.headless.sdk/build.properties
new file mode 100644
index 0000000..9c09432
--- /dev/null
+++ b/features/org.eclipse.app4mc.utils.headless.sdk/build.properties
@@ -0,0 +1,5 @@
+bin.includes = feature.xml,\
+               about.html,\
+               epl-2.0.html
+src.includes = about.html,\
+               epl-2.0.html
diff --git a/features/org.eclipse.app4mc.utils.headless.sdk/epl-2.0.html b/features/org.eclipse.app4mc.utils.headless.sdk/epl-2.0.html
new file mode 100644
index 0000000..637a181
--- /dev/null
+++ b/features/org.eclipse.app4mc.utils.headless.sdk/epl-2.0.html
@@ -0,0 +1,300 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+  <head>
+    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+    <title>Eclipse Public License - Version 2.0</title>
+    <style type="text/css">
+      body {
+        margin: 1.5em 3em;
+      }
+      h1{
+        font-size:1.5em;
+      }
+      h2{
+        font-size:1em;
+        margin-bottom:0.5em;
+        margin-top:1em;
+      }
+      p {
+        margin-top:  0.5em;
+        margin-bottom: 0.5em;
+      }
+      ul, ol{
+        list-style-type:none;
+      }
+    </style>
+  </head>
+  <body>
+    <h1>Eclipse Public License - v 2.0</h1>
+    <p>THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+      PUBLIC LICENSE (&ldquo;AGREEMENT&rdquo;). ANY USE, REPRODUCTION OR DISTRIBUTION
+      OF THE PROGRAM CONSTITUTES RECIPIENT&#039;S ACCEPTANCE OF THIS AGREEMENT.
+    </p>
+    <h2 id="definitions">1. DEFINITIONS</h2>
+    <p>&ldquo;Contribution&rdquo; means:</p>
+    <ul>
+      <li>a) in the case of the initial Contributor, the initial content
+        Distributed under this Agreement, and
+      </li>
+      <li>
+        b) in the case of each subsequent Contributor:
+        <ul>
+          <li>i) changes to the Program, and</li>
+          <li>ii) additions to the Program;</li>
+        </ul>
+        where such changes and/or additions to the Program originate from
+        and are Distributed by that particular Contributor. A Contribution
+        &ldquo;originates&rdquo; from a Contributor if it was added to the Program by such
+        Contributor itself or anyone acting on such Contributor&#039;s behalf.
+        Contributions do not include changes or additions to the Program that
+        are not Modified Works.
+      </li>
+    </ul>
+    <p>&ldquo;Contributor&rdquo; means any person or entity that Distributes the Program.</p>
+    <p>&ldquo;Licensed Patents&rdquo; mean patent claims licensable by a Contributor which
+      are necessarily infringed by the use or sale of its Contribution alone
+      or when combined with the Program.
+    </p>
+    <p>&ldquo;Program&rdquo; means the Contributions Distributed in accordance with this
+      Agreement.
+    </p>
+    <p>&ldquo;Recipient&rdquo; means anyone who receives the Program under this Agreement
+      or any Secondary License (as applicable), including Contributors.
+    </p>
+    <p>&ldquo;Derivative Works&rdquo; shall mean any work, whether in Source Code or other
+      form, that is based on (or derived from) the Program and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship.
+    </p>
+    <p>&ldquo;Modified Works&rdquo; shall mean any work in Source Code or other form that
+      results from an addition to, deletion from, or modification of the
+      contents of the Program, including, for purposes of clarity any new file
+      in Source Code form that contains any contents of the Program. Modified
+      Works shall not include works that contain only declarations, interfaces,
+      types, classes, structures, or files of the Program solely in each case
+      in order to link to, bind by name, or subclass the Program or Modified
+      Works thereof.
+    </p>
+    <p>&ldquo;Distribute&rdquo; means the acts of a) distributing or b) making available
+      in any manner that enables the transfer of a copy.
+    </p>
+    <p>&ldquo;Source Code&rdquo; means the form of a Program preferred for making
+      modifications, including but not limited to software source code,
+      documentation source, and configuration files.
+    </p>
+    <p>&ldquo;Secondary License&rdquo; means either the GNU General Public License,
+      Version 2.0, or any later versions of that license, including any
+      exceptions or additional permissions as identified by the initial
+      Contributor.
+    </p>
+    <h2 id="grant-of-rights">2. GRANT OF RIGHTS</h2>
+    <ul>
+      <li>a) Subject to the terms of this Agreement, each Contributor hereby
+        grants Recipient a non-exclusive, worldwide, royalty-free copyright
+        license to reproduce, prepare Derivative Works of, publicly display,
+        publicly perform, Distribute and sublicense the Contribution of such
+        Contributor, if any, and such Derivative Works.
+      </li>
+      <li>b) Subject to the terms of this Agreement, each Contributor hereby
+        grants Recipient a non-exclusive, worldwide, royalty-free patent
+        license under Licensed Patents to make, use, sell, offer to sell,
+        import and otherwise transfer the Contribution of such Contributor,
+        if any, in Source Code or other form. This patent license shall
+        apply to the combination of the Contribution and the Program if,
+        at the time the Contribution is added by the Contributor, such
+        addition of the Contribution causes such combination to be covered
+        by the Licensed Patents. The patent license shall not apply to any
+        other combinations which include the Contribution. No hardware per
+        se is licensed hereunder.
+      </li>
+      <li>c) Recipient understands that although each Contributor grants the
+        licenses to its Contributions set forth herein, no assurances are
+        provided by any Contributor that the Program does not infringe the
+        patent or other intellectual property rights of any other entity.
+        Each Contributor disclaims any liability to Recipient for claims
+        brought by any other entity based on infringement of intellectual
+        property rights or otherwise. As a condition to exercising the rights
+        and licenses granted hereunder, each Recipient hereby assumes sole
+        responsibility to secure any other intellectual property rights needed,
+        if any. For example, if a third party patent license is required to
+        allow Recipient to Distribute the Program, it is Recipient&#039;s
+        responsibility to acquire that license before distributing the Program.
+      </li>
+      <li>d) Each Contributor represents that to its knowledge it has sufficient
+        copyright rights in its Contribution, if any, to grant the copyright
+        license set forth in this Agreement.
+      </li>
+      <li>e) Notwithstanding the terms of any Secondary License, no Contributor
+        makes additional grants to any Recipient (other than those set forth
+        in this Agreement) as a result of such Recipient&#039;s receipt of the
+        Program under the terms of a Secondary License (if permitted under
+        the terms of Section 3).
+      </li>
+    </ul>
+    <h2 id="requirements">3. REQUIREMENTS</h2>
+    <p>3.1 If a Contributor Distributes the Program in any form, then:</p>
+    <ul>
+      <li>a) the Program must also be made available as Source Code, in
+        accordance with section 3.2, and the Contributor must accompany
+        the Program with a statement that the Source Code for the Program
+        is available under this Agreement, and informs Recipients how to
+        obtain it in a reasonable manner on or through a medium customarily
+        used for software exchange; and
+      </li>
+      <li>
+        b) the Contributor may Distribute the Program under a license
+        different than this Agreement, provided that such license:
+        <ul>
+          <li>i) effectively disclaims on behalf of all other Contributors all
+            warranties and conditions, express and implied, including warranties
+            or conditions of title and non-infringement, and implied warranties
+            or conditions of merchantability and fitness for a particular purpose;
+          </li>
+          <li>ii) effectively excludes on behalf of all other Contributors all
+            liability for damages, including direct, indirect, special, incidental
+            and consequential damages, such as lost profits;
+          </li>
+          <li>iii) does not attempt to limit or alter the recipients&#039; rights in the
+            Source Code under section 3.2; and
+          </li>
+          <li>iv) requires any subsequent distribution of the Program by any party
+            to be under a license that satisfies the requirements of this section 3.
+          </li>
+        </ul>
+      </li>
+    </ul>
+    <p>3.2 When the Program is Distributed as Source Code:</p>
+    <ul>
+      <li>a) it must be made available under this Agreement, or if the Program (i)
+        is combined with other material in a separate file or files made available
+        under a Secondary License, and (ii) the initial Contributor attached to
+        the Source Code the notice described in Exhibit A of this Agreement,
+        then the Program may be made available under the terms of such
+        Secondary Licenses, and
+      </li>
+      <li>b) a copy of this Agreement must be included with each copy of the Program.</li>
+    </ul>
+    <p>3.3 Contributors may not remove or alter any copyright, patent, trademark,
+      attribution notices, disclaimers of warranty, or limitations of liability
+      (&lsquo;notices&rsquo;) contained within the Program from any copy of the Program which
+      they Distribute, provided that Contributors may add their own appropriate
+      notices.
+    </p>
+    <h2 id="commercial-distribution">4. COMMERCIAL DISTRIBUTION</h2>
+    <p>Commercial distributors of software may accept certain responsibilities
+      with respect to end users, business partners and the like. While this
+      license is intended to facilitate the commercial use of the Program, the
+      Contributor who includes the Program in a commercial product offering should
+      do so in a manner which does not create potential liability for other
+      Contributors. Therefore, if a Contributor includes the Program in a
+      commercial product offering, such Contributor (&ldquo;Commercial Contributor&rdquo;)
+      hereby agrees to defend and indemnify every other Contributor
+      (&ldquo;Indemnified Contributor&rdquo;) against any losses, damages and costs
+      (collectively &ldquo;Losses&rdquo;) arising from claims, lawsuits and other legal actions
+      brought by a third party against the Indemnified Contributor to the extent
+      caused by the acts or omissions of such Commercial Contributor in connection
+      with its distribution of the Program in a commercial product offering.
+      The obligations in this section do not apply to any claims or Losses relating
+      to any actual or alleged intellectual property infringement. In order to
+      qualify, an Indemnified Contributor must: a) promptly notify the
+      Commercial Contributor in writing of such claim, and b) allow the Commercial
+      Contributor to control, and cooperate with the Commercial Contributor in,
+      the defense and any related settlement negotiations. The Indemnified
+      Contributor may participate in any such claim at its own expense.
+    </p>
+    <p>For example, a Contributor might include the Program
+      in a commercial product offering, Product X. That Contributor is then a
+      Commercial Contributor. If that Commercial Contributor then makes performance
+      claims, or offers warranties related to Product X, those performance claims
+      and warranties are such Commercial Contributor&#039;s responsibility alone.
+      Under this section, the Commercial Contributor would have to defend claims
+      against the other Contributors related to those performance claims and
+      warranties, and if a court requires any other Contributor to pay any damages
+      as a result, the Commercial Contributor must pay those damages.
+    </p>
+    <h2 id="warranty">5. NO WARRANTY</h2>
+    <p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT PERMITTED
+      BY APPLICABLE LAW, THE PROGRAM IS PROVIDED ON AN &ldquo;AS IS&rdquo; BASIS, WITHOUT
+      WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING,
+      WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
+      MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is
+      solely responsible for determining the appropriateness of using and
+      distributing the Program and assumes all risks associated with its
+      exercise of rights under this Agreement, including but not limited to the
+      risks and costs of program errors, compliance with applicable laws, damage
+      to or loss of data, programs or equipment, and unavailability or
+      interruption of operations.
+    </p>
+    <h2 id="disclaimer">6. DISCLAIMER OF LIABILITY</h2>
+    <p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT PERMITTED
+      BY APPLICABLE LAW, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY
+      LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
+      OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS),
+      HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+      LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+      OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS
+      GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+    </p>
+    <h2 id="general">7. GENERAL</h2>
+    <p>If any provision of this Agreement is invalid or unenforceable under
+      applicable law, it shall not affect the validity or enforceability of the
+      remainder of the terms of this Agreement, and without further action by the
+      parties hereto, such provision shall be reformed to the minimum extent
+      necessary to make such provision valid and enforceable.
+    </p>
+    <p>If Recipient institutes patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Program itself
+      (excluding combinations of the Program with other software or hardware)
+      infringes such Recipient&#039;s patent(s), then such Recipient&#039;s rights granted
+      under Section 2(b) shall terminate as of the date such litigation is filed.
+    </p>
+    <p>All Recipient&#039;s rights under this Agreement shall terminate if it fails to
+      comply with any of the material terms or conditions of this Agreement and
+      does not cure such failure in a reasonable period of time after becoming
+      aware of such noncompliance. If all Recipient&#039;s rights under this Agreement
+      terminate, Recipient agrees to cease use and distribution of the Program
+      as soon as reasonably practicable. However, Recipient&#039;s obligations under
+      this Agreement and any licenses granted by Recipient relating to the
+      Program shall continue and survive.
+    </p>
+    <p>Everyone is permitted to copy and distribute copies of this Agreement,
+      but in order to avoid inconsistency the Agreement is copyrighted and may
+      only be modified in the following manner. The Agreement Steward reserves
+      the right to publish new versions (including revisions) of this Agreement
+      from time to time. No one other than the Agreement Steward has the right
+      to modify this Agreement. The Eclipse Foundation is the initial Agreement
+      Steward. The Eclipse Foundation may assign the responsibility to serve as
+      the Agreement Steward to a suitable separate entity. Each new version of
+      the Agreement will be given a distinguishing version number. The Program
+      (including Contributions) may always be Distributed subject to the version
+      of the Agreement under which it was received. In addition, after a new
+      version of the Agreement is published, Contributor may elect to Distribute
+      the Program (including its Contributions) under the new version.
+    </p>
+    <p>Except as expressly stated in Sections 2(a) and 2(b) above, Recipient
+      receives no rights or licenses to the intellectual property of any
+      Contributor under this Agreement, whether expressly, by implication,
+      estoppel or otherwise. All rights in the Program not expressly granted
+      under this Agreement are reserved. Nothing in this Agreement is intended
+      to be enforceable by any entity that is not a Contributor or Recipient.
+      No third-party beneficiary rights are created under this Agreement.
+    </p>
+    <h2 id="exhibit-a">Exhibit A &ndash; Form of Secondary Licenses Notice</h2>
+    <p>&ldquo;This Source Code may also be made available under the following 
+    	Secondary Licenses when the conditions for such availability set forth 
+    	in the Eclipse Public License, v. 2.0 are satisfied: {name license(s),
+    	version(s), and exceptions or additional permissions here}.&rdquo;
+    </p>
+    <blockquote>
+      <p>Simply including a copy of this Agreement, including this Exhibit A
+        is not sufficient to license the Source Code under Secondary Licenses.
+      </p>
+      <p>If it is not possible or desirable to put the notice in a particular file,
+        then You may include the notice in a location (such as a LICENSE file in a
+        relevant directory) where a recipient would be likely to look for
+        such a notice.
+      </p>
+      <p>You may add additional accurate notices of copyright ownership.</p>
+    </blockquote>
+  </body>
+</html>
\ No newline at end of file
diff --git a/features/org.eclipse.app4mc.utils.headless.sdk/feature.xml b/features/org.eclipse.app4mc.utils.headless.sdk/feature.xml
new file mode 100644
index 0000000..b655d4a
--- /dev/null
+++ b/features/org.eclipse.app4mc.utils.headless.sdk/feature.xml
@@ -0,0 +1,48 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+      id="org.eclipse.app4mc.utils.headless.sdk"
+      label="APP4MC Utils Headless SDK"
+      version="1.1.0.qualifier"
+      provider-name="Eclipse APP4MC"
+      license-feature="org.eclipse.license"
+      license-feature-version="2.0.2.qualifier">
+
+   <description url="https://projects.eclipse.org/projects/technology.app4mc">
+      APP4MC Utilities that can be used outside a running Eclipse instance, e.g. a SessionLogger to log to a file or the console.
+The SDK feature also contains the sources and is intended to be used in a development environment.
+   </description>
+
+   <copyright url="https://projects.eclipse.org/projects/technology.app4mc">
+      (c) Copyright 2021 Eclipse APP4MC contributors and others.
+   </copyright>
+
+   <license url="http://www.example.com/license">
+      [Enter License Description here.]
+   </license>
+
+   <includes
+         id="org.eclipse.app4mc.utils.headless"
+         version="0.0.0"/>
+
+   <plugin
+         id="org.eclipse.app4mc.util.sessionlog.source"
+         download-size="0"
+         install-size="0"
+         version="0.0.0"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.app4mc.util.sessionlog.console.source"
+         download-size="0"
+         install-size="0"
+         version="0.0.0"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.app4mc.util.sessionlog.file.source"
+         download-size="0"
+         install-size="0"
+         version="0.0.0"
+         unpack="false"/>
+
+</feature>
diff --git a/features/org.eclipse.app4mc.utils.headless/.project b/features/org.eclipse.app4mc.utils.headless/.project
new file mode 100644
index 0000000..6cea909
--- /dev/null
+++ b/features/org.eclipse.app4mc.utils.headless/.project
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>org.eclipse.app4mc.utils.headless</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.pde.FeatureBuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>org.eclipse.pde.FeatureNature</nature>
+	</natures>
+</projectDescription>
diff --git a/features/org.eclipse.app4mc.utils.headless/about.html b/features/org.eclipse.app4mc.utils.headless/about.html
new file mode 100644
index 0000000..164f781
--- /dev/null
+++ b/features/org.eclipse.app4mc.utils.headless/about.html
@@ -0,0 +1,36 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>About</title>
+</head>
+<body lang="EN-US">
+	<h2>About This Content</h2>
+
+	<p>November 30, 2017</p>
+	<h3>License</h3>
+
+	<p>
+		The Eclipse Foundation makes available all content in this plug-in
+		(&quot;Content&quot;). Unless otherwise indicated below, the Content
+		is provided to you under the terms and conditions of the Eclipse
+		Public License Version 2.0 (&quot;EPL&quot;). A copy of the EPL is
+		available at <a href="http://www.eclipse.org/legal/epl-2.0">http://www.eclipse.org/legal/epl-2.0</a>.
+		For purposes of the EPL, &quot;Program&quot; will mean the Content.
+	</p>
+
+	<p>
+		If you did not receive this Content directly from the Eclipse
+		Foundation, the Content is being redistributed by another party
+		(&quot;Redistributor&quot;) and different terms and conditions may
+		apply to your use of any object code in the Content. Check the
+		Redistributor's license that was provided with the Content. If no such
+		license exists, contact the Redistributor. Unless otherwise indicated
+		below, the terms and conditions of the EPL still apply to any source
+		code in the Content and such source code may be obtained at <a
+			href="http://www.eclipse.org/">http://www.eclipse.org</a>.
+	</p>
+
+</body>
+</html>
\ No newline at end of file
diff --git a/features/org.eclipse.app4mc.utils.headless/build.properties b/features/org.eclipse.app4mc.utils.headless/build.properties
new file mode 100644
index 0000000..9c09432
--- /dev/null
+++ b/features/org.eclipse.app4mc.utils.headless/build.properties
@@ -0,0 +1,5 @@
+bin.includes = feature.xml,\
+               about.html,\
+               epl-2.0.html
+src.includes = about.html,\
+               epl-2.0.html
diff --git a/features/org.eclipse.app4mc.utils.headless/epl-2.0.html b/features/org.eclipse.app4mc.utils.headless/epl-2.0.html
new file mode 100644
index 0000000..637a181
--- /dev/null
+++ b/features/org.eclipse.app4mc.utils.headless/epl-2.0.html
@@ -0,0 +1,300 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+  <head>
+    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+    <title>Eclipse Public License - Version 2.0</title>
+    <style type="text/css">
+      body {
+        margin: 1.5em 3em;
+      }
+      h1{
+        font-size:1.5em;
+      }
+      h2{
+        font-size:1em;
+        margin-bottom:0.5em;
+        margin-top:1em;
+      }
+      p {
+        margin-top:  0.5em;
+        margin-bottom: 0.5em;
+      }
+      ul, ol{
+        list-style-type:none;
+      }
+    </style>
+  </head>
+  <body>
+    <h1>Eclipse Public License - v 2.0</h1>
+    <p>THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+      PUBLIC LICENSE (&ldquo;AGREEMENT&rdquo;). ANY USE, REPRODUCTION OR DISTRIBUTION
+      OF THE PROGRAM CONSTITUTES RECIPIENT&#039;S ACCEPTANCE OF THIS AGREEMENT.
+    </p>
+    <h2 id="definitions">1. DEFINITIONS</h2>
+    <p>&ldquo;Contribution&rdquo; means:</p>
+    <ul>
+      <li>a) in the case of the initial Contributor, the initial content
+        Distributed under this Agreement, and
+      </li>
+      <li>
+        b) in the case of each subsequent Contributor:
+        <ul>
+          <li>i) changes to the Program, and</li>
+          <li>ii) additions to the Program;</li>
+        </ul>
+        where such changes and/or additions to the Program originate from
+        and are Distributed by that particular Contributor. A Contribution
+        &ldquo;originates&rdquo; from a Contributor if it was added to the Program by such
+        Contributor itself or anyone acting on such Contributor&#039;s behalf.
+        Contributions do not include changes or additions to the Program that
+        are not Modified Works.
+      </li>
+    </ul>
+    <p>&ldquo;Contributor&rdquo; means any person or entity that Distributes the Program.</p>
+    <p>&ldquo;Licensed Patents&rdquo; mean patent claims licensable by a Contributor which
+      are necessarily infringed by the use or sale of its Contribution alone
+      or when combined with the Program.
+    </p>
+    <p>&ldquo;Program&rdquo; means the Contributions Distributed in accordance with this
+      Agreement.
+    </p>
+    <p>&ldquo;Recipient&rdquo; means anyone who receives the Program under this Agreement
+      or any Secondary License (as applicable), including Contributors.
+    </p>
+    <p>&ldquo;Derivative Works&rdquo; shall mean any work, whether in Source Code or other
+      form, that is based on (or derived from) the Program and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship.
+    </p>
+    <p>&ldquo;Modified Works&rdquo; shall mean any work in Source Code or other form that
+      results from an addition to, deletion from, or modification of the
+      contents of the Program, including, for purposes of clarity any new file
+      in Source Code form that contains any contents of the Program. Modified
+      Works shall not include works that contain only declarations, interfaces,
+      types, classes, structures, or files of the Program solely in each case
+      in order to link to, bind by name, or subclass the Program or Modified
+      Works thereof.
+    </p>
+    <p>&ldquo;Distribute&rdquo; means the acts of a) distributing or b) making available
+      in any manner that enables the transfer of a copy.
+    </p>
+    <p>&ldquo;Source Code&rdquo; means the form of a Program preferred for making
+      modifications, including but not limited to software source code,
+      documentation source, and configuration files.
+    </p>
+    <p>&ldquo;Secondary License&rdquo; means either the GNU General Public License,
+      Version 2.0, or any later versions of that license, including any
+      exceptions or additional permissions as identified by the initial
+      Contributor.
+    </p>
+    <h2 id="grant-of-rights">2. GRANT OF RIGHTS</h2>
+    <ul>
+      <li>a) Subject to the terms of this Agreement, each Contributor hereby
+        grants Recipient a non-exclusive, worldwide, royalty-free copyright
+        license to reproduce, prepare Derivative Works of, publicly display,
+        publicly perform, Distribute and sublicense the Contribution of such
+        Contributor, if any, and such Derivative Works.
+      </li>
+      <li>b) Subject to the terms of this Agreement, each Contributor hereby
+        grants Recipient a non-exclusive, worldwide, royalty-free patent
+        license under Licensed Patents to make, use, sell, offer to sell,
+        import and otherwise transfer the Contribution of such Contributor,
+        if any, in Source Code or other form. This patent license shall
+        apply to the combination of the Contribution and the Program if,
+        at the time the Contribution is added by the Contributor, such
+        addition of the Contribution causes such combination to be covered
+        by the Licensed Patents. The patent license shall not apply to any
+        other combinations which include the Contribution. No hardware per
+        se is licensed hereunder.
+      </li>
+      <li>c) Recipient understands that although each Contributor grants the
+        licenses to its Contributions set forth herein, no assurances are
+        provided by any Contributor that the Program does not infringe the
+        patent or other intellectual property rights of any other entity.
+        Each Contributor disclaims any liability to Recipient for claims
+        brought by any other entity based on infringement of intellectual
+        property rights or otherwise. As a condition to exercising the rights
+        and licenses granted hereunder, each Recipient hereby assumes sole
+        responsibility to secure any other intellectual property rights needed,
+        if any. For example, if a third party patent license is required to
+        allow Recipient to Distribute the Program, it is Recipient&#039;s
+        responsibility to acquire that license before distributing the Program.
+      </li>
+      <li>d) Each Contributor represents that to its knowledge it has sufficient
+        copyright rights in its Contribution, if any, to grant the copyright
+        license set forth in this Agreement.
+      </li>
+      <li>e) Notwithstanding the terms of any Secondary License, no Contributor
+        makes additional grants to any Recipient (other than those set forth
+        in this Agreement) as a result of such Recipient&#039;s receipt of the
+        Program under the terms of a Secondary License (if permitted under
+        the terms of Section 3).
+      </li>
+    </ul>
+    <h2 id="requirements">3. REQUIREMENTS</h2>
+    <p>3.1 If a Contributor Distributes the Program in any form, then:</p>
+    <ul>
+      <li>a) the Program must also be made available as Source Code, in
+        accordance with section 3.2, and the Contributor must accompany
+        the Program with a statement that the Source Code for the Program
+        is available under this Agreement, and informs Recipients how to
+        obtain it in a reasonable manner on or through a medium customarily
+        used for software exchange; and
+      </li>
+      <li>
+        b) the Contributor may Distribute the Program under a license
+        different than this Agreement, provided that such license:
+        <ul>
+          <li>i) effectively disclaims on behalf of all other Contributors all
+            warranties and conditions, express and implied, including warranties
+            or conditions of title and non-infringement, and implied warranties
+            or conditions of merchantability and fitness for a particular purpose;
+          </li>
+          <li>ii) effectively excludes on behalf of all other Contributors all
+            liability for damages, including direct, indirect, special, incidental
+            and consequential damages, such as lost profits;
+          </li>
+          <li>iii) does not attempt to limit or alter the recipients&#039; rights in the
+            Source Code under section 3.2; and
+          </li>
+          <li>iv) requires any subsequent distribution of the Program by any party
+            to be under a license that satisfies the requirements of this section 3.
+          </li>
+        </ul>
+      </li>
+    </ul>
+    <p>3.2 When the Program is Distributed as Source Code:</p>
+    <ul>
+      <li>a) it must be made available under this Agreement, or if the Program (i)
+        is combined with other material in a separate file or files made available
+        under a Secondary License, and (ii) the initial Contributor attached to
+        the Source Code the notice described in Exhibit A of this Agreement,
+        then the Program may be made available under the terms of such
+        Secondary Licenses, and
+      </li>
+      <li>b) a copy of this Agreement must be included with each copy of the Program.</li>
+    </ul>
+    <p>3.3 Contributors may not remove or alter any copyright, patent, trademark,
+      attribution notices, disclaimers of warranty, or limitations of liability
+      (&lsquo;notices&rsquo;) contained within the Program from any copy of the Program which
+      they Distribute, provided that Contributors may add their own appropriate
+      notices.
+    </p>
+    <h2 id="commercial-distribution">4. COMMERCIAL DISTRIBUTION</h2>
+    <p>Commercial distributors of software may accept certain responsibilities
+      with respect to end users, business partners and the like. While this
+      license is intended to facilitate the commercial use of the Program, the
+      Contributor who includes the Program in a commercial product offering should
+      do so in a manner which does not create potential liability for other
+      Contributors. Therefore, if a Contributor includes the Program in a
+      commercial product offering, such Contributor (&ldquo;Commercial Contributor&rdquo;)
+      hereby agrees to defend and indemnify every other Contributor
+      (&ldquo;Indemnified Contributor&rdquo;) against any losses, damages and costs
+      (collectively &ldquo;Losses&rdquo;) arising from claims, lawsuits and other legal actions
+      brought by a third party against the Indemnified Contributor to the extent
+      caused by the acts or omissions of such Commercial Contributor in connection
+      with its distribution of the Program in a commercial product offering.
+      The obligations in this section do not apply to any claims or Losses relating
+      to any actual or alleged intellectual property infringement. In order to
+      qualify, an Indemnified Contributor must: a) promptly notify the
+      Commercial Contributor in writing of such claim, and b) allow the Commercial
+      Contributor to control, and cooperate with the Commercial Contributor in,
+      the defense and any related settlement negotiations. The Indemnified
+      Contributor may participate in any such claim at its own expense.
+    </p>
+    <p>For example, a Contributor might include the Program
+      in a commercial product offering, Product X. That Contributor is then a
+      Commercial Contributor. If that Commercial Contributor then makes performance
+      claims, or offers warranties related to Product X, those performance claims
+      and warranties are such Commercial Contributor&#039;s responsibility alone.
+      Under this section, the Commercial Contributor would have to defend claims
+      against the other Contributors related to those performance claims and
+      warranties, and if a court requires any other Contributor to pay any damages
+      as a result, the Commercial Contributor must pay those damages.
+    </p>
+    <h2 id="warranty">5. NO WARRANTY</h2>
+    <p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT PERMITTED
+      BY APPLICABLE LAW, THE PROGRAM IS PROVIDED ON AN &ldquo;AS IS&rdquo; BASIS, WITHOUT
+      WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING,
+      WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
+      MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is
+      solely responsible for determining the appropriateness of using and
+      distributing the Program and assumes all risks associated with its
+      exercise of rights under this Agreement, including but not limited to the
+      risks and costs of program errors, compliance with applicable laws, damage
+      to or loss of data, programs or equipment, and unavailability or
+      interruption of operations.
+    </p>
+    <h2 id="disclaimer">6. DISCLAIMER OF LIABILITY</h2>
+    <p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT PERMITTED
+      BY APPLICABLE LAW, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY
+      LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
+      OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS),
+      HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+      LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+      OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS
+      GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+    </p>
+    <h2 id="general">7. GENERAL</h2>
+    <p>If any provision of this Agreement is invalid or unenforceable under
+      applicable law, it shall not affect the validity or enforceability of the
+      remainder of the terms of this Agreement, and without further action by the
+      parties hereto, such provision shall be reformed to the minimum extent
+      necessary to make such provision valid and enforceable.
+    </p>
+    <p>If Recipient institutes patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Program itself
+      (excluding combinations of the Program with other software or hardware)
+      infringes such Recipient&#039;s patent(s), then such Recipient&#039;s rights granted
+      under Section 2(b) shall terminate as of the date such litigation is filed.
+    </p>
+    <p>All Recipient&#039;s rights under this Agreement shall terminate if it fails to
+      comply with any of the material terms or conditions of this Agreement and
+      does not cure such failure in a reasonable period of time after becoming
+      aware of such noncompliance. If all Recipient&#039;s rights under this Agreement
+      terminate, Recipient agrees to cease use and distribution of the Program
+      as soon as reasonably practicable. However, Recipient&#039;s obligations under
+      this Agreement and any licenses granted by Recipient relating to the
+      Program shall continue and survive.
+    </p>
+    <p>Everyone is permitted to copy and distribute copies of this Agreement,
+      but in order to avoid inconsistency the Agreement is copyrighted and may
+      only be modified in the following manner. The Agreement Steward reserves
+      the right to publish new versions (including revisions) of this Agreement
+      from time to time. No one other than the Agreement Steward has the right
+      to modify this Agreement. The Eclipse Foundation is the initial Agreement
+      Steward. The Eclipse Foundation may assign the responsibility to serve as
+      the Agreement Steward to a suitable separate entity. Each new version of
+      the Agreement will be given a distinguishing version number. The Program
+      (including Contributions) may always be Distributed subject to the version
+      of the Agreement under which it was received. In addition, after a new
+      version of the Agreement is published, Contributor may elect to Distribute
+      the Program (including its Contributions) under the new version.
+    </p>
+    <p>Except as expressly stated in Sections 2(a) and 2(b) above, Recipient
+      receives no rights or licenses to the intellectual property of any
+      Contributor under this Agreement, whether expressly, by implication,
+      estoppel or otherwise. All rights in the Program not expressly granted
+      under this Agreement are reserved. Nothing in this Agreement is intended
+      to be enforceable by any entity that is not a Contributor or Recipient.
+      No third-party beneficiary rights are created under this Agreement.
+    </p>
+    <h2 id="exhibit-a">Exhibit A &ndash; Form of Secondary Licenses Notice</h2>
+    <p>&ldquo;This Source Code may also be made available under the following 
+    	Secondary Licenses when the conditions for such availability set forth 
+    	in the Eclipse Public License, v. 2.0 are satisfied: {name license(s),
+    	version(s), and exceptions or additional permissions here}.&rdquo;
+    </p>
+    <blockquote>
+      <p>Simply including a copy of this Agreement, including this Exhibit A
+        is not sufficient to license the Source Code under Secondary Licenses.
+      </p>
+      <p>If it is not possible or desirable to put the notice in a particular file,
+        then You may include the notice in a location (such as a LICENSE file in a
+        relevant directory) where a recipient would be likely to look for
+        such a notice.
+      </p>
+      <p>You may add additional accurate notices of copyright ownership.</p>
+    </blockquote>
+  </body>
+</html>
\ No newline at end of file
diff --git a/features/org.eclipse.app4mc.utils.headless/feature.xml b/features/org.eclipse.app4mc.utils.headless/feature.xml
new file mode 100644
index 0000000..1ed7b00
--- /dev/null
+++ b/features/org.eclipse.app4mc.utils.headless/feature.xml
@@ -0,0 +1,43 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+      id="org.eclipse.app4mc.utils.headless"
+      label="APP4MC Utils Headless"
+      version="1.1.0.qualifier"
+      provider-name="Eclipse APP4MC"
+      license-feature="org.eclipse.license"
+      license-feature-version="2.0.2.qualifier">
+
+   <description url="https://projects.eclipse.org/projects/technology.app4mc">
+      APP4MC Utilities that can be used outside a running Eclipse instance, e.g. a SessionLogger to log to a file or the console.
+   </description>
+
+   <copyright url="https://projects.eclipse.org/projects/technology.app4mc">
+      (c) Copyright 2021 Eclipse APP4MC contributors and others.
+   </copyright>
+
+   <license url="http://www.example.com/license">
+      [Enter License Description here.]
+   </license>
+
+   <plugin
+         id="org.eclipse.app4mc.util.sessionlog"
+         download-size="0"
+         install-size="0"
+         version="0.0.0"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.app4mc.util.sessionlog.console"
+         download-size="0"
+         install-size="0"
+         version="0.0.0"
+         unpack="false"/>
+
+   <plugin
+         id="org.eclipse.app4mc.util.sessionlog.file"
+         download-size="0"
+         install-size="0"
+         version="0.0.0"
+         unpack="false"/>
+
+</feature>
diff --git a/features/org.eclipse.app4mc.utils.platform.sdk/.project b/features/org.eclipse.app4mc.utils.platform.sdk/.project
new file mode 100644
index 0000000..f4edb5c
--- /dev/null
+++ b/features/org.eclipse.app4mc.utils.platform.sdk/.project
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>org.eclipse.app4mc.utils.platform.sdk</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.pde.FeatureBuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>org.eclipse.pde.FeatureNature</nature>
+	</natures>
+</projectDescription>
diff --git a/features/org.eclipse.app4mc.utils.platform.sdk/about.html b/features/org.eclipse.app4mc.utils.platform.sdk/about.html
new file mode 100644
index 0000000..164f781
--- /dev/null
+++ b/features/org.eclipse.app4mc.utils.platform.sdk/about.html
@@ -0,0 +1,36 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>About</title>
+</head>
+<body lang="EN-US">
+	<h2>About This Content</h2>
+
+	<p>November 30, 2017</p>
+	<h3>License</h3>
+
+	<p>
+		The Eclipse Foundation makes available all content in this plug-in
+		(&quot;Content&quot;). Unless otherwise indicated below, the Content
+		is provided to you under the terms and conditions of the Eclipse
+		Public License Version 2.0 (&quot;EPL&quot;). A copy of the EPL is
+		available at <a href="http://www.eclipse.org/legal/epl-2.0">http://www.eclipse.org/legal/epl-2.0</a>.
+		For purposes of the EPL, &quot;Program&quot; will mean the Content.
+	</p>
+
+	<p>
+		If you did not receive this Content directly from the Eclipse
+		Foundation, the Content is being redistributed by another party
+		(&quot;Redistributor&quot;) and different terms and conditions may
+		apply to your use of any object code in the Content. Check the
+		Redistributor's license that was provided with the Content. If no such
+		license exists, contact the Redistributor. Unless otherwise indicated
+		below, the terms and conditions of the EPL still apply to any source
+		code in the Content and such source code may be obtained at <a
+			href="http://www.eclipse.org/">http://www.eclipse.org</a>.
+	</p>
+
+</body>
+</html>
\ No newline at end of file
diff --git a/features/org.eclipse.app4mc.utils.platform.sdk/build.properties b/features/org.eclipse.app4mc.utils.platform.sdk/build.properties
new file mode 100644
index 0000000..9c09432
--- /dev/null
+++ b/features/org.eclipse.app4mc.utils.platform.sdk/build.properties
@@ -0,0 +1,5 @@
+bin.includes = feature.xml,\
+               about.html,\
+               epl-2.0.html
+src.includes = about.html,\
+               epl-2.0.html
diff --git a/features/org.eclipse.app4mc.utils.platform.sdk/epl-2.0.html b/features/org.eclipse.app4mc.utils.platform.sdk/epl-2.0.html
new file mode 100644
index 0000000..637a181
--- /dev/null
+++ b/features/org.eclipse.app4mc.utils.platform.sdk/epl-2.0.html
@@ -0,0 +1,300 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+  <head>
+    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+    <title>Eclipse Public License - Version 2.0</title>
+    <style type="text/css">
+      body {
+        margin: 1.5em 3em;
+      }
+      h1{
+        font-size:1.5em;
+      }
+      h2{
+        font-size:1em;
+        margin-bottom:0.5em;
+        margin-top:1em;
+      }
+      p {
+        margin-top:  0.5em;
+        margin-bottom: 0.5em;
+      }
+      ul, ol{
+        list-style-type:none;
+      }
+    </style>
+  </head>
+  <body>
+    <h1>Eclipse Public License - v 2.0</h1>
+    <p>THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+      PUBLIC LICENSE (&ldquo;AGREEMENT&rdquo;). ANY USE, REPRODUCTION OR DISTRIBUTION
+      OF THE PROGRAM CONSTITUTES RECIPIENT&#039;S ACCEPTANCE OF THIS AGREEMENT.
+    </p>
+    <h2 id="definitions">1. DEFINITIONS</h2>
+    <p>&ldquo;Contribution&rdquo; means:</p>
+    <ul>
+      <li>a) in the case of the initial Contributor, the initial content
+        Distributed under this Agreement, and
+      </li>
+      <li>
+        b) in the case of each subsequent Contributor:
+        <ul>
+          <li>i) changes to the Program, and</li>
+          <li>ii) additions to the Program;</li>
+        </ul>
+        where such changes and/or additions to the Program originate from
+        and are Distributed by that particular Contributor. A Contribution
+        &ldquo;originates&rdquo; from a Contributor if it was added to the Program by such
+        Contributor itself or anyone acting on such Contributor&#039;s behalf.
+        Contributions do not include changes or additions to the Program that
+        are not Modified Works.
+      </li>
+    </ul>
+    <p>&ldquo;Contributor&rdquo; means any person or entity that Distributes the Program.</p>
+    <p>&ldquo;Licensed Patents&rdquo; mean patent claims licensable by a Contributor which
+      are necessarily infringed by the use or sale of its Contribution alone
+      or when combined with the Program.
+    </p>
+    <p>&ldquo;Program&rdquo; means the Contributions Distributed in accordance with this
+      Agreement.
+    </p>
+    <p>&ldquo;Recipient&rdquo; means anyone who receives the Program under this Agreement
+      or any Secondary License (as applicable), including Contributors.
+    </p>
+    <p>&ldquo;Derivative Works&rdquo; shall mean any work, whether in Source Code or other
+      form, that is based on (or derived from) the Program and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship.
+    </p>
+    <p>&ldquo;Modified Works&rdquo; shall mean any work in Source Code or other form that
+      results from an addition to, deletion from, or modification of the
+      contents of the Program, including, for purposes of clarity any new file
+      in Source Code form that contains any contents of the Program. Modified
+      Works shall not include works that contain only declarations, interfaces,
+      types, classes, structures, or files of the Program solely in each case
+      in order to link to, bind by name, or subclass the Program or Modified
+      Works thereof.
+    </p>
+    <p>&ldquo;Distribute&rdquo; means the acts of a) distributing or b) making available
+      in any manner that enables the transfer of a copy.
+    </p>
+    <p>&ldquo;Source Code&rdquo; means the form of a Program preferred for making
+      modifications, including but not limited to software source code,
+      documentation source, and configuration files.
+    </p>
+    <p>&ldquo;Secondary License&rdquo; means either the GNU General Public License,
+      Version 2.0, or any later versions of that license, including any
+      exceptions or additional permissions as identified by the initial
+      Contributor.
+    </p>
+    <h2 id="grant-of-rights">2. GRANT OF RIGHTS</h2>
+    <ul>
+      <li>a) Subject to the terms of this Agreement, each Contributor hereby
+        grants Recipient a non-exclusive, worldwide, royalty-free copyright
+        license to reproduce, prepare Derivative Works of, publicly display,
+        publicly perform, Distribute and sublicense the Contribution of such
+        Contributor, if any, and such Derivative Works.
+      </li>
+      <li>b) Subject to the terms of this Agreement, each Contributor hereby
+        grants Recipient a non-exclusive, worldwide, royalty-free patent
+        license under Licensed Patents to make, use, sell, offer to sell,
+        import and otherwise transfer the Contribution of such Contributor,
+        if any, in Source Code or other form. This patent license shall
+        apply to the combination of the Contribution and the Program if,
+        at the time the Contribution is added by the Contributor, such
+        addition of the Contribution causes such combination to be covered
+        by the Licensed Patents. The patent license shall not apply to any
+        other combinations which include the Contribution. No hardware per
+        se is licensed hereunder.
+      </li>
+      <li>c) Recipient understands that although each Contributor grants the
+        licenses to its Contributions set forth herein, no assurances are
+        provided by any Contributor that the Program does not infringe the
+        patent or other intellectual property rights of any other entity.
+        Each Contributor disclaims any liability to Recipient for claims
+        brought by any other entity based on infringement of intellectual
+        property rights or otherwise. As a condition to exercising the rights
+        and licenses granted hereunder, each Recipient hereby assumes sole
+        responsibility to secure any other intellectual property rights needed,
+        if any. For example, if a third party patent license is required to
+        allow Recipient to Distribute the Program, it is Recipient&#039;s
+        responsibility to acquire that license before distributing the Program.
+      </li>
+      <li>d) Each Contributor represents that to its knowledge it has sufficient
+        copyright rights in its Contribution, if any, to grant the copyright
+        license set forth in this Agreement.
+      </li>
+      <li>e) Notwithstanding the terms of any Secondary License, no Contributor
+        makes additional grants to any Recipient (other than those set forth
+        in this Agreement) as a result of such Recipient&#039;s receipt of the
+        Program under the terms of a Secondary License (if permitted under
+        the terms of Section 3).
+      </li>
+    </ul>
+    <h2 id="requirements">3. REQUIREMENTS</h2>
+    <p>3.1 If a Contributor Distributes the Program in any form, then:</p>
+    <ul>
+      <li>a) the Program must also be made available as Source Code, in
+        accordance with section 3.2, and the Contributor must accompany
+        the Program with a statement that the Source Code for the Program
+        is available under this Agreement, and informs Recipients how to
+        obtain it in a reasonable manner on or through a medium customarily
+        used for software exchange; and
+      </li>
+      <li>
+        b) the Contributor may Distribute the Program under a license
+        different than this Agreement, provided that such license:
+        <ul>
+          <li>i) effectively disclaims on behalf of all other Contributors all
+            warranties and conditions, express and implied, including warranties
+            or conditions of title and non-infringement, and implied warranties
+            or conditions of merchantability and fitness for a particular purpose;
+          </li>
+          <li>ii) effectively excludes on behalf of all other Contributors all
+            liability for damages, including direct, indirect, special, incidental
+            and consequential damages, such as lost profits;
+          </li>
+          <li>iii) does not attempt to limit or alter the recipients&#039; rights in the
+            Source Code under section 3.2; and
+          </li>
+          <li>iv) requires any subsequent distribution of the Program by any party
+            to be under a license that satisfies the requirements of this section 3.
+          </li>
+        </ul>
+      </li>
+    </ul>
+    <p>3.2 When the Program is Distributed as Source Code:</p>
+    <ul>
+      <li>a) it must be made available under this Agreement, or if the Program (i)
+        is combined with other material in a separate file or files made available
+        under a Secondary License, and (ii) the initial Contributor attached to
+        the Source Code the notice described in Exhibit A of this Agreement,
+        then the Program may be made available under the terms of such
+        Secondary Licenses, and
+      </li>
+      <li>b) a copy of this Agreement must be included with each copy of the Program.</li>
+    </ul>
+    <p>3.3 Contributors may not remove or alter any copyright, patent, trademark,
+      attribution notices, disclaimers of warranty, or limitations of liability
+      (&lsquo;notices&rsquo;) contained within the Program from any copy of the Program which
+      they Distribute, provided that Contributors may add their own appropriate
+      notices.
+    </p>
+    <h2 id="commercial-distribution">4. COMMERCIAL DISTRIBUTION</h2>
+    <p>Commercial distributors of software may accept certain responsibilities
+      with respect to end users, business partners and the like. While this
+      license is intended to facilitate the commercial use of the Program, the
+      Contributor who includes the Program in a commercial product offering should
+      do so in a manner which does not create potential liability for other
+      Contributors. Therefore, if a Contributor includes the Program in a
+      commercial product offering, such Contributor (&ldquo;Commercial Contributor&rdquo;)
+      hereby agrees to defend and indemnify every other Contributor
+      (&ldquo;Indemnified Contributor&rdquo;) against any losses, damages and costs
+      (collectively &ldquo;Losses&rdquo;) arising from claims, lawsuits and other legal actions
+      brought by a third party against the Indemnified Contributor to the extent
+      caused by the acts or omissions of such Commercial Contributor in connection
+      with its distribution of the Program in a commercial product offering.
+      The obligations in this section do not apply to any claims or Losses relating
+      to any actual or alleged intellectual property infringement. In order to
+      qualify, an Indemnified Contributor must: a) promptly notify the
+      Commercial Contributor in writing of such claim, and b) allow the Commercial
+      Contributor to control, and cooperate with the Commercial Contributor in,
+      the defense and any related settlement negotiations. The Indemnified
+      Contributor may participate in any such claim at its own expense.
+    </p>
+    <p>For example, a Contributor might include the Program
+      in a commercial product offering, Product X. That Contributor is then a
+      Commercial Contributor. If that Commercial Contributor then makes performance
+      claims, or offers warranties related to Product X, those performance claims
+      and warranties are such Commercial Contributor&#039;s responsibility alone.
+      Under this section, the Commercial Contributor would have to defend claims
+      against the other Contributors related to those performance claims and
+      warranties, and if a court requires any other Contributor to pay any damages
+      as a result, the Commercial Contributor must pay those damages.
+    </p>
+    <h2 id="warranty">5. NO WARRANTY</h2>
+    <p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT PERMITTED
+      BY APPLICABLE LAW, THE PROGRAM IS PROVIDED ON AN &ldquo;AS IS&rdquo; BASIS, WITHOUT
+      WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING,
+      WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
+      MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is
+      solely responsible for determining the appropriateness of using and
+      distributing the Program and assumes all risks associated with its
+      exercise of rights under this Agreement, including but not limited to the
+      risks and costs of program errors, compliance with applicable laws, damage
+      to or loss of data, programs or equipment, and unavailability or
+      interruption of operations.
+    </p>
+    <h2 id="disclaimer">6. DISCLAIMER OF LIABILITY</h2>
+    <p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT PERMITTED
+      BY APPLICABLE LAW, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY
+      LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
+      OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS),
+      HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+      LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+      OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS
+      GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+    </p>
+    <h2 id="general">7. GENERAL</h2>
+    <p>If any provision of this Agreement is invalid or unenforceable under
+      applicable law, it shall not affect the validity or enforceability of the
+      remainder of the terms of this Agreement, and without further action by the
+      parties hereto, such provision shall be reformed to the minimum extent
+      necessary to make such provision valid and enforceable.
+    </p>
+    <p>If Recipient institutes patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Program itself
+      (excluding combinations of the Program with other software or hardware)
+      infringes such Recipient&#039;s patent(s), then such Recipient&#039;s rights granted
+      under Section 2(b) shall terminate as of the date such litigation is filed.
+    </p>
+    <p>All Recipient&#039;s rights under this Agreement shall terminate if it fails to
+      comply with any of the material terms or conditions of this Agreement and
+      does not cure such failure in a reasonable period of time after becoming
+      aware of such noncompliance. If all Recipient&#039;s rights under this Agreement
+      terminate, Recipient agrees to cease use and distribution of the Program
+      as soon as reasonably practicable. However, Recipient&#039;s obligations under
+      this Agreement and any licenses granted by Recipient relating to the
+      Program shall continue and survive.
+    </p>
+    <p>Everyone is permitted to copy and distribute copies of this Agreement,
+      but in order to avoid inconsistency the Agreement is copyrighted and may
+      only be modified in the following manner. The Agreement Steward reserves
+      the right to publish new versions (including revisions) of this Agreement
+      from time to time. No one other than the Agreement Steward has the right
+      to modify this Agreement. The Eclipse Foundation is the initial Agreement
+      Steward. The Eclipse Foundation may assign the responsibility to serve as
+      the Agreement Steward to a suitable separate entity. Each new version of
+      the Agreement will be given a distinguishing version number. The Program
+      (including Contributions) may always be Distributed subject to the version
+      of the Agreement under which it was received. In addition, after a new
+      version of the Agreement is published, Contributor may elect to Distribute
+      the Program (including its Contributions) under the new version.
+    </p>
+    <p>Except as expressly stated in Sections 2(a) and 2(b) above, Recipient
+      receives no rights or licenses to the intellectual property of any
+      Contributor under this Agreement, whether expressly, by implication,
+      estoppel or otherwise. All rights in the Program not expressly granted
+      under this Agreement are reserved. Nothing in this Agreement is intended
+      to be enforceable by any entity that is not a Contributor or Recipient.
+      No third-party beneficiary rights are created under this Agreement.
+    </p>
+    <h2 id="exhibit-a">Exhibit A &ndash; Form of Secondary Licenses Notice</h2>
+    <p>&ldquo;This Source Code may also be made available under the following 
+    	Secondary Licenses when the conditions for such availability set forth 
+    	in the Eclipse Public License, v. 2.0 are satisfied: {name license(s),
+    	version(s), and exceptions or additional permissions here}.&rdquo;
+    </p>
+    <blockquote>
+      <p>Simply including a copy of this Agreement, including this Exhibit A
+        is not sufficient to license the Source Code under Secondary Licenses.
+      </p>
+      <p>If it is not possible or desirable to put the notice in a particular file,
+        then You may include the notice in a location (such as a LICENSE file in a
+        relevant directory) where a recipient would be likely to look for
+        such a notice.
+      </p>
+      <p>You may add additional accurate notices of copyright ownership.</p>
+    </blockquote>
+  </body>
+</html>
\ No newline at end of file
diff --git a/features/org.eclipse.app4mc.utils.platform.sdk/feature.xml b/features/org.eclipse.app4mc.utils.platform.sdk/feature.xml
new file mode 100644
index 0000000..3bb11ba
--- /dev/null
+++ b/features/org.eclipse.app4mc.utils.platform.sdk/feature.xml
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+      id="org.eclipse.app4mc.utils.platform.sdk"
+      label="APP4MC Utils Platform SDK"
+      version="1.1.0.qualifier"
+      provider-name="Eclipse APP4MC"
+      license-feature="org.eclipse.license"
+      license-feature-version="2.0.2.qualifier">
+
+   <description url="https://projects.eclipse.org/projects/technology.app4mc">
+      APP4MC Utilities that can be used inside a running Eclipse instance, e.g. a SessionLogWriter to log via Platform logging.
+Extends the org.eclipse.app4mc.utils.headless feature.
+The SDK feature also contains the sources and is intended to be used in a development environment.
+   </description>
+
+   <copyright url="https://projects.eclipse.org/projects/technology.app4mc">
+      (c) Copyright 2021 Eclipse APP4MC contributors and others.
+   </copyright>
+
+   <license url="http://www.example.com/license">
+      [Enter License Description here.]
+   </license>
+
+   <includes
+         id="org.eclipse.app4mc.utils.platform"
+         version="0.0.0"/>
+
+   <includes
+         id="org.eclipse.app4mc.utils.headless.sdk"
+         version="0.0.0"/>
+
+   <plugin
+         id="org.eclipse.app4mc.util.sessionlog.eclipse.source"
+         download-size="0"
+         install-size="0"
+         version="0.0.0"
+         unpack="false"/>
+
+</feature>
diff --git a/features/org.eclipse.app4mc.utils.platform/.project b/features/org.eclipse.app4mc.utils.platform/.project
new file mode 100644
index 0000000..20a1201
--- /dev/null
+++ b/features/org.eclipse.app4mc.utils.platform/.project
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>org.eclipse.app4mc.utils.platform</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.pde.FeatureBuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>org.eclipse.pde.FeatureNature</nature>
+	</natures>
+</projectDescription>
diff --git a/features/org.eclipse.app4mc.utils.platform/about.html b/features/org.eclipse.app4mc.utils.platform/about.html
new file mode 100644
index 0000000..164f781
--- /dev/null
+++ b/features/org.eclipse.app4mc.utils.platform/about.html
@@ -0,0 +1,36 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>About</title>
+</head>
+<body lang="EN-US">
+	<h2>About This Content</h2>
+
+	<p>November 30, 2017</p>
+	<h3>License</h3>
+
+	<p>
+		The Eclipse Foundation makes available all content in this plug-in
+		(&quot;Content&quot;). Unless otherwise indicated below, the Content
+		is provided to you under the terms and conditions of the Eclipse
+		Public License Version 2.0 (&quot;EPL&quot;). A copy of the EPL is
+		available at <a href="http://www.eclipse.org/legal/epl-2.0">http://www.eclipse.org/legal/epl-2.0</a>.
+		For purposes of the EPL, &quot;Program&quot; will mean the Content.
+	</p>
+
+	<p>
+		If you did not receive this Content directly from the Eclipse
+		Foundation, the Content is being redistributed by another party
+		(&quot;Redistributor&quot;) and different terms and conditions may
+		apply to your use of any object code in the Content. Check the
+		Redistributor's license that was provided with the Content. If no such
+		license exists, contact the Redistributor. Unless otherwise indicated
+		below, the terms and conditions of the EPL still apply to any source
+		code in the Content and such source code may be obtained at <a
+			href="http://www.eclipse.org/">http://www.eclipse.org</a>.
+	</p>
+
+</body>
+</html>
\ No newline at end of file
diff --git a/features/org.eclipse.app4mc.utils.platform/build.properties b/features/org.eclipse.app4mc.utils.platform/build.properties
new file mode 100644
index 0000000..9c09432
--- /dev/null
+++ b/features/org.eclipse.app4mc.utils.platform/build.properties
@@ -0,0 +1,5 @@
+bin.includes = feature.xml,\
+               about.html,\
+               epl-2.0.html
+src.includes = about.html,\
+               epl-2.0.html
diff --git a/features/org.eclipse.app4mc.utils.platform/epl-2.0.html b/features/org.eclipse.app4mc.utils.platform/epl-2.0.html
new file mode 100644
index 0000000..637a181
--- /dev/null
+++ b/features/org.eclipse.app4mc.utils.platform/epl-2.0.html
@@ -0,0 +1,300 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+  <head>
+    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+    <title>Eclipse Public License - Version 2.0</title>
+    <style type="text/css">
+      body {
+        margin: 1.5em 3em;
+      }
+      h1{
+        font-size:1.5em;
+      }
+      h2{
+        font-size:1em;
+        margin-bottom:0.5em;
+        margin-top:1em;
+      }
+      p {
+        margin-top:  0.5em;
+        margin-bottom: 0.5em;
+      }
+      ul, ol{
+        list-style-type:none;
+      }
+    </style>
+  </head>
+  <body>
+    <h1>Eclipse Public License - v 2.0</h1>
+    <p>THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+      PUBLIC LICENSE (&ldquo;AGREEMENT&rdquo;). ANY USE, REPRODUCTION OR DISTRIBUTION
+      OF THE PROGRAM CONSTITUTES RECIPIENT&#039;S ACCEPTANCE OF THIS AGREEMENT.
+    </p>
+    <h2 id="definitions">1. DEFINITIONS</h2>
+    <p>&ldquo;Contribution&rdquo; means:</p>
+    <ul>
+      <li>a) in the case of the initial Contributor, the initial content
+        Distributed under this Agreement, and
+      </li>
+      <li>
+        b) in the case of each subsequent Contributor:
+        <ul>
+          <li>i) changes to the Program, and</li>
+          <li>ii) additions to the Program;</li>
+        </ul>
+        where such changes and/or additions to the Program originate from
+        and are Distributed by that particular Contributor. A Contribution
+        &ldquo;originates&rdquo; from a Contributor if it was added to the Program by such
+        Contributor itself or anyone acting on such Contributor&#039;s behalf.
+        Contributions do not include changes or additions to the Program that
+        are not Modified Works.
+      </li>
+    </ul>
+    <p>&ldquo;Contributor&rdquo; means any person or entity that Distributes the Program.</p>
+    <p>&ldquo;Licensed Patents&rdquo; mean patent claims licensable by a Contributor which
+      are necessarily infringed by the use or sale of its Contribution alone
+      or when combined with the Program.
+    </p>
+    <p>&ldquo;Program&rdquo; means the Contributions Distributed in accordance with this
+      Agreement.
+    </p>
+    <p>&ldquo;Recipient&rdquo; means anyone who receives the Program under this Agreement
+      or any Secondary License (as applicable), including Contributors.
+    </p>
+    <p>&ldquo;Derivative Works&rdquo; shall mean any work, whether in Source Code or other
+      form, that is based on (or derived from) the Program and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship.
+    </p>
+    <p>&ldquo;Modified Works&rdquo; shall mean any work in Source Code or other form that
+      results from an addition to, deletion from, or modification of the
+      contents of the Program, including, for purposes of clarity any new file
+      in Source Code form that contains any contents of the Program. Modified
+      Works shall not include works that contain only declarations, interfaces,
+      types, classes, structures, or files of the Program solely in each case
+      in order to link to, bind by name, or subclass the Program or Modified
+      Works thereof.
+    </p>
+    <p>&ldquo;Distribute&rdquo; means the acts of a) distributing or b) making available
+      in any manner that enables the transfer of a copy.
+    </p>
+    <p>&ldquo;Source Code&rdquo; means the form of a Program preferred for making
+      modifications, including but not limited to software source code,
+      documentation source, and configuration files.
+    </p>
+    <p>&ldquo;Secondary License&rdquo; means either the GNU General Public License,
+      Version 2.0, or any later versions of that license, including any
+      exceptions or additional permissions as identified by the initial
+      Contributor.
+    </p>
+    <h2 id="grant-of-rights">2. GRANT OF RIGHTS</h2>
+    <ul>
+      <li>a) Subject to the terms of this Agreement, each Contributor hereby
+        grants Recipient a non-exclusive, worldwide, royalty-free copyright
+        license to reproduce, prepare Derivative Works of, publicly display,
+        publicly perform, Distribute and sublicense the Contribution of such
+        Contributor, if any, and such Derivative Works.
+      </li>
+      <li>b) Subject to the terms of this Agreement, each Contributor hereby
+        grants Recipient a non-exclusive, worldwide, royalty-free patent
+        license under Licensed Patents to make, use, sell, offer to sell,
+        import and otherwise transfer the Contribution of such Contributor,
+        if any, in Source Code or other form. This patent license shall
+        apply to the combination of the Contribution and the Program if,
+        at the time the Contribution is added by the Contributor, such
+        addition of the Contribution causes such combination to be covered
+        by the Licensed Patents. The patent license shall not apply to any
+        other combinations which include the Contribution. No hardware per
+        se is licensed hereunder.
+      </li>
+      <li>c) Recipient understands that although each Contributor grants the
+        licenses to its Contributions set forth herein, no assurances are
+        provided by any Contributor that the Program does not infringe the
+        patent or other intellectual property rights of any other entity.
+        Each Contributor disclaims any liability to Recipient for claims
+        brought by any other entity based on infringement of intellectual
+        property rights or otherwise. As a condition to exercising the rights
+        and licenses granted hereunder, each Recipient hereby assumes sole
+        responsibility to secure any other intellectual property rights needed,
+        if any. For example, if a third party patent license is required to
+        allow Recipient to Distribute the Program, it is Recipient&#039;s
+        responsibility to acquire that license before distributing the Program.
+      </li>
+      <li>d) Each Contributor represents that to its knowledge it has sufficient
+        copyright rights in its Contribution, if any, to grant the copyright
+        license set forth in this Agreement.
+      </li>
+      <li>e) Notwithstanding the terms of any Secondary License, no Contributor
+        makes additional grants to any Recipient (other than those set forth
+        in this Agreement) as a result of such Recipient&#039;s receipt of the
+        Program under the terms of a Secondary License (if permitted under
+        the terms of Section 3).
+      </li>
+    </ul>
+    <h2 id="requirements">3. REQUIREMENTS</h2>
+    <p>3.1 If a Contributor Distributes the Program in any form, then:</p>
+    <ul>
+      <li>a) the Program must also be made available as Source Code, in
+        accordance with section 3.2, and the Contributor must accompany
+        the Program with a statement that the Source Code for the Program
+        is available under this Agreement, and informs Recipients how to
+        obtain it in a reasonable manner on or through a medium customarily
+        used for software exchange; and
+      </li>
+      <li>
+        b) the Contributor may Distribute the Program under a license
+        different than this Agreement, provided that such license:
+        <ul>
+          <li>i) effectively disclaims on behalf of all other Contributors all
+            warranties and conditions, express and implied, including warranties
+            or conditions of title and non-infringement, and implied warranties
+            or conditions of merchantability and fitness for a particular purpose;
+          </li>
+          <li>ii) effectively excludes on behalf of all other Contributors all
+            liability for damages, including direct, indirect, special, incidental
+            and consequential damages, such as lost profits;
+          </li>
+          <li>iii) does not attempt to limit or alter the recipients&#039; rights in the
+            Source Code under section 3.2; and
+          </li>
+          <li>iv) requires any subsequent distribution of the Program by any party
+            to be under a license that satisfies the requirements of this section 3.
+          </li>
+        </ul>
+      </li>
+    </ul>
+    <p>3.2 When the Program is Distributed as Source Code:</p>
+    <ul>
+      <li>a) it must be made available under this Agreement, or if the Program (i)
+        is combined with other material in a separate file or files made available
+        under a Secondary License, and (ii) the initial Contributor attached to
+        the Source Code the notice described in Exhibit A of this Agreement,
+        then the Program may be made available under the terms of such
+        Secondary Licenses, and
+      </li>
+      <li>b) a copy of this Agreement must be included with each copy of the Program.</li>
+    </ul>
+    <p>3.3 Contributors may not remove or alter any copyright, patent, trademark,
+      attribution notices, disclaimers of warranty, or limitations of liability
+      (&lsquo;notices&rsquo;) contained within the Program from any copy of the Program which
+      they Distribute, provided that Contributors may add their own appropriate
+      notices.
+    </p>
+    <h2 id="commercial-distribution">4. COMMERCIAL DISTRIBUTION</h2>
+    <p>Commercial distributors of software may accept certain responsibilities
+      with respect to end users, business partners and the like. While this
+      license is intended to facilitate the commercial use of the Program, the
+      Contributor who includes the Program in a commercial product offering should
+      do so in a manner which does not create potential liability for other
+      Contributors. Therefore, if a Contributor includes the Program in a
+      commercial product offering, such Contributor (&ldquo;Commercial Contributor&rdquo;)
+      hereby agrees to defend and indemnify every other Contributor
+      (&ldquo;Indemnified Contributor&rdquo;) against any losses, damages and costs
+      (collectively &ldquo;Losses&rdquo;) arising from claims, lawsuits and other legal actions
+      brought by a third party against the Indemnified Contributor to the extent
+      caused by the acts or omissions of such Commercial Contributor in connection
+      with its distribution of the Program in a commercial product offering.
+      The obligations in this section do not apply to any claims or Losses relating
+      to any actual or alleged intellectual property infringement. In order to
+      qualify, an Indemnified Contributor must: a) promptly notify the
+      Commercial Contributor in writing of such claim, and b) allow the Commercial
+      Contributor to control, and cooperate with the Commercial Contributor in,
+      the defense and any related settlement negotiations. The Indemnified
+      Contributor may participate in any such claim at its own expense.
+    </p>
+    <p>For example, a Contributor might include the Program
+      in a commercial product offering, Product X. That Contributor is then a
+      Commercial Contributor. If that Commercial Contributor then makes performance
+      claims, or offers warranties related to Product X, those performance claims
+      and warranties are such Commercial Contributor&#039;s responsibility alone.
+      Under this section, the Commercial Contributor would have to defend claims
+      against the other Contributors related to those performance claims and
+      warranties, and if a court requires any other Contributor to pay any damages
+      as a result, the Commercial Contributor must pay those damages.
+    </p>
+    <h2 id="warranty">5. NO WARRANTY</h2>
+    <p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT PERMITTED
+      BY APPLICABLE LAW, THE PROGRAM IS PROVIDED ON AN &ldquo;AS IS&rdquo; BASIS, WITHOUT
+      WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING,
+      WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
+      MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is
+      solely responsible for determining the appropriateness of using and
+      distributing the Program and assumes all risks associated with its
+      exercise of rights under this Agreement, including but not limited to the
+      risks and costs of program errors, compliance with applicable laws, damage
+      to or loss of data, programs or equipment, and unavailability or
+      interruption of operations.
+    </p>
+    <h2 id="disclaimer">6. DISCLAIMER OF LIABILITY</h2>
+    <p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT PERMITTED
+      BY APPLICABLE LAW, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY
+      LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
+      OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS),
+      HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+      LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+      OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS
+      GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+    </p>
+    <h2 id="general">7. GENERAL</h2>
+    <p>If any provision of this Agreement is invalid or unenforceable under
+      applicable law, it shall not affect the validity or enforceability of the
+      remainder of the terms of this Agreement, and without further action by the
+      parties hereto, such provision shall be reformed to the minimum extent
+      necessary to make such provision valid and enforceable.
+    </p>
+    <p>If Recipient institutes patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Program itself
+      (excluding combinations of the Program with other software or hardware)
+      infringes such Recipient&#039;s patent(s), then such Recipient&#039;s rights granted
+      under Section 2(b) shall terminate as of the date such litigation is filed.
+    </p>
+    <p>All Recipient&#039;s rights under this Agreement shall terminate if it fails to
+      comply with any of the material terms or conditions of this Agreement and
+      does not cure such failure in a reasonable period of time after becoming
+      aware of such noncompliance. If all Recipient&#039;s rights under this Agreement
+      terminate, Recipient agrees to cease use and distribution of the Program
+      as soon as reasonably practicable. However, Recipient&#039;s obligations under
+      this Agreement and any licenses granted by Recipient relating to the
+      Program shall continue and survive.
+    </p>
+    <p>Everyone is permitted to copy and distribute copies of this Agreement,
+      but in order to avoid inconsistency the Agreement is copyrighted and may
+      only be modified in the following manner. The Agreement Steward reserves
+      the right to publish new versions (including revisions) of this Agreement
+      from time to time. No one other than the Agreement Steward has the right
+      to modify this Agreement. The Eclipse Foundation is the initial Agreement
+      Steward. The Eclipse Foundation may assign the responsibility to serve as
+      the Agreement Steward to a suitable separate entity. Each new version of
+      the Agreement will be given a distinguishing version number. The Program
+      (including Contributions) may always be Distributed subject to the version
+      of the Agreement under which it was received. In addition, after a new
+      version of the Agreement is published, Contributor may elect to Distribute
+      the Program (including its Contributions) under the new version.
+    </p>
+    <p>Except as expressly stated in Sections 2(a) and 2(b) above, Recipient
+      receives no rights or licenses to the intellectual property of any
+      Contributor under this Agreement, whether expressly, by implication,
+      estoppel or otherwise. All rights in the Program not expressly granted
+      under this Agreement are reserved. Nothing in this Agreement is intended
+      to be enforceable by any entity that is not a Contributor or Recipient.
+      No third-party beneficiary rights are created under this Agreement.
+    </p>
+    <h2 id="exhibit-a">Exhibit A &ndash; Form of Secondary Licenses Notice</h2>
+    <p>&ldquo;This Source Code may also be made available under the following 
+    	Secondary Licenses when the conditions for such availability set forth 
+    	in the Eclipse Public License, v. 2.0 are satisfied: {name license(s),
+    	version(s), and exceptions or additional permissions here}.&rdquo;
+    </p>
+    <blockquote>
+      <p>Simply including a copy of this Agreement, including this Exhibit A
+        is not sufficient to license the Source Code under Secondary Licenses.
+      </p>
+      <p>If it is not possible or desirable to put the notice in a particular file,
+        then You may include the notice in a location (such as a LICENSE file in a
+        relevant directory) where a recipient would be likely to look for
+        such a notice.
+      </p>
+      <p>You may add additional accurate notices of copyright ownership.</p>
+    </blockquote>
+  </body>
+</html>
\ No newline at end of file
diff --git a/features/org.eclipse.app4mc.utils.platform/feature.xml b/features/org.eclipse.app4mc.utils.platform/feature.xml
new file mode 100644
index 0000000..ff679c1
--- /dev/null
+++ b/features/org.eclipse.app4mc.utils.platform/feature.xml
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+      id="org.eclipse.app4mc.utils.platform"
+      label="APP4MC Utils Platform"
+      version="1.1.0.qualifier"
+      provider-name="Eclipse APP4MC"
+      license-feature="org.eclipse.license"
+      license-feature-version="2.0.2.qualifier">
+
+   <description url="https://projects.eclipse.org/projects/technology.app4mc">
+      APP4MC Utilities that can be used inside a running Eclipse instance, e.g. a SessionLogWriter to log via Platform logging.
+Extends the org.eclipse.app4mc.utils.headless feature.
+   </description>
+
+   <copyright url="https://projects.eclipse.org/projects/technology.app4mc">
+      (c) Copyright 2021 Eclipse APP4MC contributors and others.
+   </copyright>
+
+   <license url="http://www.example.com/license">
+      [Enter License Description here.]
+   </license>
+
+   <includes
+         id="org.eclipse.app4mc.utils.headless"
+         version="0.0.0"/>
+
+   <plugin
+         id="org.eclipse.app4mc.util.sessionlog.eclipse"
+         download-size="0"
+         install-size="0"
+         version="0.0.0"
+         unpack="false"/>
+
+</feature>
diff --git a/log.txt b/log.txt
new file mode 100644
index 0000000..3ec9f3a
--- /dev/null
+++ b/log.txt
@@ -0,0 +1,32217 @@
+Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f)
+Maven home: C:\Development\Maven\apache-maven-3.6.3\bin\..
+Java version: 11.0.9.1, vendor: AdoptOpenJDK, runtime: C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot
+Default locale: en_US, platform encoding: Cp1252
+OS name: "windows 10", version: "10.0", arch: "amd64", family: "windows"
+[DEBUG] Reading global settings from C:\Development\Maven\apache-maven-3.6.3\bin\..\conf\settings.xml
+[DEBUG] Reading user settings from C:\Users\fad8pl\.m2\settings.xml
+[DEBUG] Using manager EnhancedLocalRepositoryManager with priority 10.0 for C:\Users\fad8pl\.m2\repository
+[DEBUG] Using mirror Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/) for central (https://repo.maven.apache.org/maven2).
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=657300, ConflictMarker.markTime=237300, ConflictMarker.nodeCount=2, ConflictIdSorter.graphTime=346301, ConflictIdSorter.topsortTime=340499, ConflictIdSorter.conflictIdCount=2, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=2239900, ConflictResolver.conflictItemCount=2, DefaultDependencyCollector.collectTime=83681500, DefaultDependencyCollector.transformTime=5496200}
+[DEBUG] org.eclipse.tycho.extras:tycho-pomless:jar:2.3.0
+[DEBUG]    io.takari.polyglot:polyglot-common:jar:0.4.6:compile
+[DEBUG] Populating class realm coreExtension>org.eclipse.tycho.extras:tycho-pomless:2.3.0
+[DEBUG]   Included C:\Users\fad8pl\.m2\repository\org\eclipse\tycho\extras\tycho-pomless\2.3.0\tycho-pomless-2.3.0.jar
+[DEBUG]   Included C:\Users\fad8pl\.m2\repository\io\takari\polyglot\polyglot-common\0.4.6\polyglot-common-0.4.6.jar
+[DEBUG] Populating class realm maven.ext
+[DEBUG] Created new class realm maven.api
+[DEBUG] Importing foreign packages into class realm maven.api
+[DEBUG]   Imported: javax.annotation.* < maven.ext
+[DEBUG]   Imported: javax.annotation.security.* < maven.ext
+[DEBUG]   Imported: javax.enterprise.inject.* < maven.ext
+[DEBUG]   Imported: javax.enterprise.util.* < maven.ext
+[DEBUG]   Imported: javax.inject.* < maven.ext
+[DEBUG]   Imported: org.apache.maven.* < maven.ext
+[DEBUG]   Imported: org.apache.maven.artifact < maven.ext
+[DEBUG]   Imported: org.apache.maven.classrealm < maven.ext
+[DEBUG]   Imported: org.apache.maven.cli < maven.ext
+[DEBUG]   Imported: org.apache.maven.configuration < maven.ext
+[DEBUG]   Imported: org.apache.maven.exception < maven.ext
+[DEBUG]   Imported: org.apache.maven.execution < maven.ext
+[DEBUG]   Imported: org.apache.maven.execution.scope < maven.ext
+[DEBUG]   Imported: org.apache.maven.lifecycle < maven.ext
+[DEBUG]   Imported: org.apache.maven.model < maven.ext
+[DEBUG]   Imported: org.apache.maven.monitor < maven.ext
+[DEBUG]   Imported: org.apache.maven.plugin < maven.ext
+[DEBUG]   Imported: org.apache.maven.profiles < maven.ext
+[DEBUG]   Imported: org.apache.maven.project < maven.ext
+[DEBUG]   Imported: org.apache.maven.reporting < maven.ext
+[DEBUG]   Imported: org.apache.maven.repository < maven.ext
+[DEBUG]   Imported: org.apache.maven.rtinfo < maven.ext
+[DEBUG]   Imported: org.apache.maven.settings < maven.ext
+[DEBUG]   Imported: org.apache.maven.toolchain < maven.ext
+[DEBUG]   Imported: org.apache.maven.usability < maven.ext
+[DEBUG]   Imported: org.apache.maven.wagon.* < maven.ext
+[DEBUG]   Imported: org.apache.maven.wagon.authentication < maven.ext
+[DEBUG]   Imported: org.apache.maven.wagon.authorization < maven.ext
+[DEBUG]   Imported: org.apache.maven.wagon.events < maven.ext
+[DEBUG]   Imported: org.apache.maven.wagon.observers < maven.ext
+[DEBUG]   Imported: org.apache.maven.wagon.proxy < maven.ext
+[DEBUG]   Imported: org.apache.maven.wagon.repository < maven.ext
+[DEBUG]   Imported: org.apache.maven.wagon.resource < maven.ext
+[DEBUG]   Imported: org.codehaus.classworlds < maven.ext
+[DEBUG]   Imported: org.codehaus.plexus.* < maven.ext
+[DEBUG]   Imported: org.codehaus.plexus.classworlds < maven.ext
+[DEBUG]   Imported: org.codehaus.plexus.component < maven.ext
+[DEBUG]   Imported: org.codehaus.plexus.configuration < maven.ext
+[DEBUG]   Imported: org.codehaus.plexus.container < maven.ext
+[DEBUG]   Imported: org.codehaus.plexus.context < maven.ext
+[DEBUG]   Imported: org.codehaus.plexus.lifecycle < maven.ext
+[DEBUG]   Imported: org.codehaus.plexus.logging < maven.ext
+[DEBUG]   Imported: org.codehaus.plexus.personality < maven.ext
+[DEBUG]   Imported: org.codehaus.plexus.util.xml.Xpp3Dom < maven.ext
+[DEBUG]   Imported: org.codehaus.plexus.util.xml.pull.XmlPullParser < maven.ext
+[DEBUG]   Imported: org.codehaus.plexus.util.xml.pull.XmlPullParserException < maven.ext
+[DEBUG]   Imported: org.codehaus.plexus.util.xml.pull.XmlSerializer < maven.ext
+[DEBUG]   Imported: org.eclipse.aether.* < maven.ext
+[DEBUG]   Imported: org.eclipse.aether.artifact < maven.ext
+[DEBUG]   Imported: org.eclipse.aether.collection < maven.ext
+[DEBUG]   Imported: org.eclipse.aether.deployment < maven.ext
+[DEBUG]   Imported: org.eclipse.aether.graph < maven.ext
+[DEBUG]   Imported: org.eclipse.aether.impl < maven.ext
+[DEBUG]   Imported: org.eclipse.aether.installation < maven.ext
+[DEBUG]   Imported: org.eclipse.aether.internal.impl < maven.ext
+[DEBUG]   Imported: org.eclipse.aether.metadata < maven.ext
+[DEBUG]   Imported: org.eclipse.aether.repository < maven.ext
+[DEBUG]   Imported: org.eclipse.aether.resolution < maven.ext
+[DEBUG]   Imported: org.eclipse.aether.spi < maven.ext
+[DEBUG]   Imported: org.eclipse.aether.transfer < maven.ext
+[DEBUG]   Imported: org.eclipse.aether.version < maven.ext
+[DEBUG]   Imported: org.fusesource.jansi.* < maven.ext
+[DEBUG]   Imported: org.slf4j.* < maven.ext
+[DEBUG]   Imported: org.slf4j.event.* < maven.ext
+[DEBUG]   Imported: org.slf4j.helpers.* < maven.ext
+[DEBUG]   Imported: org.slf4j.spi.* < maven.ext
+[DEBUG] Populating class realm maven.api
+[INFO] Error stacktraces are turned on.
+[DEBUG] Message scheme: plain
+[DEBUG] Reading global settings from C:\Development\Maven\apache-maven-3.6.3\bin\..\conf\settings.xml
+[DEBUG] Reading user settings from C:\Users\fad8pl\.m2\settings.xml
+[DEBUG] Reading global toolchains from C:\Development\Maven\apache-maven-3.6.3\bin\..\conf\toolchains.xml
+[DEBUG] Reading user toolchains from C:\Users\fad8pl\.m2\toolchains.xml
+[DEBUG] Using local repository at C:\Users\fad8pl\.m2\repository
+[DEBUG] Using manager EnhancedLocalRepositoryManager with priority 10.0 for C:\Users\fad8pl\.m2\repository
+[INFO] Scanning for projects...
+[DEBUG] Scanning folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins for modules
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071 because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Found pom .polyglot.META-INF in subfolder org.eclipse.app4mc.amalthea.converters.071
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072 because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Found pom .polyglot.META-INF in subfolder org.eclipse.app4mc.amalthea.converters.072
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080 because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Found pom .polyglot.META-INF in subfolder org.eclipse.app4mc.amalthea.converters.080
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081 because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Found pom .polyglot.META-INF in subfolder org.eclipse.app4mc.amalthea.converters.081
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082 because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Found pom .polyglot.META-INF in subfolder org.eclipse.app4mc.amalthea.converters.082
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083 because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Found pom .polyglot.META-INF in subfolder org.eclipse.app4mc.amalthea.converters.083
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090 because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Found pom .polyglot.META-INF in subfolder org.eclipse.app4mc.amalthea.converters.090
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091 because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Found pom .polyglot.META-INF in subfolder org.eclipse.app4mc.amalthea.converters.091
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092 because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Found pom .polyglot.META-INF in subfolder org.eclipse.app4mc.amalthea.converters.092
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093 because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Found pom .polyglot.META-INF in subfolder org.eclipse.app4mc.amalthea.converters.093
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094 because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Found pom .polyglot.META-INF in subfolder org.eclipse.app4mc.amalthea.converters.094
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095 because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Found pom .polyglot.META-INF in subfolder org.eclipse.app4mc.amalthea.converters.095
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096 because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Found pom .polyglot.META-INF in subfolder org.eclipse.app4mc.amalthea.converters.096
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097 because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Found pom .polyglot.META-INF in subfolder org.eclipse.app4mc.amalthea.converters.097
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100 because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Found pom .polyglot.META-INF in subfolder org.eclipse.app4mc.amalthea.converters.100
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Found pom .polyglot.META-INF in subfolder org.eclipse.app4mc.amalthea.converters.common
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Found pom .polyglot.META-INF in subfolder org.eclipse.app4mc.amalthea.converters.headless.app
+[DEBUG] Found pom pom.xml in subfolder org.eclipse.app4mc.amalthea.converters.help
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Found pom .polyglot.META-INF in subfolder org.eclipse.app4mc.amalthea.converters.ui
+[DEBUG] Scanning folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests for modules
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Found pom .polyglot.META-INF in subfolder org.eclipse.app4mc.amalthea.converters.071.tests
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Found pom .polyglot.META-INF in subfolder org.eclipse.app4mc.amalthea.converters.072.tests
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Found pom .polyglot.META-INF in subfolder org.eclipse.app4mc.amalthea.converters.080.tests
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Found pom .polyglot.META-INF in subfolder org.eclipse.app4mc.amalthea.converters.081.tests
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Found pom .polyglot.META-INF in subfolder org.eclipse.app4mc.amalthea.converters.082.tests
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Found pom .polyglot.META-INF in subfolder org.eclipse.app4mc.amalthea.converters.083.tests
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Found pom .polyglot.META-INF in subfolder org.eclipse.app4mc.amalthea.converters.090.tests
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Found pom .polyglot.META-INF in subfolder org.eclipse.app4mc.amalthea.converters.091.tests
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Found pom .polyglot.META-INF in subfolder org.eclipse.app4mc.amalthea.converters.092.tests
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Found pom .polyglot.META-INF in subfolder org.eclipse.app4mc.amalthea.converters.093.tests
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Found pom .polyglot.META-INF in subfolder org.eclipse.app4mc.amalthea.converters.094.tests
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Found pom .polyglot.META-INF in subfolder org.eclipse.app4mc.amalthea.converters.095.tests
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Found pom .polyglot.META-INF in subfolder org.eclipse.app4mc.amalthea.converters.096.tests
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Found pom .polyglot.META-INF in subfolder org.eclipse.app4mc.amalthea.converters.097.tests
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Found pom .polyglot.META-INF in subfolder org.eclipse.app4mc.amalthea.converters.100.tests
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Found pom .polyglot.META-INF in subfolder org.eclipse.app4mc.amalthea.converters.common.tests
+[DEBUG] Scanning folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features for modules
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Found pom .polyglot.feature.xml in subfolder org.eclipse.app4mc.amalthea.converters
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Found pom .polyglot.feature.xml in subfolder org.eclipse.app4mc.amalthea.converters.headless
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Found pom .polyglot.feature.xml in subfolder org.eclipse.app4mc.amalthea.converters.headless.runtime
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Found pom .polyglot.feature.xml in subfolder org.eclipse.app4mc.amalthea.converters.sdk
+[DEBUG] Scanning folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng for modules
+[DEBUG] Found pom pom.xml in subfolder org.eclipse.app4mc.converters.p2repo
+[DEBUG] Found pom pom.xml in subfolder org.eclipse.app4mc.converters.product
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Found pom .polyglot.org.eclipse.app4mc.converters.target.target in subfolder org.eclipse.app4mc.converters.target
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.ide.setup because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.071
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.072
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.080
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.081
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.082
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.083
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.090
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.091
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.092
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.093
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.094
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.095
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.096
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.097
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.100
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.common
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.headless.app
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.help
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.ui
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071 because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072 because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080 because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081 because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082 because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083 because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090 because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091 because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092 because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093 because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094 because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095 because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096 because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097 because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100 because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.071
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.072
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.080
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.081
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.082
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.083
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.090
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.091
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.092
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.093
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.094
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.095
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.096
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.097
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.100
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.common
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.headless.app
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.help
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.ui
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071 is goupId: org.eclipse.app4mc.migration, artifactId: plugins, relativePath: ..\.polyglot.pom.tycho
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.071
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.072
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.080
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.081
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.082
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.083
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.090
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.091
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.092
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.093
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.094
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.095
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.096
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.097
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.100
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.common
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.headless.app
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.help
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.ui
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.071
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.072
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.080
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.081
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.082
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.083
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.090
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.091
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.092
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.093
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.094
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.095
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.096
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.097
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.100
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.common
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.headless.app
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.help
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.ui
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072 is goupId: org.eclipse.app4mc.migration, artifactId: plugins, relativePath: ..\.polyglot.pom.tycho
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.071
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.072
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.080
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.081
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.082
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.083
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.090
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.091
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.092
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.093
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.094
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.095
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.096
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.097
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.100
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.common
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.headless.app
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.help
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.ui
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080 is goupId: org.eclipse.app4mc.migration, artifactId: plugins, relativePath: ..\.polyglot.pom.tycho
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.071
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.072
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.080
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.081
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.082
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.083
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.090
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.091
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.092
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.093
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.094
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.095
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.096
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.097
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.100
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.common
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.headless.app
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.help
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.ui
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081 is goupId: org.eclipse.app4mc.migration, artifactId: plugins, relativePath: ..\.polyglot.pom.tycho
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.071
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.072
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.080
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.081
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.082
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.083
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.090
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.091
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.092
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.093
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.094
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.095
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.096
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.097
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.100
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.common
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.headless.app
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.help
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.ui
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082 is goupId: org.eclipse.app4mc.migration, artifactId: plugins, relativePath: ..\.polyglot.pom.tycho
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.071
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.072
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.080
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.081
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.082
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.083
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.090
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.091
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.092
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.093
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.094
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.095
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.096
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.097
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.100
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.common
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.headless.app
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.help
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.ui
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083 is goupId: org.eclipse.app4mc.migration, artifactId: plugins, relativePath: ..\.polyglot.pom.tycho
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.071
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.072
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.080
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.081
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.082
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.083
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.090
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.091
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.092
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.093
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.094
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.095
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.096
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.097
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.100
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.common
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.headless.app
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.help
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.ui
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090 is goupId: org.eclipse.app4mc.migration, artifactId: plugins, relativePath: ..\.polyglot.pom.tycho
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.071
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.072
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.080
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.081
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.082
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.083
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.090
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.091
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.092
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.093
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.094
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.095
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.096
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.097
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.100
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.common
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.headless.app
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.help
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.ui
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091 is goupId: org.eclipse.app4mc.migration, artifactId: plugins, relativePath: ..\.polyglot.pom.tycho
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.071
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.072
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.080
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.081
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.082
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.083
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.090
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.091
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.092
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.093
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.094
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.095
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.096
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.097
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.100
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.common
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.headless.app
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.help
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.ui
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092 is goupId: org.eclipse.app4mc.migration, artifactId: plugins, relativePath: ..\.polyglot.pom.tycho
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.071
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.072
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.080
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.081
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.082
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.083
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.090
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.091
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.092
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.093
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.094
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.095
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.096
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.097
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.100
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.common
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.headless.app
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.help
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.ui
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093 is goupId: org.eclipse.app4mc.migration, artifactId: plugins, relativePath: ..\.polyglot.pom.tycho
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.071
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.072
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.080
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.081
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.082
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.083
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.090
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.091
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.092
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.093
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.094
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.095
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.096
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.097
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.100
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.common
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.headless.app
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.help
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.ui
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094 is goupId: org.eclipse.app4mc.migration, artifactId: plugins, relativePath: ..\.polyglot.pom.tycho
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.071
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.072
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.080
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.081
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.082
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.083
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.090
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.091
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.092
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.093
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.094
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.095
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.096
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.097
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.100
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.common
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.headless.app
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.help
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.ui
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095 is goupId: org.eclipse.app4mc.migration, artifactId: plugins, relativePath: ..\.polyglot.pom.tycho
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.071
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.072
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.080
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.081
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.082
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.083
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.090
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.091
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.092
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.093
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.094
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.095
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.096
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.097
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.100
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.common
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.headless.app
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.help
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.ui
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096 is goupId: org.eclipse.app4mc.migration, artifactId: plugins, relativePath: ..\.polyglot.pom.tycho
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.071
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.072
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.080
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.081
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.082
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.083
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.090
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.091
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.092
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.093
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.094
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.095
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.096
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.097
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.100
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.common
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.headless.app
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.help
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.ui
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097 is goupId: org.eclipse.app4mc.migration, artifactId: plugins, relativePath: ..\.polyglot.pom.tycho
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.071
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.072
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.080
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.081
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.082
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.083
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.090
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.091
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.092
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.093
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.094
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.095
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.096
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.097
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.100
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.common
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.headless.app
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.help
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.ui
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100 is goupId: org.eclipse.app4mc.migration, artifactId: plugins, relativePath: ..\.polyglot.pom.tycho
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.071
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.072
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.080
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.081
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.082
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.083
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.090
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.091
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.092
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.093
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.094
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.095
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.096
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.097
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.100
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.common
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.headless.app
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.help
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.ui
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common is goupId: org.eclipse.app4mc.migration, artifactId: plugins, relativePath: ..\.polyglot.pom.tycho
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.071
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.072
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.080
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.081
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.082
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.083
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.090
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.091
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.092
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.093
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.094
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.095
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.096
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.097
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.100
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.common
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.headless.app
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.help
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.ui
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app is goupId: org.eclipse.app4mc.migration, artifactId: plugins, relativePath: ..\.polyglot.pom.tycho
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.071
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.072
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.080
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.081
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.082
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.083
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.090
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.091
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.092
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.093
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.094
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.095
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.096
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.097
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.100
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.common
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.headless.app
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.help
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.ui
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui is goupId: org.eclipse.app4mc.migration, artifactId: plugins, relativePath: ..\.polyglot.pom.tycho
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.071.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.072.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.080.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.081.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.082.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.083.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.090.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.091.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.092.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.093.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.094.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.095.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.096.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.097.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.100.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.common.tests
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.071.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.072.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.080.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.081.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.082.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.083.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.090.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.091.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.092.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.093.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.094.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.095.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.096.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.097.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.100.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.common.tests
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests is goupId: org.eclipse.app4mc.migration, artifactId: tests, relativePath: ..\.polyglot.pom.tycho
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.071.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.072.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.080.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.081.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.082.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.083.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.090.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.091.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.092.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.093.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.094.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.095.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.096.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.097.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.100.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.common.tests
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.071.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.072.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.080.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.081.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.082.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.083.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.090.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.091.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.092.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.093.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.094.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.095.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.096.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.097.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.100.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.common.tests
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests is goupId: org.eclipse.app4mc.migration, artifactId: tests, relativePath: ..\.polyglot.pom.tycho
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.071.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.072.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.080.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.081.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.082.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.083.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.090.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.091.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.092.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.093.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.094.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.095.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.096.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.097.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.100.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.common.tests
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests is goupId: org.eclipse.app4mc.migration, artifactId: tests, relativePath: ..\.polyglot.pom.tycho
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.071.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.072.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.080.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.081.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.082.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.083.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.090.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.091.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.092.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.093.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.094.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.095.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.096.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.097.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.100.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.common.tests
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests is goupId: org.eclipse.app4mc.migration, artifactId: tests, relativePath: ..\.polyglot.pom.tycho
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.071.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.072.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.080.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.081.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.082.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.083.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.090.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.091.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.092.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.093.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.094.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.095.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.096.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.097.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.100.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.common.tests
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests is goupId: org.eclipse.app4mc.migration, artifactId: tests, relativePath: ..\.polyglot.pom.tycho
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.071.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.072.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.080.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.081.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.082.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.083.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.090.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.091.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.092.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.093.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.094.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.095.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.096.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.097.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.100.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.common.tests
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests is goupId: org.eclipse.app4mc.migration, artifactId: tests, relativePath: ..\.polyglot.pom.tycho
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.071.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.072.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.080.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.081.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.082.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.083.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.090.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.091.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.092.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.093.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.094.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.095.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.096.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.097.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.100.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.common.tests
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests is goupId: org.eclipse.app4mc.migration, artifactId: tests, relativePath: ..\.polyglot.pom.tycho
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.071.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.072.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.080.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.081.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.082.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.083.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.090.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.091.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.092.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.093.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.094.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.095.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.096.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.097.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.100.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.common.tests
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests is goupId: org.eclipse.app4mc.migration, artifactId: tests, relativePath: ..\.polyglot.pom.tycho
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.071.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.072.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.080.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.081.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.082.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.083.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.090.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.091.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.092.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.093.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.094.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.095.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.096.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.097.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.100.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.common.tests
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests is goupId: org.eclipse.app4mc.migration, artifactId: tests, relativePath: ..\.polyglot.pom.tycho
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.071.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.072.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.080.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.081.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.082.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.083.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.090.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.091.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.092.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.093.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.094.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.095.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.096.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.097.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.100.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.common.tests
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests is goupId: org.eclipse.app4mc.migration, artifactId: tests, relativePath: ..\.polyglot.pom.tycho
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.071.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.072.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.080.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.081.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.082.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.083.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.090.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.091.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.092.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.093.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.094.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.095.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.096.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.097.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.100.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.common.tests
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests is goupId: org.eclipse.app4mc.migration, artifactId: tests, relativePath: ..\.polyglot.pom.tycho
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.071.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.072.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.080.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.081.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.082.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.083.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.090.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.091.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.092.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.093.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.094.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.095.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.096.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.097.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.100.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.common.tests
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests is goupId: org.eclipse.app4mc.migration, artifactId: tests, relativePath: ..\.polyglot.pom.tycho
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.071.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.072.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.080.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.081.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.082.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.083.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.090.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.091.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.092.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.093.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.094.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.095.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.096.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.097.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.100.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.common.tests
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests is goupId: org.eclipse.app4mc.migration, artifactId: tests, relativePath: ..\.polyglot.pom.tycho
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.071.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.072.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.080.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.081.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.082.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.083.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.090.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.091.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.092.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.093.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.094.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.095.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.096.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.097.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.100.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.common.tests
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests is goupId: org.eclipse.app4mc.migration, artifactId: tests, relativePath: ..\.polyglot.pom.tycho
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.071.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.072.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.080.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.081.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.082.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.083.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.090.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.091.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.092.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.093.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.094.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.095.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.096.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.097.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.100.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.common.tests
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests is goupId: org.eclipse.app4mc.migration, artifactId: tests, relativePath: ..\.polyglot.pom.tycho
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.071.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.072.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.080.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.081.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.082.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.083.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.090.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.091.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.092.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.093.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.094.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.095.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.096.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.097.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.100.tests
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.common.tests
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests is goupId: org.eclipse.app4mc.migration, artifactId: tests, relativePath: ..\.polyglot.pom.tycho
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.headless
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.headless.runtime
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.sdk
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.headless
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.headless.runtime
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.sdk
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters is goupId: org.eclipse.app4mc.migration, artifactId: features, relativePath: ..\.polyglot.pom.tycho
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.headless
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.headless.runtime
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.sdk
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.headless
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.headless.runtime
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.sdk
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless is goupId: org.eclipse.app4mc.migration, artifactId: features, relativePath: ..\.polyglot.pom.tycho
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.headless
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.headless.runtime
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.sdk
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime is goupId: org.eclipse.app4mc.migration, artifactId: features, relativePath: ..\.polyglot.pom.tycho
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.headless
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.headless.runtime
+[DEBUG] Adding module org.eclipse.app4mc.amalthea.converters.sdk
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk is goupId: org.eclipse.app4mc.migration, artifactId: features, relativePath: ..\.polyglot.pom.tycho
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.converters.p2repo
+[DEBUG] Adding module org.eclipse.app4mc.converters.product
+[DEBUG] Adding module org.eclipse.app4mc.converters.target
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Skip folder C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target because it does not match any common name [features, tests, plugins, bundles, sites, products, releng]
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.converters.p2repo
+[DEBUG] Adding module org.eclipse.app4mc.converters.product
+[DEBUG] Adding module org.eclipse.app4mc.converters.target
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target is goupId: org.eclipse.app4mc.migration, artifactId: releng, relativePath: ..\.polyglot.pom.tycho
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho
+[DEBUG] Generate aggregator pom for C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\pom.tycho
+[DEBUG] Adding module org.eclipse.app4mc.converters.p2repo
+[DEBUG] Adding module org.eclipse.app4mc.converters.product
+[DEBUG] Adding module org.eclipse.app4mc.converters.target
+[DEBUG] Derived parent for path C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng is goupId: org.eclipse.app4mc.migration, artifactId: parent, relativePath: ..\pom.xml
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=380200, ConflictMarker.markTime=208300, ConflictMarker.nodeCount=130, ConflictIdSorter.graphTime=209400, ConflictIdSorter.topsortTime=60700, ConflictIdSorter.conflictIdCount=57, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=4272200, ConflictResolver.conflictItemCount=128, DefaultDependencyCollector.collectTime=240157700, DefaultDependencyCollector.transformTime=5202200}
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:jar:2.3.0
+[DEBUG]    org.eclipse.tycho:tycho-core:jar:2.3.0:compile
+[DEBUG]       org.apache.maven:maven-core:jar:3.6.3:compile (version managed from default)
+[DEBUG]          org.apache.maven:maven-model:jar:3.6.3:compile (version managed from default)
+[DEBUG]          org.apache.maven:maven-settings:jar:3.6.3:compile (version managed from default)
+[DEBUG]          org.apache.maven:maven-settings-builder:jar:3.6.3:compile
+[DEBUG]             org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile
+[DEBUG]                org.sonatype.plexus:plexus-cipher:jar:1.7:compile (version managed from default)
+[DEBUG]          org.apache.maven:maven-builder-support:jar:3.6.3:compile
+[DEBUG]          org.apache.maven:maven-repository-metadata:jar:3.6.3:compile
+[DEBUG]          org.apache.maven:maven-artifact:jar:3.6.3:compile
+[DEBUG]          org.apache.maven:maven-model-builder:jar:3.6.3:compile
+[DEBUG]          org.apache.maven:maven-resolver-provider:jar:3.6.3:compile
+[DEBUG]             org.slf4j:slf4j-api:jar:1.7.29:compile
+[DEBUG]          org.apache.maven.resolver:maven-resolver-impl:jar:1.4.1:compile
+[DEBUG]          org.apache.maven.resolver:maven-resolver-api:jar:1.4.1:compile
+[DEBUG]          org.apache.maven.resolver:maven-resolver-spi:jar:1.4.1:compile
+[DEBUG]          org.apache.maven.resolver:maven-resolver-util:jar:1.4.1:compile
+[DEBUG]          org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile
+[DEBUG]             commons-io:commons-io:jar:2.5:compile
+[DEBUG]          org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:provided (scope managed from default) (version managed from default)
+[DEBUG]             javax.enterprise:cdi-api:jar:1.0:provided
+[DEBUG]                javax.annotation:jsr250-api:jar:1.0:provided
+[DEBUG]          org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4:compile
+[DEBUG]          com.google.inject:guice:jar:no_aop:4.2.1:compile
+[DEBUG]             aopalliance:aopalliance:jar:1.0:compile
+[DEBUG]             com.google.guava:guava:jar:25.1-android:compile
+[DEBUG]                com.google.code.findbugs:jsr305:jar:3.0.2:compile
+[DEBUG]                org.checkerframework:checker-compat-qual:jar:2.0.0:compile
+[DEBUG]                com.google.errorprone:error_prone_annotations:jar:2.1.3:compile
+[DEBUG]                com.google.j2objc:j2objc-annotations:jar:1.1:compile
+[DEBUG]                org.codehaus.mojo:animal-sniffer-annotations:jar:1.14:compile
+[DEBUG]          javax.inject:javax.inject:jar:1:compile
+[DEBUG]          org.codehaus.plexus:plexus-utils:jar:3.3.0:compile (version managed from default)
+[DEBUG]          org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile
+[DEBUG]          org.apache.commons:commons-lang3:jar:3.8.1:compile
+[DEBUG]       org.apache.maven:maven-plugin-api:jar:3.6.3:compile (version managed from default)
+[DEBUG]       org.eclipse.tycho:org.eclipse.tycho.p2.tools.shared:jar:2.3.0:compile
+[DEBUG]       org.eclipse.tycho:org.eclipse.tycho.p2.resolver.shared:jar:2.3.0:compile
+[DEBUG]       org.codehaus.plexus:plexus-archiver:jar:4.2.2:compile (version managed from default)
+[DEBUG]          org.codehaus.plexus:plexus-io:jar:3.2.0:compile (version managed from default)
+[DEBUG]          org.apache.commons:commons-compress:jar:1.20:compile (version managed from default)
+[DEBUG]          org.iq80.snappy:snappy:jar:0.4:compile
+[DEBUG]          org.tukaani:xz:jar:1.8:runtime
+[DEBUG]       org.eclipse.tycho:sisu-equinox-embedder:jar:2.3.0:compile
+[DEBUG]          org.eclipse.platform:org.eclipse.osgi:jar:3.16.200:compile (version managed from default)
+[DEBUG]          org.eclipse.tycho:sisu-equinox-api:jar:2.3.0:compile
+[DEBUG]       org.eclipse.tycho:tycho-metadata-model:jar:2.3.0:compile
+[DEBUG]          de.pdark:decentxml:jar:1.4:compile (version managed from default)
+[DEBUG]       org.eclipse.tycho:tycho-embedder-api:jar:2.3.0:compile
+[DEBUG]          org.eclipse.tycho:org.eclipse.tycho.embedder.shared:jar:2.3.0:compile
+[DEBUG]       org.eclipse.tycho:org.eclipse.tycho.core.shared:jar:2.3.0:compile
+[DEBUG]       org.apache.maven:maven-compat:jar:3.6.3:compile (version managed from default)
+[DEBUG]          org.codehaus.plexus:plexus-interpolation:jar:1.25:compile
+[DEBUG]          org.apache.maven.wagon:wagon-provider-api:jar:3.3.4:compile
+[DEBUG]    org.eclipse.tycho:tycho-p2-facade:jar:2.3.0:compile
+[DEBUG]       org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile (version managed from default)
+[DEBUG] Created new class realm extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0
+[DEBUG] Importing foreign packages into class realm extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0
+[DEBUG]   Imported:  < maven.api
+[DEBUG] Populating class realm extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0
+[DEBUG]   Included: org.eclipse.tycho:tycho-maven-plugin:jar:2.3.0
+[DEBUG]   Included: org.eclipse.tycho:tycho-core:jar:2.3.0
+[DEBUG]   Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4
+[DEBUG]   Included: org.sonatype.plexus:plexus-cipher:jar:1.7
+[DEBUG]   Included: org.apache.maven:maven-builder-support:jar:3.6.3
+[DEBUG]   Included: org.apache.maven.resolver:maven-resolver-util:jar:1.4.1
+[DEBUG]   Included: org.apache.maven.shared:maven-shared-utils:jar:3.2.1
+[DEBUG]   Included: commons-io:commons-io:jar:2.5
+[DEBUG]   Included: org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4
+[DEBUG]   Included: com.google.inject:guice:jar:no_aop:4.2.1
+[DEBUG]   Included: aopalliance:aopalliance:jar:1.0
+[DEBUG]   Included: com.google.guava:guava:jar:25.1-android
+[DEBUG]   Included: com.google.code.findbugs:jsr305:jar:3.0.2
+[DEBUG]   Included: org.checkerframework:checker-compat-qual:jar:2.0.0
+[DEBUG]   Included: com.google.errorprone:error_prone_annotations:jar:2.1.3
+[DEBUG]   Included: com.google.j2objc:j2objc-annotations:jar:1.1
+[DEBUG]   Included: org.codehaus.mojo:animal-sniffer-annotations:jar:1.14
+[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:3.3.0
+[DEBUG]   Included: org.apache.commons:commons-lang3:jar:3.8.1
+[DEBUG]   Included: org.eclipse.tycho:org.eclipse.tycho.p2.tools.shared:jar:2.3.0
+[DEBUG]   Included: org.eclipse.tycho:org.eclipse.tycho.p2.resolver.shared:jar:2.3.0
+[DEBUG]   Included: org.codehaus.plexus:plexus-archiver:jar:4.2.2
+[DEBUG]   Included: org.codehaus.plexus:plexus-io:jar:3.2.0
+[DEBUG]   Included: org.apache.commons:commons-compress:jar:1.20
+[DEBUG]   Included: org.iq80.snappy:snappy:jar:0.4
+[DEBUG]   Included: org.tukaani:xz:jar:1.8
+[DEBUG]   Included: org.eclipse.tycho:sisu-equinox-embedder:jar:2.3.0
+[DEBUG]   Included: org.eclipse.platform:org.eclipse.osgi:jar:3.16.200
+[DEBUG]   Included: org.eclipse.tycho:sisu-equinox-api:jar:2.3.0
+[DEBUG]   Included: org.eclipse.tycho:tycho-metadata-model:jar:2.3.0
+[DEBUG]   Included: de.pdark:decentxml:jar:1.4
+[DEBUG]   Included: org.eclipse.tycho:tycho-embedder-api:jar:2.3.0
+[DEBUG]   Included: org.eclipse.tycho:org.eclipse.tycho.embedder.shared:jar:2.3.0
+[DEBUG]   Included: org.eclipse.tycho:org.eclipse.tycho.core.shared:jar:2.3.0
+[DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.25
+[DEBUG]   Included: org.eclipse.tycho:tycho-p2-facade:jar:2.3.0
+[DEBUG]   Included: org.codehaus.plexus:plexus-component-annotations:jar:2.1.0
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:parent:pom:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Created new class realm project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT
+[DEBUG] Populating class realm project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT
+[DEBUG] Looking up lifecycle mappings for packaging pom from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:plugins:pom:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging pom from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:eclipse-plugin:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging eclipse-plugin from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:eclipse-plugin:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging eclipse-plugin from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:eclipse-plugin:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging eclipse-plugin from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:eclipse-plugin:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging eclipse-plugin from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:eclipse-plugin:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging eclipse-plugin from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:eclipse-plugin:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging eclipse-plugin from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:eclipse-plugin:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging eclipse-plugin from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:eclipse-plugin:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging eclipse-plugin from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:eclipse-plugin:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging eclipse-plugin from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:eclipse-plugin:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging eclipse-plugin from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:eclipse-plugin:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging eclipse-plugin from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:eclipse-plugin:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging eclipse-plugin from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:eclipse-plugin:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging eclipse-plugin from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:eclipse-plugin:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging eclipse-plugin from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:eclipse-plugin:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging eclipse-plugin from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:eclipse-plugin:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging eclipse-plugin from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:eclipse-plugin:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging eclipse-plugin from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:eclipse-plugin:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging eclipse-plugin from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:eclipse-plugin:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging eclipse-plugin from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:tests:pom:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging pom from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:eclipse-test-plugin:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging eclipse-test-plugin from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:eclipse-test-plugin:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging eclipse-test-plugin from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:eclipse-test-plugin:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging eclipse-test-plugin from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:eclipse-test-plugin:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging eclipse-test-plugin from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:eclipse-test-plugin:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging eclipse-test-plugin from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:eclipse-test-plugin:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging eclipse-test-plugin from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:eclipse-test-plugin:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging eclipse-test-plugin from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:eclipse-test-plugin:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging eclipse-test-plugin from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:eclipse-test-plugin:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging eclipse-test-plugin from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:eclipse-test-plugin:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging eclipse-test-plugin from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:eclipse-test-plugin:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging eclipse-test-plugin from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:eclipse-test-plugin:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging eclipse-test-plugin from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:eclipse-test-plugin:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging eclipse-test-plugin from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:eclipse-test-plugin:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging eclipse-test-plugin from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:eclipse-test-plugin:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging eclipse-test-plugin from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:eclipse-test-plugin:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging eclipse-test-plugin from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:features:pom:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging pom from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:eclipse-feature:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging eclipse-feature from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:eclipse-feature:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging eclipse-feature from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:eclipse-feature:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging eclipse-feature from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:eclipse-feature:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging eclipse-feature from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:releng:pom:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging pom from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:eclipse-repository:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging eclipse-repository from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:headless:eclipse-repository:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging eclipse-repository from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] Extension realms for project org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:eclipse-target-definition:1.1.0-SNAPSHOT: [ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]]
+[DEBUG] Looking up lifecycle mappings for packaging eclipse-target-definition from ClassRealm[project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT, parent: ClassRealm[maven.api, parent: null]]
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-p2-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-compiler-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-p2-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-compiler-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-p2-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-compiler-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-p2-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-compiler-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-p2-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-compiler-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-p2-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-compiler-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-p2-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-compiler-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-p2-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-compiler-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-p2-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-compiler-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-p2-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-compiler-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-p2-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-compiler-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-p2-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-compiler-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-p2-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-compiler-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-p2-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-compiler-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-p2-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-compiler-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-p2-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-compiler-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-p2-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-compiler-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml
+[DEBUG] org.eclipse.tycho:tycho-p2-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml
+[DEBUG] org.eclipse.tycho:tycho-compiler-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-p2-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-compiler-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-p2-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-compiler-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-p2-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-compiler-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-p2-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-compiler-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-p2-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-compiler-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-p2-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-compiler-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-p2-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-compiler-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-p2-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-compiler-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-p2-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-compiler-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-p2-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-compiler-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-p2-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-compiler-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-p2-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-compiler-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-p2-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-compiler-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-p2-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-compiler-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-p2-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-compiler-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-p2-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-compiler-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-p2-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-compiler-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml
+[DEBUG] org.eclipse.tycho:tycho-p2-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml
+[DEBUG] org.eclipse.tycho:tycho-p2-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml
+[DEBUG] org.eclipse.tycho:tycho-p2-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml
+[DEBUG] org.eclipse.tycho:tycho-p2-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml
+[DEBUG] org.eclipse.tycho:tycho-p2-repository-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml
+[DEBUG] org.eclipse.tycho:tycho-p2-director-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml
+[DEBUG] org.eclipse.tycho:tycho-p2-publisher-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml
+[DEBUG] org.eclipse.tycho:tycho-p2-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml
+[DEBUG] org.eclipse.tycho:tycho-p2-repository-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml
+[DEBUG] org.eclipse.tycho:tycho-p2-director-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml
+[DEBUG] org.eclipse.tycho:tycho-p2-publisher-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml
+[DEBUG] org.eclipse.tycho:tycho-p2-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho
+[DEBUG] org.eclipse.tycho:tycho-maven-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:2.3.0 configured in MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target
+[DEBUG] target-platform-configuration for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF:
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <environments>
+    <environment>
+      <os>win32</os>
+      <ws>win32</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>linux</os>
+      <ws>gtk</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>macosx</os>
+      <ws>cocoa</ws>
+      <arch>x86_64</arch>
+    </environment>
+  </environments>
+  <target>
+    <artifact>
+      <groupId>org.eclipse.app4mc.migration</groupId>
+      <artifactId>org.eclipse.app4mc.converters.target</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+    </artifact>
+  </target>
+  <targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource>
+  <dependency-resolution>
+    <extraRequirements>
+      <requirement>
+        <type>eclipse-plugin</type>
+        <id>javax.annotation</id>
+        <versionRange>0.0.0</versionRange>
+      </requirement>
+    </extraRequirements>
+  </dependency-resolution>
+</configuration>
+Debug options:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/.options not found
+Time to load bundles: 198
+[DEBUG] Clearing proxy settings in OSGi runtime
+[DEBUG] Configuring proxy for protocol http: host=localhost, port=3128, nonProxyHosts=null
+!SESSION 2021-04-22 08:26:05.471 -----------------------------------------------
+eclipse.buildId=unknown
+java.version=11.0.9.1
+java.vendor=AdoptOpenJDK
+BootLoader constants: OS=win32, ARCH=x86_64, WS=win32, NL=en_US
+Framework arguments:  -eclipse.keyring C:\Users\fad8pl\AppData\Local\Temp\tycho948349872078810786secure_storage
+Command-line arguments:  -eclipse.keyring C:\Users\fad8pl\AppData\Local\Temp\tycho948349872078810786secure_storage -debug -consoleLog
+
+!ENTRY org.eclipse.core.net 1 0 2021-04-22 08:26:05.472
+!MESSAGE System property http.proxyHost is not set but should be localhost.
+
+!ENTRY org.eclipse.core.net 1 0 2021-04-22 08:26:05.473
+!MESSAGE System property http.proxyPort is not set but should be 3128.
+[DEBUG] Configuring proxy for protocol https: host=localhost, port=3128, nonProxyHosts=null
+
+!ENTRY org.eclipse.core.net 1 0 2021-04-22 08:26:05.479
+!MESSAGE System property https.proxyHost is not set but should be localhost.
+
+!ENTRY org.eclipse.core.net 1 0 2021-04-22 08:26:05.480
+!MESSAGE System property https.proxyPort is not set but should be 3128.
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=608400, ConflictMarker.markTime=237400, ConflictMarker.nodeCount=251, ConflictIdSorter.graphTime=389400, ConflictIdSorter.topsortTime=75900, ConflictIdSorter.conflictIdCount=60, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=2479100, ConflictResolver.conflictItemCount=152, DefaultDependencyCollector.collectTime=41144800, DefaultDependencyCollector.transformTime=3846800}
+[DEBUG] org.eclipse.tycho:tycho-source-plugin:jar:2.3.0
+[DEBUG]    org.eclipse.tycho:tycho-p2-facade:jar:2.3.0:compile
+[DEBUG]       org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile (version managed from default)
+[DEBUG]       org.eclipse.tycho:sisu-equinox-embedder:jar:2.3.0:compile
+[DEBUG]          org.eclipse.platform:org.eclipse.osgi:jar:3.16.200:compile (version managed from default)
+[DEBUG]          org.eclipse.tycho:sisu-equinox-api:jar:2.3.0:compile
+[DEBUG]       org.eclipse.tycho:org.eclipse.tycho.p2.resolver.shared:jar:2.3.0:compile
+[DEBUG]       org.eclipse.tycho:org.eclipse.tycho.p2.tools.shared:jar:2.3.0:compile
+[DEBUG]    org.apache.maven:maven-core:jar:3.6.3:compile
+[DEBUG]       org.apache.maven:maven-model:jar:3.6.3:compile (version managed from default)
+[DEBUG]       org.apache.maven:maven-settings:jar:3.6.3:compile (version managed from default)
+[DEBUG]       org.apache.maven:maven-settings-builder:jar:3.6.3:compile
+[DEBUG]          org.codehaus.plexus:plexus-interpolation:jar:1.25:compile
+[DEBUG]          org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile
+[DEBUG]             org.sonatype.plexus:plexus-cipher:jar:1.7:compile (version managed from default)
+[DEBUG]       org.apache.maven:maven-builder-support:jar:3.6.3:compile
+[DEBUG]       org.apache.maven:maven-repository-metadata:jar:3.6.3:compile
+[DEBUG]       org.apache.maven:maven-artifact:jar:3.6.3:compile
+[DEBUG]       org.apache.maven:maven-model-builder:jar:3.6.3:compile
+[DEBUG]       org.apache.maven:maven-resolver-provider:jar:3.6.3:compile
+[DEBUG]          org.slf4j:slf4j-api:jar:1.7.29:compile
+[DEBUG]       org.apache.maven.resolver:maven-resolver-impl:jar:1.4.1:compile
+[DEBUG]       org.apache.maven.resolver:maven-resolver-api:jar:1.4.1:compile
+[DEBUG]       org.apache.maven.resolver:maven-resolver-spi:jar:1.4.1:compile
+[DEBUG]       org.apache.maven.resolver:maven-resolver-util:jar:1.4.1:compile
+[DEBUG]       org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile
+[DEBUG]          commons-io:commons-io:jar:2.5:compile
+[DEBUG]       org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:provided (scope managed from default) (version managed from default)
+[DEBUG]          javax.enterprise:cdi-api:jar:1.0:provided
+[DEBUG]             javax.annotation:jsr250-api:jar:1.0:provided
+[DEBUG]       org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4:compile
+[DEBUG]       com.google.inject:guice:jar:no_aop:4.2.1:compile
+[DEBUG]          aopalliance:aopalliance:jar:1.0:compile
+[DEBUG]          com.google.guava:guava:jar:25.1-android:compile
+[DEBUG]             com.google.code.findbugs:jsr305:jar:3.0.2:compile
+[DEBUG]             org.checkerframework:checker-compat-qual:jar:2.0.0:compile
+[DEBUG]             com.google.errorprone:error_prone_annotations:jar:2.1.3:compile
+[DEBUG]             com.google.j2objc:j2objc-annotations:jar:1.1:compile
+[DEBUG]             org.codehaus.mojo:animal-sniffer-annotations:jar:1.14:compile
+[DEBUG]       javax.inject:javax.inject:jar:1:compile
+[DEBUG]       org.codehaus.plexus:plexus-utils:jar:3.3.0:compile (version managed from default)
+[DEBUG]       org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile
+[DEBUG]       org.apache.commons:commons-lang3:jar:3.8.1:compile
+[DEBUG]    org.apache.maven:maven-plugin-api:jar:3.6.3:compile
+[DEBUG]    org.apache.maven.plugins:maven-source-plugin:jar:3.2.1:compile
+[DEBUG]       org.apache.maven:maven-archiver:jar:3.5.0:compile (version managed from default)
+[DEBUG]       org.codehaus.plexus:plexus-archiver:jar:4.2.2:compile (version managed from default)
+[DEBUG]          org.codehaus.plexus:plexus-io:jar:3.2.0:compile (version managed from default)
+[DEBUG]          org.apache.commons:commons-compress:jar:1.20:compile (version managed from default)
+[DEBUG]          org.iq80.snappy:snappy:jar:0.4:compile
+[DEBUG]          org.tukaani:xz:jar:1.8:runtime
+[DEBUG]    org.eclipse.tycho:tycho-core:jar:2.3.0:compile
+[DEBUG]       org.eclipse.tycho:tycho-metadata-model:jar:2.3.0:compile
+[DEBUG]       org.eclipse.tycho:tycho-embedder-api:jar:2.3.0:compile
+[DEBUG]          org.eclipse.tycho:org.eclipse.tycho.embedder.shared:jar:2.3.0:compile
+[DEBUG]       org.eclipse.tycho:org.eclipse.tycho.core.shared:jar:2.3.0:compile
+[DEBUG]       org.apache.maven:maven-compat:jar:3.6.3:compile (version managed from default)
+[DEBUG]          org.apache.maven.wagon:wagon-provider-api:jar:3.3.4:compile
+[DEBUG]    de.pdark:decentxml:jar:1.4:compile
+[DEBUG]    org.eclipse.tycho:tycho-packaging-plugin:jar:2.3.0:compile
+[DEBUG] Created new class realm plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0
+[DEBUG] Importing foreign packages into class realm plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0
+[DEBUG]   Imported:  < project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT
+[DEBUG] Populating class realm plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0
+[DEBUG]   Included: org.eclipse.tycho:tycho-source-plugin:jar:2.3.0
+[DEBUG]   Included: org.codehaus.plexus:plexus-component-annotations:jar:2.1.0
+[DEBUG]   Included: org.eclipse.platform:org.eclipse.osgi:jar:3.16.200
+[DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.25
+[DEBUG]   Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4
+[DEBUG]   Included: org.sonatype.plexus:plexus-cipher:jar:1.7
+[DEBUG]   Included: org.apache.maven:maven-builder-support:jar:3.6.3
+[DEBUG]   Included: org.apache.maven.resolver:maven-resolver-util:jar:1.4.1
+[DEBUG]   Included: org.apache.maven.shared:maven-shared-utils:jar:3.2.1
+[DEBUG]   Included: commons-io:commons-io:jar:2.5
+[DEBUG]   Included: org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4
+[DEBUG]   Included: com.google.inject:guice:jar:no_aop:4.2.1
+[DEBUG]   Included: aopalliance:aopalliance:jar:1.0
+[DEBUG]   Included: com.google.guava:guava:jar:25.1-android
+[DEBUG]   Included: com.google.code.findbugs:jsr305:jar:3.0.2
+[DEBUG]   Included: org.checkerframework:checker-compat-qual:jar:2.0.0
+[DEBUG]   Included: com.google.errorprone:error_prone_annotations:jar:2.1.3
+[DEBUG]   Included: com.google.j2objc:j2objc-annotations:jar:1.1
+[DEBUG]   Included: org.codehaus.mojo:animal-sniffer-annotations:jar:1.14
+[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:3.3.0
+[DEBUG]   Included: org.apache.commons:commons-lang3:jar:3.8.1
+[DEBUG]   Included: org.apache.maven.plugins:maven-source-plugin:jar:3.2.1
+[DEBUG]   Included: org.apache.maven:maven-archiver:jar:3.5.0
+[DEBUG]   Included: org.codehaus.plexus:plexus-archiver:jar:4.2.2
+[DEBUG]   Included: org.codehaus.plexus:plexus-io:jar:3.2.0
+[DEBUG]   Included: org.apache.commons:commons-compress:jar:1.20
+[DEBUG]   Included: org.iq80.snappy:snappy:jar:0.4
+[DEBUG]   Included: org.tukaani:xz:jar:1.8
+[DEBUG]   Included: org.eclipse.tycho:tycho-packaging-plugin:jar:2.3.0
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=593700, ConflictMarker.markTime=255199, ConflictMarker.nodeCount=360, ConflictIdSorter.graphTime=223100, ConflictIdSorter.topsortTime=80300, ConflictIdSorter.conflictIdCount=89, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=3405300, ConflictResolver.conflictItemCount=192, DefaultDependencyCollector.collectTime=150642500, DefaultDependencyCollector.transformTime=4606200}
+[DEBUG] org.eclipse.tycho:tycho-surefire-plugin:jar:2.3.0
+[DEBUG]    org.apache.maven:maven-plugin-api:jar:3.6.3:compile
+[DEBUG]       org.apache.maven:maven-model:jar:3.6.3:compile (version managed from default)
+[DEBUG]       org.apache.maven:maven-artifact:jar:3.6.3:compile
+[DEBUG]          org.apache.commons:commons-lang3:jar:3.8.1:compile
+[DEBUG]       org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:provided (scope managed from default) (version managed from default)
+[DEBUG]          javax.enterprise:cdi-api:jar:1.0:provided
+[DEBUG]             javax.annotation:jsr250-api:jar:1.0:provided
+[DEBUG]          org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4:compile
+[DEBUG]       org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile
+[DEBUG]    org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
+[DEBUG]    org.eclipse.tycho:tycho-core:jar:2.3.0:compile
+[DEBUG]       org.apache.maven:maven-core:jar:3.6.3:compile (version managed from default)
+[DEBUG]          org.apache.maven:maven-settings:jar:3.6.3:compile (version managed from default)
+[DEBUG]          org.apache.maven:maven-settings-builder:jar:3.6.3:compile
+[DEBUG]             org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile
+[DEBUG]                org.sonatype.plexus:plexus-cipher:jar:1.7:compile (version managed from default)
+[DEBUG]          org.apache.maven:maven-builder-support:jar:3.6.3:compile
+[DEBUG]          org.apache.maven:maven-repository-metadata:jar:3.6.3:compile
+[DEBUG]          org.apache.maven:maven-model-builder:jar:3.6.3:compile
+[DEBUG]          org.apache.maven:maven-resolver-provider:jar:3.6.3:compile
+[DEBUG]             org.slf4j:slf4j-api:jar:1.7.29:compile
+[DEBUG]          org.apache.maven.resolver:maven-resolver-impl:jar:1.4.1:compile
+[DEBUG]          org.apache.maven.resolver:maven-resolver-api:jar:1.4.1:compile
+[DEBUG]          org.apache.maven.resolver:maven-resolver-spi:jar:1.4.1:compile
+[DEBUG]          org.apache.maven.resolver:maven-resolver-util:jar:1.4.1:compile
+[DEBUG]          org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile
+[DEBUG]             commons-io:commons-io:jar:2.5:compile
+[DEBUG]          com.google.inject:guice:jar:no_aop:4.2.1:compile
+[DEBUG]             aopalliance:aopalliance:jar:1.0:compile
+[DEBUG]             com.google.guava:guava:jar:25.1-android:compile
+[DEBUG]                com.google.code.findbugs:jsr305:jar:3.0.2:compile
+[DEBUG]                org.checkerframework:checker-compat-qual:jar:2.0.0:compile
+[DEBUG]                com.google.errorprone:error_prone_annotations:jar:2.1.3:compile
+[DEBUG]                com.google.j2objc:j2objc-annotations:jar:1.1:compile
+[DEBUG]                org.codehaus.mojo:animal-sniffer-annotations:jar:1.14:compile
+[DEBUG]          javax.inject:javax.inject:jar:1:compile
+[DEBUG]       org.eclipse.tycho:org.eclipse.tycho.p2.tools.shared:jar:2.3.0:compile
+[DEBUG]       org.eclipse.tycho:org.eclipse.tycho.p2.resolver.shared:jar:2.3.0:compile
+[DEBUG]       org.codehaus.plexus:plexus-archiver:jar:4.2.2:compile (version managed from default)
+[DEBUG]          org.codehaus.plexus:plexus-io:jar:3.2.0:compile (version managed from default)
+[DEBUG]          org.apache.commons:commons-compress:jar:1.20:compile (version managed from default)
+[DEBUG]          org.iq80.snappy:snappy:jar:0.4:compile
+[DEBUG]          org.tukaani:xz:jar:1.8:runtime
+[DEBUG]       org.eclipse.tycho:sisu-equinox-embedder:jar:2.3.0:compile
+[DEBUG]          org.eclipse.platform:org.eclipse.osgi:jar:3.16.200:compile (version managed from default)
+[DEBUG]       org.eclipse.tycho:tycho-metadata-model:jar:2.3.0:compile
+[DEBUG]          de.pdark:decentxml:jar:1.4:compile (version managed from default)
+[DEBUG]       org.eclipse.tycho:tycho-embedder-api:jar:2.3.0:compile
+[DEBUG]          org.eclipse.tycho:org.eclipse.tycho.embedder.shared:jar:2.3.0:compile
+[DEBUG]       org.eclipse.tycho:org.eclipse.tycho.core.shared:jar:2.3.0:compile
+[DEBUG]       org.apache.maven:maven-compat:jar:3.6.3:compile (version managed from default)
+[DEBUG]          org.codehaus.plexus:plexus-interpolation:jar:1.25:compile
+[DEBUG]          org.apache.maven.wagon:wagon-provider-api:jar:3.3.4:compile
+[DEBUG]    org.eclipse.tycho:sisu-equinox-launching:jar:2.3.0:compile
+[DEBUG]       org.eclipse.tycho:sisu-equinox-api:jar:2.3.0:compile
+[DEBUG]       org.apache.commons:commons-exec:jar:1.3:compile (version managed from default)
+[DEBUG]    org.eclipse.tycho:org.eclipse.tycho.surefire.osgibooter:jar:2.3.0:runtime
+[DEBUG]    org.eclipse.tycho:org.eclipse.tycho.surefire.junit:jar:2.3.0:runtime
+[DEBUG]    org.eclipse.tycho:org.eclipse.tycho.surefire.junit4:jar:2.3.0:runtime
+[DEBUG]    org.eclipse.tycho:org.eclipse.tycho.surefire.junit47:jar:2.3.0:runtime
+[DEBUG]    org.eclipse.tycho:org.eclipse.tycho.surefire.junit5:jar:2.3.0:runtime
+[DEBUG]    org.eclipse.tycho:org.eclipse.tycho.surefire.junit54:jar:2.3.0:runtime
+[DEBUG]    org.eclipse.tycho:org.eclipse.tycho.surefire.junit55:jar:2.3.0:runtime
+[DEBUG]    org.eclipse.tycho:org.eclipse.tycho.surefire.junit56:jar:2.3.0:runtime
+[DEBUG]    org.eclipse.tycho:org.eclipse.tycho.surefire.junit57:jar:2.3.0:runtime
+[DEBUG]    org.eclipse.tycho:org.eclipse.tycho.surefire.testng:jar:2.3.0:runtime
+[DEBUG]    org.apache.maven.surefire:surefire-api:jar:2.22.2:compile
+[DEBUG]       org.apache.maven.surefire:surefire-logger-api:jar:2.22.2:compile
+[DEBUG]    org.eclipse.tycho:tycho-p2-facade:jar:2.3.0:compile
+[DEBUG]       org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile (version managed from default)
+[DEBUG]    org.apache.maven.surefire:maven-surefire-common:jar:2.22.2:compile
+[DEBUG]       org.apache.maven.plugin-tools:maven-plugin-annotations:jar:3.6.0:provided (scope managed from default) (version managed from default)
+[DEBUG]       org.apache.maven.surefire:surefire-booter:jar:2.22.2:compile
+[DEBUG]       org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile
+[DEBUG]          org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile
+[DEBUG]             junit:junit:jar:4.13.2:test (scope managed from default) (version managed from default)
+[DEBUG]                org.hamcrest:hamcrest-core:jar:2.2:test (scope managed from default) (version managed from default)
+[DEBUG]                   org.hamcrest:hamcrest:jar:2.2:test
+[DEBUG]             classworlds:classworlds:jar:1.1-alpha-2:compile
+[DEBUG]       org.apache.maven:maven-project:jar:2.2.1:compile
+[DEBUG]          org.apache.maven:maven-profile:jar:2.2.1:compile
+[DEBUG]          org.apache.maven:maven-artifact-manager:jar:2.2.1:compile
+[DEBUG]             backport-util-concurrent:backport-util-concurrent:jar:3.1:compile
+[DEBUG]          org.apache.maven:maven-plugin-registry:jar:2.2.1:compile
+[DEBUG]       org.apache.maven:maven-toolchain:jar:2.2.1:compile
+[DEBUG]       org.codehaus.plexus:plexus-java:jar:0.9.10:compile
+[DEBUG]          org.ow2.asm:asm:jar:6.2:compile
+[DEBUG]          com.thoughtworks.qdox:qdox:jar:2.0-M8:compile
+[DEBUG] Created new class realm plugin>org.eclipse.tycho:tycho-surefire-plugin:2.3.0
+[DEBUG] Importing foreign packages into class realm plugin>org.eclipse.tycho:tycho-surefire-plugin:2.3.0
+[DEBUG]   Imported:  < project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT
+[DEBUG] Populating class realm plugin>org.eclipse.tycho:tycho-surefire-plugin:2.3.0
+[DEBUG]   Included: org.eclipse.tycho:tycho-surefire-plugin:jar:2.3.0
+[DEBUG]   Included: org.apache.commons:commons-lang3:jar:3.8.1
+[DEBUG]   Included: org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4
+[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:3.3.0
+[DEBUG]   Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4
+[DEBUG]   Included: org.sonatype.plexus:plexus-cipher:jar:1.7
+[DEBUG]   Included: org.apache.maven:maven-builder-support:jar:3.6.3
+[DEBUG]   Included: org.apache.maven.resolver:maven-resolver-util:jar:1.4.1
+[DEBUG]   Included: org.apache.maven.shared:maven-shared-utils:jar:3.2.1
+[DEBUG]   Included: commons-io:commons-io:jar:2.5
+[DEBUG]   Included: com.google.inject:guice:jar:no_aop:4.2.1
+[DEBUG]   Included: aopalliance:aopalliance:jar:1.0
+[DEBUG]   Included: com.google.guava:guava:jar:25.1-android
+[DEBUG]   Included: com.google.code.findbugs:jsr305:jar:3.0.2
+[DEBUG]   Included: org.checkerframework:checker-compat-qual:jar:2.0.0
+[DEBUG]   Included: com.google.errorprone:error_prone_annotations:jar:2.1.3
+[DEBUG]   Included: com.google.j2objc:j2objc-annotations:jar:1.1
+[DEBUG]   Included: org.codehaus.mojo:animal-sniffer-annotations:jar:1.14
+[DEBUG]   Included: org.codehaus.plexus:plexus-archiver:jar:4.2.2
+[DEBUG]   Included: org.codehaus.plexus:plexus-io:jar:3.2.0
+[DEBUG]   Included: org.apache.commons:commons-compress:jar:1.20
+[DEBUG]   Included: org.iq80.snappy:snappy:jar:0.4
+[DEBUG]   Included: org.tukaani:xz:jar:1.8
+[DEBUG]   Included: org.eclipse.platform:org.eclipse.osgi:jar:3.16.200
+[DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.25
+[DEBUG]   Included: org.eclipse.tycho:sisu-equinox-launching:jar:2.3.0
+[DEBUG]   Included: org.apache.commons:commons-exec:jar:1.3
+[DEBUG]   Included: org.eclipse.tycho:org.eclipse.tycho.surefire.osgibooter:jar:2.3.0
+[DEBUG]   Included: org.eclipse.tycho:org.eclipse.tycho.surefire.junit:jar:2.3.0
+[DEBUG]   Included: org.eclipse.tycho:org.eclipse.tycho.surefire.junit4:jar:2.3.0
+[DEBUG]   Included: org.eclipse.tycho:org.eclipse.tycho.surefire.junit47:jar:2.3.0
+[DEBUG]   Included: org.eclipse.tycho:org.eclipse.tycho.surefire.junit5:jar:2.3.0
+[DEBUG]   Included: org.eclipse.tycho:org.eclipse.tycho.surefire.junit54:jar:2.3.0
+[DEBUG]   Included: org.eclipse.tycho:org.eclipse.tycho.surefire.junit55:jar:2.3.0
+[DEBUG]   Included: org.eclipse.tycho:org.eclipse.tycho.surefire.junit56:jar:2.3.0
+[DEBUG]   Included: org.eclipse.tycho:org.eclipse.tycho.surefire.junit57:jar:2.3.0
+[DEBUG]   Included: org.eclipse.tycho:org.eclipse.tycho.surefire.testng:jar:2.3.0
+[DEBUG]   Included: org.apache.maven.surefire:surefire-api:jar:2.22.2
+[DEBUG]   Included: org.apache.maven.surefire:surefire-logger-api:jar:2.22.2
+[DEBUG]   Included: org.codehaus.plexus:plexus-component-annotations:jar:2.1.0
+[DEBUG]   Included: org.apache.maven.surefire:maven-surefire-common:jar:2.22.2
+[DEBUG]   Included: org.apache.maven.surefire:surefire-booter:jar:2.22.2
+[DEBUG]   Included: backport-util-concurrent:backport-util-concurrent:jar:3.1
+[DEBUG]   Included: org.codehaus.plexus:plexus-java:jar:0.9.10
+[DEBUG]   Included: org.ow2.asm:asm:jar:6.2
+[DEBUG]   Included: com.thoughtworks.qdox:qdox:jar:2.0-M8
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=126200, ConflictMarker.markTime=48500, ConflictMarker.nodeCount=146, ConflictIdSorter.graphTime=57199, ConflictIdSorter.topsortTime=42401, ConflictIdSorter.conflictIdCount=64, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=838700, ConflictResolver.conflictItemCount=144, DefaultDependencyCollector.collectTime=15890900, DefaultDependencyCollector.transformTime=1138099}
+[DEBUG] org.eclipse.tycho:tycho-p2-plugin:jar:2.3.0
+[DEBUG]    org.apache.maven:maven-plugin-api:jar:3.6.3:compile
+[DEBUG]       org.apache.maven:maven-model:jar:3.6.3:compile (version managed from default)
+[DEBUG]       org.apache.maven:maven-artifact:jar:3.6.3:compile
+[DEBUG]       org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:provided (scope managed from default) (version managed from default)
+[DEBUG]          javax.enterprise:cdi-api:jar:1.0:provided
+[DEBUG]             javax.annotation:jsr250-api:jar:1.0:provided
+[DEBUG]       org.codehaus.plexus:plexus-utils:jar:3.3.0:compile (version managed from default)
+[DEBUG]       org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile
+[DEBUG]    org.apache.maven:maven-core:jar:3.6.3:compile
+[DEBUG]       org.apache.maven:maven-settings:jar:3.6.3:compile (version managed from default)
+[DEBUG]       org.apache.maven:maven-settings-builder:jar:3.6.3:compile
+[DEBUG]          org.codehaus.plexus:plexus-interpolation:jar:1.25:compile
+[DEBUG]          org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile
+[DEBUG]             org.sonatype.plexus:plexus-cipher:jar:1.7:compile (version managed from default)
+[DEBUG]       org.apache.maven:maven-builder-support:jar:3.6.3:compile
+[DEBUG]       org.apache.maven:maven-repository-metadata:jar:3.6.3:compile
+[DEBUG]       org.apache.maven:maven-model-builder:jar:3.6.3:compile
+[DEBUG]       org.apache.maven:maven-resolver-provider:jar:3.6.3:compile
+[DEBUG]          org.slf4j:slf4j-api:jar:1.7.29:compile
+[DEBUG]       org.apache.maven.resolver:maven-resolver-impl:jar:1.4.1:compile
+[DEBUG]       org.apache.maven.resolver:maven-resolver-api:jar:1.4.1:compile
+[DEBUG]       org.apache.maven.resolver:maven-resolver-spi:jar:1.4.1:compile
+[DEBUG]       org.apache.maven.resolver:maven-resolver-util:jar:1.4.1:compile
+[DEBUG]       org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile
+[DEBUG]          commons-io:commons-io:jar:2.5:compile
+[DEBUG]       org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4:compile
+[DEBUG]       com.google.inject:guice:jar:no_aop:4.2.1:compile
+[DEBUG]          aopalliance:aopalliance:jar:1.0:compile
+[DEBUG]          com.google.guava:guava:jar:25.1-android:compile
+[DEBUG]             com.google.code.findbugs:jsr305:jar:3.0.2:compile
+[DEBUG]             org.checkerframework:checker-compat-qual:jar:2.0.0:compile
+[DEBUG]             com.google.errorprone:error_prone_annotations:jar:2.1.3:compile
+[DEBUG]             com.google.j2objc:j2objc-annotations:jar:1.1:compile
+[DEBUG]             org.codehaus.mojo:animal-sniffer-annotations:jar:1.14:compile
+[DEBUG]       javax.inject:javax.inject:jar:1:compile
+[DEBUG]       org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile (version managed from default)
+[DEBUG]       org.apache.commons:commons-lang3:jar:3.8.1:compile
+[DEBUG]    org.eclipse.tycho:sisu-equinox-launching:jar:2.3.0:compile
+[DEBUG]       org.eclipse.tycho:tycho-core:jar:2.3.0:compile
+[DEBUG]          org.codehaus.plexus:plexus-archiver:jar:4.2.2:compile (version managed from default)
+[DEBUG]             org.codehaus.plexus:plexus-io:jar:3.2.0:compile (version managed from default)
+[DEBUG]             org.apache.commons:commons-compress:jar:1.20:compile (version managed from default)
+[DEBUG]             org.iq80.snappy:snappy:jar:0.4:compile
+[DEBUG]             org.tukaani:xz:jar:1.8:runtime
+[DEBUG]          org.eclipse.tycho:tycho-metadata-model:jar:2.3.0:compile
+[DEBUG]             de.pdark:decentxml:jar:1.4:compile (version managed from default)
+[DEBUG]          org.eclipse.tycho:tycho-embedder-api:jar:2.3.0:compile
+[DEBUG]             org.eclipse.tycho:org.eclipse.tycho.embedder.shared:jar:2.3.0:compile
+[DEBUG]          org.eclipse.tycho:org.eclipse.tycho.core.shared:jar:2.3.0:compile
+[DEBUG]          org.apache.maven:maven-compat:jar:3.6.3:compile (version managed from default)
+[DEBUG]             org.apache.maven.wagon:wagon-provider-api:jar:3.3.4:compile
+[DEBUG]       org.eclipse.tycho:sisu-equinox-api:jar:2.3.0:compile
+[DEBUG]       org.apache.commons:commons-exec:jar:1.3:compile (version managed from default)
+[DEBUG]    org.eclipse.tycho:tycho-p2-facade:jar:2.3.0:compile
+[DEBUG]       org.eclipse.tycho:sisu-equinox-embedder:jar:2.3.0:compile
+[DEBUG]          org.eclipse.platform:org.eclipse.osgi:jar:3.16.200:compile (version managed from default)
+[DEBUG]       org.eclipse.tycho:org.eclipse.tycho.p2.resolver.shared:jar:2.3.0:compile
+[DEBUG]       org.eclipse.tycho:org.eclipse.tycho.p2.tools.shared:jar:2.3.0:compile
+[DEBUG]    org.eclipse.tycho:tycho-artifactcomparator:jar:2.3.0:compile
+[DEBUG]       org.ow2.asm:asm-tree:jar:9.1:compile
+[DEBUG]          org.ow2.asm:asm:jar:9.1:compile
+[DEBUG]       org.ow2.asm:asm-util:jar:9.1:compile
+[DEBUG]          org.ow2.asm:asm-analysis:jar:9.1:compile
+[DEBUG] Created new class realm plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0
+[DEBUG] Importing foreign packages into class realm plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0
+[DEBUG]   Imported:  < project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT
+[DEBUG] Populating class realm plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0
+[DEBUG]   Included: org.eclipse.tycho:tycho-p2-plugin:jar:2.3.0
+[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:3.3.0
+[DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.25
+[DEBUG]   Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4
+[DEBUG]   Included: org.sonatype.plexus:plexus-cipher:jar:1.7
+[DEBUG]   Included: org.apache.maven:maven-builder-support:jar:3.6.3
+[DEBUG]   Included: org.apache.maven.resolver:maven-resolver-util:jar:1.4.1
+[DEBUG]   Included: org.apache.maven.shared:maven-shared-utils:jar:3.2.1
+[DEBUG]   Included: commons-io:commons-io:jar:2.5
+[DEBUG]   Included: org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4
+[DEBUG]   Included: com.google.inject:guice:jar:no_aop:4.2.1
+[DEBUG]   Included: aopalliance:aopalliance:jar:1.0
+[DEBUG]   Included: com.google.guava:guava:jar:25.1-android
+[DEBUG]   Included: com.google.code.findbugs:jsr305:jar:3.0.2
+[DEBUG]   Included: org.checkerframework:checker-compat-qual:jar:2.0.0
+[DEBUG]   Included: com.google.errorprone:error_prone_annotations:jar:2.1.3
+[DEBUG]   Included: com.google.j2objc:j2objc-annotations:jar:1.1
+[DEBUG]   Included: org.codehaus.mojo:animal-sniffer-annotations:jar:1.14
+[DEBUG]   Included: org.codehaus.plexus:plexus-component-annotations:jar:2.1.0
+[DEBUG]   Included: org.apache.commons:commons-lang3:jar:3.8.1
+[DEBUG]   Included: org.eclipse.tycho:sisu-equinox-launching:jar:2.3.0
+[DEBUG]   Included: org.codehaus.plexus:plexus-archiver:jar:4.2.2
+[DEBUG]   Included: org.codehaus.plexus:plexus-io:jar:3.2.0
+[DEBUG]   Included: org.apache.commons:commons-compress:jar:1.20
+[DEBUG]   Included: org.iq80.snappy:snappy:jar:0.4
+[DEBUG]   Included: org.tukaani:xz:jar:1.8
+[DEBUG]   Included: org.apache.commons:commons-exec:jar:1.3
+[DEBUG]   Included: org.eclipse.platform:org.eclipse.osgi:jar:3.16.200
+[DEBUG]   Included: org.eclipse.tycho:tycho-artifactcomparator:jar:2.3.0
+[DEBUG]   Included: org.ow2.asm:asm-tree:jar:9.1
+[DEBUG]   Included: org.ow2.asm:asm:jar:9.1
+[DEBUG]   Included: org.ow2.asm:asm-util:jar:9.1
+[DEBUG]   Included: org.ow2.asm:asm-analysis:jar:9.1
+[DEBUG] target-platform-configuration for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF:
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <environments>
+    <environment>
+      <os>win32</os>
+      <ws>win32</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>linux</os>
+      <ws>gtk</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>macosx</os>
+      <ws>cocoa</ws>
+      <arch>x86_64</arch>
+    </environment>
+  </environments>
+  <target>
+    <artifact>
+      <groupId>org.eclipse.app4mc.migration</groupId>
+      <artifactId>org.eclipse.app4mc.converters.target</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+    </artifact>
+  </target>
+  <targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource>
+  <dependency-resolution>
+    <extraRequirements>
+      <requirement>
+        <type>eclipse-plugin</type>
+        <id>javax.annotation</id>
+        <versionRange>0.0.0</versionRange>
+      </requirement>
+    </extraRequirements>
+  </dependency-resolution>
+</configuration>
+[DEBUG] target-platform-configuration for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF:
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <environments>
+    <environment>
+      <os>win32</os>
+      <ws>win32</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>linux</os>
+      <ws>gtk</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>macosx</os>
+      <ws>cocoa</ws>
+      <arch>x86_64</arch>
+    </environment>
+  </environments>
+  <target>
+    <artifact>
+      <groupId>org.eclipse.app4mc.migration</groupId>
+      <artifactId>org.eclipse.app4mc.converters.target</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+    </artifact>
+  </target>
+  <targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource>
+  <dependency-resolution>
+    <extraRequirements>
+      <requirement>
+        <type>eclipse-plugin</type>
+        <id>javax.annotation</id>
+        <versionRange>0.0.0</versionRange>
+      </requirement>
+    </extraRequirements>
+  </dependency-resolution>
+</configuration>
+[DEBUG] target-platform-configuration for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF:
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <environments>
+    <environment>
+      <os>win32</os>
+      <ws>win32</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>linux</os>
+      <ws>gtk</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>macosx</os>
+      <ws>cocoa</ws>
+      <arch>x86_64</arch>
+    </environment>
+  </environments>
+  <target>
+    <artifact>
+      <groupId>org.eclipse.app4mc.migration</groupId>
+      <artifactId>org.eclipse.app4mc.converters.target</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+    </artifact>
+  </target>
+  <targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource>
+  <dependency-resolution>
+    <extraRequirements>
+      <requirement>
+        <type>eclipse-plugin</type>
+        <id>javax.annotation</id>
+        <versionRange>0.0.0</versionRange>
+      </requirement>
+    </extraRequirements>
+  </dependency-resolution>
+</configuration>
+[DEBUG] target-platform-configuration for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF:
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <environments>
+    <environment>
+      <os>win32</os>
+      <ws>win32</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>linux</os>
+      <ws>gtk</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>macosx</os>
+      <ws>cocoa</ws>
+      <arch>x86_64</arch>
+    </environment>
+  </environments>
+  <target>
+    <artifact>
+      <groupId>org.eclipse.app4mc.migration</groupId>
+      <artifactId>org.eclipse.app4mc.converters.target</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+    </artifact>
+  </target>
+  <targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource>
+  <dependency-resolution>
+    <extraRequirements>
+      <requirement>
+        <type>eclipse-plugin</type>
+        <id>javax.annotation</id>
+        <versionRange>0.0.0</versionRange>
+      </requirement>
+    </extraRequirements>
+  </dependency-resolution>
+</configuration>
+[DEBUG] target-platform-configuration for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF:
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <environments>
+    <environment>
+      <os>win32</os>
+      <ws>win32</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>linux</os>
+      <ws>gtk</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>macosx</os>
+      <ws>cocoa</ws>
+      <arch>x86_64</arch>
+    </environment>
+  </environments>
+  <target>
+    <artifact>
+      <groupId>org.eclipse.app4mc.migration</groupId>
+      <artifactId>org.eclipse.app4mc.converters.target</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+    </artifact>
+  </target>
+  <targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource>
+  <dependency-resolution>
+    <extraRequirements>
+      <requirement>
+        <type>eclipse-plugin</type>
+        <id>javax.annotation</id>
+        <versionRange>0.0.0</versionRange>
+      </requirement>
+    </extraRequirements>
+  </dependency-resolution>
+</configuration>
+[DEBUG] target-platform-configuration for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF:
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <environments>
+    <environment>
+      <os>win32</os>
+      <ws>win32</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>linux</os>
+      <ws>gtk</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>macosx</os>
+      <ws>cocoa</ws>
+      <arch>x86_64</arch>
+    </environment>
+  </environments>
+  <target>
+    <artifact>
+      <groupId>org.eclipse.app4mc.migration</groupId>
+      <artifactId>org.eclipse.app4mc.converters.target</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+    </artifact>
+  </target>
+  <targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource>
+  <dependency-resolution>
+    <extraRequirements>
+      <requirement>
+        <type>eclipse-plugin</type>
+        <id>javax.annotation</id>
+        <versionRange>0.0.0</versionRange>
+      </requirement>
+    </extraRequirements>
+  </dependency-resolution>
+</configuration>
+[DEBUG] target-platform-configuration for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF:
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <environments>
+    <environment>
+      <os>win32</os>
+      <ws>win32</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>linux</os>
+      <ws>gtk</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>macosx</os>
+      <ws>cocoa</ws>
+      <arch>x86_64</arch>
+    </environment>
+  </environments>
+  <target>
+    <artifact>
+      <groupId>org.eclipse.app4mc.migration</groupId>
+      <artifactId>org.eclipse.app4mc.converters.target</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+    </artifact>
+  </target>
+  <targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource>
+  <dependency-resolution>
+    <extraRequirements>
+      <requirement>
+        <type>eclipse-plugin</type>
+        <id>javax.annotation</id>
+        <versionRange>0.0.0</versionRange>
+      </requirement>
+    </extraRequirements>
+  </dependency-resolution>
+</configuration>
+[DEBUG] target-platform-configuration for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF:
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <environments>
+    <environment>
+      <os>win32</os>
+      <ws>win32</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>linux</os>
+      <ws>gtk</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>macosx</os>
+      <ws>cocoa</ws>
+      <arch>x86_64</arch>
+    </environment>
+  </environments>
+  <target>
+    <artifact>
+      <groupId>org.eclipse.app4mc.migration</groupId>
+      <artifactId>org.eclipse.app4mc.converters.target</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+    </artifact>
+  </target>
+  <targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource>
+  <dependency-resolution>
+    <extraRequirements>
+      <requirement>
+        <type>eclipse-plugin</type>
+        <id>javax.annotation</id>
+        <versionRange>0.0.0</versionRange>
+      </requirement>
+    </extraRequirements>
+  </dependency-resolution>
+</configuration>
+[DEBUG] target-platform-configuration for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF:
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <environments>
+    <environment>
+      <os>win32</os>
+      <ws>win32</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>linux</os>
+      <ws>gtk</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>macosx</os>
+      <ws>cocoa</ws>
+      <arch>x86_64</arch>
+    </environment>
+  </environments>
+  <target>
+    <artifact>
+      <groupId>org.eclipse.app4mc.migration</groupId>
+      <artifactId>org.eclipse.app4mc.converters.target</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+    </artifact>
+  </target>
+  <targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource>
+  <dependency-resolution>
+    <extraRequirements>
+      <requirement>
+        <type>eclipse-plugin</type>
+        <id>javax.annotation</id>
+        <versionRange>0.0.0</versionRange>
+      </requirement>
+    </extraRequirements>
+  </dependency-resolution>
+</configuration>
+[DEBUG] target-platform-configuration for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF:
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <environments>
+    <environment>
+      <os>win32</os>
+      <ws>win32</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>linux</os>
+      <ws>gtk</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>macosx</os>
+      <ws>cocoa</ws>
+      <arch>x86_64</arch>
+    </environment>
+  </environments>
+  <target>
+    <artifact>
+      <groupId>org.eclipse.app4mc.migration</groupId>
+      <artifactId>org.eclipse.app4mc.converters.target</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+    </artifact>
+  </target>
+  <targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource>
+  <dependency-resolution>
+    <extraRequirements>
+      <requirement>
+        <type>eclipse-plugin</type>
+        <id>javax.annotation</id>
+        <versionRange>0.0.0</versionRange>
+      </requirement>
+    </extraRequirements>
+  </dependency-resolution>
+</configuration>
+[DEBUG] target-platform-configuration for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF:
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <environments>
+    <environment>
+      <os>win32</os>
+      <ws>win32</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>linux</os>
+      <ws>gtk</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>macosx</os>
+      <ws>cocoa</ws>
+      <arch>x86_64</arch>
+    </environment>
+  </environments>
+  <target>
+    <artifact>
+      <groupId>org.eclipse.app4mc.migration</groupId>
+      <artifactId>org.eclipse.app4mc.converters.target</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+    </artifact>
+  </target>
+  <targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource>
+  <dependency-resolution>
+    <extraRequirements>
+      <requirement>
+        <type>eclipse-plugin</type>
+        <id>javax.annotation</id>
+        <versionRange>0.0.0</versionRange>
+      </requirement>
+    </extraRequirements>
+  </dependency-resolution>
+</configuration>
+[DEBUG] target-platform-configuration for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF:
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <environments>
+    <environment>
+      <os>win32</os>
+      <ws>win32</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>linux</os>
+      <ws>gtk</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>macosx</os>
+      <ws>cocoa</ws>
+      <arch>x86_64</arch>
+    </environment>
+  </environments>
+  <target>
+    <artifact>
+      <groupId>org.eclipse.app4mc.migration</groupId>
+      <artifactId>org.eclipse.app4mc.converters.target</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+    </artifact>
+  </target>
+  <targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource>
+  <dependency-resolution>
+    <extraRequirements>
+      <requirement>
+        <type>eclipse-plugin</type>
+        <id>javax.annotation</id>
+        <versionRange>0.0.0</versionRange>
+      </requirement>
+    </extraRequirements>
+  </dependency-resolution>
+</configuration>
+[DEBUG] target-platform-configuration for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF:
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <environments>
+    <environment>
+      <os>win32</os>
+      <ws>win32</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>linux</os>
+      <ws>gtk</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>macosx</os>
+      <ws>cocoa</ws>
+      <arch>x86_64</arch>
+    </environment>
+  </environments>
+  <target>
+    <artifact>
+      <groupId>org.eclipse.app4mc.migration</groupId>
+      <artifactId>org.eclipse.app4mc.converters.target</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+    </artifact>
+  </target>
+  <targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource>
+  <dependency-resolution>
+    <extraRequirements>
+      <requirement>
+        <type>eclipse-plugin</type>
+        <id>javax.annotation</id>
+        <versionRange>0.0.0</versionRange>
+      </requirement>
+    </extraRequirements>
+  </dependency-resolution>
+</configuration>
+[DEBUG] target-platform-configuration for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF:
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <environments>
+    <environment>
+      <os>win32</os>
+      <ws>win32</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>linux</os>
+      <ws>gtk</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>macosx</os>
+      <ws>cocoa</ws>
+      <arch>x86_64</arch>
+    </environment>
+  </environments>
+  <target>
+    <artifact>
+      <groupId>org.eclipse.app4mc.migration</groupId>
+      <artifactId>org.eclipse.app4mc.converters.target</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+    </artifact>
+  </target>
+  <targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource>
+  <dependency-resolution>
+    <extraRequirements>
+      <requirement>
+        <type>eclipse-plugin</type>
+        <id>javax.annotation</id>
+        <versionRange>0.0.0</versionRange>
+      </requirement>
+    </extraRequirements>
+  </dependency-resolution>
+</configuration>
+[DEBUG] target-platform-configuration for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF:
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <environments>
+    <environment>
+      <os>win32</os>
+      <ws>win32</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>linux</os>
+      <ws>gtk</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>macosx</os>
+      <ws>cocoa</ws>
+      <arch>x86_64</arch>
+    </environment>
+  </environments>
+  <target>
+    <artifact>
+      <groupId>org.eclipse.app4mc.migration</groupId>
+      <artifactId>org.eclipse.app4mc.converters.target</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+    </artifact>
+  </target>
+  <targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource>
+  <dependency-resolution>
+    <extraRequirements>
+      <requirement>
+        <type>eclipse-plugin</type>
+        <id>javax.annotation</id>
+        <versionRange>0.0.0</versionRange>
+      </requirement>
+    </extraRequirements>
+  </dependency-resolution>
+</configuration>
+[DEBUG] target-platform-configuration for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF:
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <environments>
+    <environment>
+      <os>win32</os>
+      <ws>win32</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>linux</os>
+      <ws>gtk</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>macosx</os>
+      <ws>cocoa</ws>
+      <arch>x86_64</arch>
+    </environment>
+  </environments>
+  <target>
+    <artifact>
+      <groupId>org.eclipse.app4mc.migration</groupId>
+      <artifactId>org.eclipse.app4mc.converters.target</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+    </artifact>
+  </target>
+  <targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource>
+  <dependency-resolution>
+    <extraRequirements>
+      <requirement>
+        <type>eclipse-plugin</type>
+        <id>javax.annotation</id>
+        <versionRange>0.0.0</versionRange>
+      </requirement>
+    </extraRequirements>
+  </dependency-resolution>
+</configuration>
+[DEBUG] target-platform-configuration for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml:
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <environments>
+    <environment>
+      <os>win32</os>
+      <ws>win32</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>linux</os>
+      <ws>gtk</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>macosx</os>
+      <ws>cocoa</ws>
+      <arch>x86_64</arch>
+    </environment>
+  </environments>
+  <target>
+    <artifact>
+      <groupId>org.eclipse.app4mc.migration</groupId>
+      <artifactId>org.eclipse.app4mc.converters.target</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+    </artifact>
+  </target>
+  <targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource>
+  <dependency-resolution>
+    <extraRequirements>
+      <requirement>
+        <type>eclipse-plugin</type>
+        <id>javax.annotation</id>
+        <versionRange>0.0.0</versionRange>
+      </requirement>
+    </extraRequirements>
+  </dependency-resolution>
+</configuration>
+[DEBUG] target-platform-configuration for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF:
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <environments>
+    <environment>
+      <os>win32</os>
+      <ws>win32</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>linux</os>
+      <ws>gtk</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>macosx</os>
+      <ws>cocoa</ws>
+      <arch>x86_64</arch>
+    </environment>
+  </environments>
+  <target>
+    <artifact>
+      <groupId>org.eclipse.app4mc.migration</groupId>
+      <artifactId>org.eclipse.app4mc.converters.target</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+    </artifact>
+  </target>
+  <targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource>
+  <dependency-resolution>
+    <extraRequirements>
+      <requirement>
+        <type>eclipse-plugin</type>
+        <id>javax.annotation</id>
+        <versionRange>0.0.0</versionRange>
+      </requirement>
+    </extraRequirements>
+  </dependency-resolution>
+</configuration>
+[DEBUG] target-platform-configuration for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF:
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <environments>
+    <environment>
+      <os>win32</os>
+      <ws>win32</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>linux</os>
+      <ws>gtk</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>macosx</os>
+      <ws>cocoa</ws>
+      <arch>x86_64</arch>
+    </environment>
+  </environments>
+  <target>
+    <artifact>
+      <groupId>org.eclipse.app4mc.migration</groupId>
+      <artifactId>org.eclipse.app4mc.converters.target</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+    </artifact>
+  </target>
+  <targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource>
+  <dependency-resolution>
+    <extraRequirements>
+      <requirement>
+        <type>eclipse-plugin</type>
+        <id>javax.annotation</id>
+        <versionRange>0.0.0</versionRange>
+      </requirement>
+    </extraRequirements>
+  </dependency-resolution>
+</configuration>
+[DEBUG] target-platform-configuration for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF:
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <environments>
+    <environment>
+      <os>win32</os>
+      <ws>win32</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>linux</os>
+      <ws>gtk</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>macosx</os>
+      <ws>cocoa</ws>
+      <arch>x86_64</arch>
+    </environment>
+  </environments>
+  <target>
+    <artifact>
+      <groupId>org.eclipse.app4mc.migration</groupId>
+      <artifactId>org.eclipse.app4mc.converters.target</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+    </artifact>
+  </target>
+  <targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource>
+  <dependency-resolution>
+    <extraRequirements>
+      <requirement>
+        <type>eclipse-plugin</type>
+        <id>javax.annotation</id>
+        <versionRange>0.0.0</versionRange>
+      </requirement>
+    </extraRequirements>
+  </dependency-resolution>
+</configuration>
+[DEBUG] target-platform-configuration for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF:
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <environments>
+    <environment>
+      <os>win32</os>
+      <ws>win32</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>linux</os>
+      <ws>gtk</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>macosx</os>
+      <ws>cocoa</ws>
+      <arch>x86_64</arch>
+    </environment>
+  </environments>
+  <target>
+    <artifact>
+      <groupId>org.eclipse.app4mc.migration</groupId>
+      <artifactId>org.eclipse.app4mc.converters.target</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+    </artifact>
+  </target>
+  <targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource>
+  <dependency-resolution>
+    <extraRequirements>
+      <requirement>
+        <type>eclipse-plugin</type>
+        <id>javax.annotation</id>
+        <versionRange>0.0.0</versionRange>
+      </requirement>
+    </extraRequirements>
+  </dependency-resolution>
+</configuration>
+[DEBUG] target-platform-configuration for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF:
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <environments>
+    <environment>
+      <os>win32</os>
+      <ws>win32</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>linux</os>
+      <ws>gtk</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>macosx</os>
+      <ws>cocoa</ws>
+      <arch>x86_64</arch>
+    </environment>
+  </environments>
+  <target>
+    <artifact>
+      <groupId>org.eclipse.app4mc.migration</groupId>
+      <artifactId>org.eclipse.app4mc.converters.target</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+    </artifact>
+  </target>
+  <targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource>
+  <dependency-resolution>
+    <extraRequirements>
+      <requirement>
+        <type>eclipse-plugin</type>
+        <id>javax.annotation</id>
+        <versionRange>0.0.0</versionRange>
+      </requirement>
+    </extraRequirements>
+  </dependency-resolution>
+</configuration>
+[DEBUG] target-platform-configuration for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF:
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <environments>
+    <environment>
+      <os>win32</os>
+      <ws>win32</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>linux</os>
+      <ws>gtk</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>macosx</os>
+      <ws>cocoa</ws>
+      <arch>x86_64</arch>
+    </environment>
+  </environments>
+  <target>
+    <artifact>
+      <groupId>org.eclipse.app4mc.migration</groupId>
+      <artifactId>org.eclipse.app4mc.converters.target</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+    </artifact>
+  </target>
+  <targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource>
+  <dependency-resolution>
+    <extraRequirements>
+      <requirement>
+        <type>eclipse-plugin</type>
+        <id>javax.annotation</id>
+        <versionRange>0.0.0</versionRange>
+      </requirement>
+    </extraRequirements>
+  </dependency-resolution>
+</configuration>
+[DEBUG] target-platform-configuration for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF:
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <environments>
+    <environment>
+      <os>win32</os>
+      <ws>win32</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>linux</os>
+      <ws>gtk</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>macosx</os>
+      <ws>cocoa</ws>
+      <arch>x86_64</arch>
+    </environment>
+  </environments>
+  <target>
+    <artifact>
+      <groupId>org.eclipse.app4mc.migration</groupId>
+      <artifactId>org.eclipse.app4mc.converters.target</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+    </artifact>
+  </target>
+  <targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource>
+  <dependency-resolution>
+    <extraRequirements>
+      <requirement>
+        <type>eclipse-plugin</type>
+        <id>javax.annotation</id>
+        <versionRange>0.0.0</versionRange>
+      </requirement>
+    </extraRequirements>
+  </dependency-resolution>
+</configuration>
+[DEBUG] target-platform-configuration for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF:
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <environments>
+    <environment>
+      <os>win32</os>
+      <ws>win32</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>linux</os>
+      <ws>gtk</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>macosx</os>
+      <ws>cocoa</ws>
+      <arch>x86_64</arch>
+    </environment>
+  </environments>
+  <target>
+    <artifact>
+      <groupId>org.eclipse.app4mc.migration</groupId>
+      <artifactId>org.eclipse.app4mc.converters.target</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+    </artifact>
+  </target>
+  <targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource>
+  <dependency-resolution>
+    <extraRequirements>
+      <requirement>
+        <type>eclipse-plugin</type>
+        <id>javax.annotation</id>
+        <versionRange>0.0.0</versionRange>
+      </requirement>
+    </extraRequirements>
+  </dependency-resolution>
+</configuration>
+[DEBUG] target-platform-configuration for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF:
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <environments>
+    <environment>
+      <os>win32</os>
+      <ws>win32</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>linux</os>
+      <ws>gtk</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>macosx</os>
+      <ws>cocoa</ws>
+      <arch>x86_64</arch>
+    </environment>
+  </environments>
+  <target>
+    <artifact>
+      <groupId>org.eclipse.app4mc.migration</groupId>
+      <artifactId>org.eclipse.app4mc.converters.target</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+    </artifact>
+  </target>
+  <targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource>
+  <dependency-resolution>
+    <extraRequirements>
+      <requirement>
+        <type>eclipse-plugin</type>
+        <id>javax.annotation</id>
+        <versionRange>0.0.0</versionRange>
+      </requirement>
+    </extraRequirements>
+  </dependency-resolution>
+</configuration>
+[DEBUG] target-platform-configuration for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF:
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <environments>
+    <environment>
+      <os>win32</os>
+      <ws>win32</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>linux</os>
+      <ws>gtk</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>macosx</os>
+      <ws>cocoa</ws>
+      <arch>x86_64</arch>
+    </environment>
+  </environments>
+  <target>
+    <artifact>
+      <groupId>org.eclipse.app4mc.migration</groupId>
+      <artifactId>org.eclipse.app4mc.converters.target</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+    </artifact>
+  </target>
+  <targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource>
+  <dependency-resolution>
+    <extraRequirements>
+      <requirement>
+        <type>eclipse-plugin</type>
+        <id>javax.annotation</id>
+        <versionRange>0.0.0</versionRange>
+      </requirement>
+    </extraRequirements>
+  </dependency-resolution>
+</configuration>
+[DEBUG] target-platform-configuration for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF:
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <environments>
+    <environment>
+      <os>win32</os>
+      <ws>win32</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>linux</os>
+      <ws>gtk</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>macosx</os>
+      <ws>cocoa</ws>
+      <arch>x86_64</arch>
+    </environment>
+  </environments>
+  <target>
+    <artifact>
+      <groupId>org.eclipse.app4mc.migration</groupId>
+      <artifactId>org.eclipse.app4mc.converters.target</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+    </artifact>
+  </target>
+  <targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource>
+  <dependency-resolution>
+    <extraRequirements>
+      <requirement>
+        <type>eclipse-plugin</type>
+        <id>javax.annotation</id>
+        <versionRange>0.0.0</versionRange>
+      </requirement>
+    </extraRequirements>
+  </dependency-resolution>
+</configuration>
+[DEBUG] target-platform-configuration for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF:
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <environments>
+    <environment>
+      <os>win32</os>
+      <ws>win32</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>linux</os>
+      <ws>gtk</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>macosx</os>
+      <ws>cocoa</ws>
+      <arch>x86_64</arch>
+    </environment>
+  </environments>
+  <target>
+    <artifact>
+      <groupId>org.eclipse.app4mc.migration</groupId>
+      <artifactId>org.eclipse.app4mc.converters.target</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+    </artifact>
+  </target>
+  <targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource>
+  <dependency-resolution>
+    <extraRequirements>
+      <requirement>
+        <type>eclipse-plugin</type>
+        <id>javax.annotation</id>
+        <versionRange>0.0.0</versionRange>
+      </requirement>
+    </extraRequirements>
+  </dependency-resolution>
+</configuration>
+[DEBUG] target-platform-configuration for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF:
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <environments>
+    <environment>
+      <os>win32</os>
+      <ws>win32</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>linux</os>
+      <ws>gtk</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>macosx</os>
+      <ws>cocoa</ws>
+      <arch>x86_64</arch>
+    </environment>
+  </environments>
+  <target>
+    <artifact>
+      <groupId>org.eclipse.app4mc.migration</groupId>
+      <artifactId>org.eclipse.app4mc.converters.target</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+    </artifact>
+  </target>
+  <targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource>
+  <dependency-resolution>
+    <extraRequirements>
+      <requirement>
+        <type>eclipse-plugin</type>
+        <id>javax.annotation</id>
+        <versionRange>0.0.0</versionRange>
+      </requirement>
+    </extraRequirements>
+  </dependency-resolution>
+</configuration>
+[DEBUG] target-platform-configuration for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF:
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <environments>
+    <environment>
+      <os>win32</os>
+      <ws>win32</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>linux</os>
+      <ws>gtk</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>macosx</os>
+      <ws>cocoa</ws>
+      <arch>x86_64</arch>
+    </environment>
+  </environments>
+  <target>
+    <artifact>
+      <groupId>org.eclipse.app4mc.migration</groupId>
+      <artifactId>org.eclipse.app4mc.converters.target</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+    </artifact>
+  </target>
+  <targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource>
+  <dependency-resolution>
+    <extraRequirements>
+      <requirement>
+        <type>eclipse-plugin</type>
+        <id>javax.annotation</id>
+        <versionRange>0.0.0</versionRange>
+      </requirement>
+    </extraRequirements>
+  </dependency-resolution>
+</configuration>
+[DEBUG] target-platform-configuration for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF:
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <environments>
+    <environment>
+      <os>win32</os>
+      <ws>win32</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>linux</os>
+      <ws>gtk</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>macosx</os>
+      <ws>cocoa</ws>
+      <arch>x86_64</arch>
+    </environment>
+  </environments>
+  <target>
+    <artifact>
+      <groupId>org.eclipse.app4mc.migration</groupId>
+      <artifactId>org.eclipse.app4mc.converters.target</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+    </artifact>
+  </target>
+  <targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource>
+  <dependency-resolution>
+    <extraRequirements>
+      <requirement>
+        <type>eclipse-plugin</type>
+        <id>javax.annotation</id>
+        <versionRange>0.0.0</versionRange>
+      </requirement>
+    </extraRequirements>
+  </dependency-resolution>
+</configuration>
+[DEBUG] target-platform-configuration for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF:
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <environments>
+    <environment>
+      <os>win32</os>
+      <ws>win32</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>linux</os>
+      <ws>gtk</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>macosx</os>
+      <ws>cocoa</ws>
+      <arch>x86_64</arch>
+    </environment>
+  </environments>
+  <target>
+    <artifact>
+      <groupId>org.eclipse.app4mc.migration</groupId>
+      <artifactId>org.eclipse.app4mc.converters.target</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+    </artifact>
+  </target>
+  <targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource>
+  <dependency-resolution>
+    <extraRequirements>
+      <requirement>
+        <type>eclipse-plugin</type>
+        <id>javax.annotation</id>
+        <versionRange>0.0.0</versionRange>
+      </requirement>
+    </extraRequirements>
+  </dependency-resolution>
+</configuration>
+[DEBUG] target-platform-configuration for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF:
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <environments>
+    <environment>
+      <os>win32</os>
+      <ws>win32</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>linux</os>
+      <ws>gtk</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>macosx</os>
+      <ws>cocoa</ws>
+      <arch>x86_64</arch>
+    </environment>
+  </environments>
+  <target>
+    <artifact>
+      <groupId>org.eclipse.app4mc.migration</groupId>
+      <artifactId>org.eclipse.app4mc.converters.target</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+    </artifact>
+  </target>
+  <targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource>
+  <dependency-resolution>
+    <extraRequirements>
+      <requirement>
+        <type>eclipse-plugin</type>
+        <id>javax.annotation</id>
+        <versionRange>0.0.0</versionRange>
+      </requirement>
+    </extraRequirements>
+  </dependency-resolution>
+</configuration>
+[DEBUG] target-platform-configuration for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml:
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <environments>
+    <environment>
+      <os>win32</os>
+      <ws>win32</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>linux</os>
+      <ws>gtk</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>macosx</os>
+      <ws>cocoa</ws>
+      <arch>x86_64</arch>
+    </environment>
+  </environments>
+  <target>
+    <artifact>
+      <groupId>org.eclipse.app4mc.migration</groupId>
+      <artifactId>org.eclipse.app4mc.converters.target</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+    </artifact>
+  </target>
+  <targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource>
+  <dependency-resolution>
+    <extraRequirements>
+      <requirement>
+        <type>eclipse-plugin</type>
+        <id>javax.annotation</id>
+        <versionRange>0.0.0</versionRange>
+      </requirement>
+    </extraRequirements>
+  </dependency-resolution>
+</configuration>
+[DEBUG] target-platform-configuration for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml:
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <environments>
+    <environment>
+      <os>win32</os>
+      <ws>win32</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>linux</os>
+      <ws>gtk</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>macosx</os>
+      <ws>cocoa</ws>
+      <arch>x86_64</arch>
+    </environment>
+  </environments>
+  <target>
+    <artifact>
+      <groupId>org.eclipse.app4mc.migration</groupId>
+      <artifactId>org.eclipse.app4mc.converters.target</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+    </artifact>
+  </target>
+  <targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource>
+  <dependency-resolution>
+    <extraRequirements>
+      <requirement>
+        <type>eclipse-plugin</type>
+        <id>javax.annotation</id>
+        <versionRange>0.0.0</versionRange>
+      </requirement>
+    </extraRequirements>
+  </dependency-resolution>
+</configuration>
+[DEBUG] target-platform-configuration for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml:
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <environments>
+    <environment>
+      <os>win32</os>
+      <ws>win32</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>linux</os>
+      <ws>gtk</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>macosx</os>
+      <ws>cocoa</ws>
+      <arch>x86_64</arch>
+    </environment>
+  </environments>
+  <target>
+    <artifact>
+      <groupId>org.eclipse.app4mc.migration</groupId>
+      <artifactId>org.eclipse.app4mc.converters.target</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+    </artifact>
+  </target>
+  <targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource>
+  <dependency-resolution>
+    <extraRequirements>
+      <requirement>
+        <type>eclipse-plugin</type>
+        <id>javax.annotation</id>
+        <versionRange>0.0.0</versionRange>
+      </requirement>
+    </extraRequirements>
+  </dependency-resolution>
+</configuration>
+[DEBUG] target-platform-configuration for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml:
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <environments>
+    <environment>
+      <os>win32</os>
+      <ws>win32</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>linux</os>
+      <ws>gtk</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>macosx</os>
+      <ws>cocoa</ws>
+      <arch>x86_64</arch>
+    </environment>
+  </environments>
+  <target>
+    <artifact>
+      <groupId>org.eclipse.app4mc.migration</groupId>
+      <artifactId>org.eclipse.app4mc.converters.target</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+    </artifact>
+  </target>
+  <targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource>
+  <dependency-resolution>
+    <extraRequirements>
+      <requirement>
+        <type>eclipse-plugin</type>
+        <id>javax.annotation</id>
+        <versionRange>0.0.0</versionRange>
+      </requirement>
+    </extraRequirements>
+  </dependency-resolution>
+</configuration>
+[DEBUG] target-platform-configuration for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml:
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <environments>
+    <environment>
+      <os>win32</os>
+      <ws>win32</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>linux</os>
+      <ws>gtk</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>macosx</os>
+      <ws>cocoa</ws>
+      <arch>x86_64</arch>
+    </environment>
+  </environments>
+  <target>
+    <artifact>
+      <groupId>org.eclipse.app4mc.migration</groupId>
+      <artifactId>org.eclipse.app4mc.converters.target</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+    </artifact>
+  </target>
+  <targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource>
+  <dependency-resolution>
+    <extraRequirements>
+      <requirement>
+        <type>eclipse-plugin</type>
+        <id>javax.annotation</id>
+        <versionRange>0.0.0</versionRange>
+      </requirement>
+    </extraRequirements>
+  </dependency-resolution>
+</configuration>
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=110300, ConflictMarker.markTime=76500, ConflictMarker.nodeCount=130, ConflictIdSorter.graphTime=62501, ConflictIdSorter.topsortTime=45699, ConflictIdSorter.conflictIdCount=57, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=1127000, ConflictResolver.conflictItemCount=128, DefaultDependencyCollector.collectTime=5540600, DefaultDependencyCollector.transformTime=1461699}
+[DEBUG] org.eclipse.tycho:tycho-p2-repository-plugin:jar:2.3.0
+[DEBUG]    org.apache.maven:maven-plugin-api:jar:3.6.3:compile
+[DEBUG]       org.apache.maven:maven-model:jar:3.6.3:compile (version managed from default)
+[DEBUG]       org.apache.maven:maven-artifact:jar:3.6.3:compile
+[DEBUG]          org.apache.commons:commons-lang3:jar:3.8.1:compile
+[DEBUG]       org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:provided (scope managed from default) (version managed from default)
+[DEBUG]          javax.enterprise:cdi-api:jar:1.0:provided
+[DEBUG]             javax.annotation:jsr250-api:jar:1.0:provided
+[DEBUG]             javax.inject:javax.inject:jar:1:compile
+[DEBUG]          org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4:compile
+[DEBUG]       org.codehaus.plexus:plexus-utils:jar:3.3.0:compile (version managed from default)
+[DEBUG]       org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile
+[DEBUG]    org.eclipse.tycho:tycho-p2-facade:jar:2.3.0:compile
+[DEBUG]       org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile (version managed from default)
+[DEBUG]       org.eclipse.tycho:tycho-core:jar:2.3.0:compile
+[DEBUG]          org.apache.maven:maven-core:jar:3.6.3:compile (version managed from default)
+[DEBUG]             org.apache.maven:maven-settings:jar:3.6.3:compile (version managed from default)
+[DEBUG]             org.apache.maven:maven-settings-builder:jar:3.6.3:compile
+[DEBUG]                org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile
+[DEBUG]                   org.sonatype.plexus:plexus-cipher:jar:1.7:compile (version managed from default)
+[DEBUG]             org.apache.maven:maven-builder-support:jar:3.6.3:compile
+[DEBUG]             org.apache.maven:maven-repository-metadata:jar:3.6.3:compile
+[DEBUG]             org.apache.maven:maven-model-builder:jar:3.6.3:compile
+[DEBUG]             org.apache.maven:maven-resolver-provider:jar:3.6.3:compile
+[DEBUG]                org.slf4j:slf4j-api:jar:1.7.29:compile
+[DEBUG]             org.apache.maven.resolver:maven-resolver-impl:jar:1.4.1:compile
+[DEBUG]             org.apache.maven.resolver:maven-resolver-api:jar:1.4.1:compile
+[DEBUG]             org.apache.maven.resolver:maven-resolver-spi:jar:1.4.1:compile
+[DEBUG]             org.apache.maven.resolver:maven-resolver-util:jar:1.4.1:compile
+[DEBUG]             org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile
+[DEBUG]                commons-io:commons-io:jar:2.5:compile
+[DEBUG]             com.google.inject:guice:jar:no_aop:4.2.1:compile
+[DEBUG]                aopalliance:aopalliance:jar:1.0:compile
+[DEBUG]                com.google.guava:guava:jar:25.1-android:compile
+[DEBUG]                   com.google.code.findbugs:jsr305:jar:3.0.2:compile
+[DEBUG]                   org.checkerframework:checker-compat-qual:jar:2.0.0:compile
+[DEBUG]                   com.google.errorprone:error_prone_annotations:jar:2.1.3:compile
+[DEBUG]                   com.google.j2objc:j2objc-annotations:jar:1.1:compile
+[DEBUG]                   org.codehaus.mojo:animal-sniffer-annotations:jar:1.14:compile
+[DEBUG]          org.codehaus.plexus:plexus-archiver:jar:4.2.2:compile (version managed from default)
+[DEBUG]             org.codehaus.plexus:plexus-io:jar:3.2.0:compile (version managed from default)
+[DEBUG]             org.apache.commons:commons-compress:jar:1.20:compile (version managed from default)
+[DEBUG]             org.iq80.snappy:snappy:jar:0.4:compile
+[DEBUG]             org.tukaani:xz:jar:1.8:runtime
+[DEBUG]          org.eclipse.tycho:tycho-metadata-model:jar:2.3.0:compile
+[DEBUG]             de.pdark:decentxml:jar:1.4:compile (version managed from default)
+[DEBUG]          org.eclipse.tycho:tycho-embedder-api:jar:2.3.0:compile
+[DEBUG]             org.eclipse.tycho:org.eclipse.tycho.embedder.shared:jar:2.3.0:compile
+[DEBUG]          org.eclipse.tycho:org.eclipse.tycho.core.shared:jar:2.3.0:compile
+[DEBUG]          org.apache.maven:maven-compat:jar:3.6.3:compile (version managed from default)
+[DEBUG]             org.codehaus.plexus:plexus-interpolation:jar:1.25:compile
+[DEBUG]             org.apache.maven.wagon:wagon-provider-api:jar:3.3.4:compile
+[DEBUG]       org.eclipse.tycho:sisu-equinox-embedder:jar:2.3.0:compile
+[DEBUG]          org.eclipse.platform:org.eclipse.osgi:jar:3.16.200:compile (version managed from default)
+[DEBUG]          org.eclipse.tycho:sisu-equinox-api:jar:2.3.0:compile
+[DEBUG]       org.eclipse.tycho:org.eclipse.tycho.p2.resolver.shared:jar:2.3.0:compile
+[DEBUG]       org.eclipse.tycho:org.eclipse.tycho.p2.tools.shared:jar:2.3.0:compile
+[DEBUG] Created new class realm plugin>org.eclipse.tycho:tycho-p2-repository-plugin:2.3.0
+[DEBUG] Importing foreign packages into class realm plugin>org.eclipse.tycho:tycho-p2-repository-plugin:2.3.0
+[DEBUG]   Imported:  < project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT
+[DEBUG] Populating class realm plugin>org.eclipse.tycho:tycho-p2-repository-plugin:2.3.0
+[DEBUG]   Included: org.eclipse.tycho:tycho-p2-repository-plugin:jar:2.3.0
+[DEBUG]   Included: org.apache.commons:commons-lang3:jar:3.8.1
+[DEBUG]   Included: org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4
+[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:3.3.0
+[DEBUG]   Included: org.codehaus.plexus:plexus-component-annotations:jar:2.1.0
+[DEBUG]   Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4
+[DEBUG]   Included: org.sonatype.plexus:plexus-cipher:jar:1.7
+[DEBUG]   Included: org.apache.maven:maven-builder-support:jar:3.6.3
+[DEBUG]   Included: org.apache.maven.resolver:maven-resolver-util:jar:1.4.1
+[DEBUG]   Included: org.apache.maven.shared:maven-shared-utils:jar:3.2.1
+[DEBUG]   Included: commons-io:commons-io:jar:2.5
+[DEBUG]   Included: com.google.inject:guice:jar:no_aop:4.2.1
+[DEBUG]   Included: aopalliance:aopalliance:jar:1.0
+[DEBUG]   Included: com.google.guava:guava:jar:25.1-android
+[DEBUG]   Included: com.google.code.findbugs:jsr305:jar:3.0.2
+[DEBUG]   Included: org.checkerframework:checker-compat-qual:jar:2.0.0
+[DEBUG]   Included: com.google.errorprone:error_prone_annotations:jar:2.1.3
+[DEBUG]   Included: com.google.j2objc:j2objc-annotations:jar:1.1
+[DEBUG]   Included: org.codehaus.mojo:animal-sniffer-annotations:jar:1.14
+[DEBUG]   Included: org.codehaus.plexus:plexus-archiver:jar:4.2.2
+[DEBUG]   Included: org.codehaus.plexus:plexus-io:jar:3.2.0
+[DEBUG]   Included: org.apache.commons:commons-compress:jar:1.20
+[DEBUG]   Included: org.iq80.snappy:snappy:jar:0.4
+[DEBUG]   Included: org.tukaani:xz:jar:1.8
+[DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.25
+[DEBUG]   Included: org.eclipse.platform:org.eclipse.osgi:jar:3.16.200
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=194901, ConflictMarker.markTime=127400, ConflictMarker.nodeCount=138, ConflictIdSorter.graphTime=79199, ConflictIdSorter.topsortTime=115101, ConflictIdSorter.conflictIdCount=61, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=1456899, ConflictResolver.conflictItemCount=136, DefaultDependencyCollector.collectTime=13542700, DefaultDependencyCollector.transformTime=2017400}
+[DEBUG] org.eclipse.tycho:tycho-p2-director-plugin:jar:2.3.0
+[DEBUG]    org.apache.maven:maven-plugin-api:jar:3.6.3:compile
+[DEBUG]       org.apache.maven:maven-model:jar:3.6.3:compile (version managed from default)
+[DEBUG]       org.apache.maven:maven-artifact:jar:3.6.3:compile
+[DEBUG]       org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:provided (scope managed from default) (version managed from default)
+[DEBUG]          javax.enterprise:cdi-api:jar:1.0:provided
+[DEBUG]             javax.annotation:jsr250-api:jar:1.0:provided
+[DEBUG]       org.codehaus.plexus:plexus-utils:jar:3.3.0:compile (version managed from default)
+[DEBUG]       org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile
+[DEBUG]    org.apache.maven:maven-core:jar:3.6.3:compile
+[DEBUG]       org.apache.maven:maven-settings:jar:3.6.3:compile (version managed from default)
+[DEBUG]       org.apache.maven:maven-settings-builder:jar:3.6.3:compile
+[DEBUG]          org.codehaus.plexus:plexus-interpolation:jar:1.25:compile
+[DEBUG]          org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile
+[DEBUG]             org.sonatype.plexus:plexus-cipher:jar:1.7:compile (version managed from default)
+[DEBUG]       org.apache.maven:maven-builder-support:jar:3.6.3:compile
+[DEBUG]       org.apache.maven:maven-repository-metadata:jar:3.6.3:compile
+[DEBUG]       org.apache.maven:maven-model-builder:jar:3.6.3:compile
+[DEBUG]       org.apache.maven:maven-resolver-provider:jar:3.6.3:compile
+[DEBUG]          org.slf4j:slf4j-api:jar:1.7.29:compile
+[DEBUG]       org.apache.maven.resolver:maven-resolver-impl:jar:1.4.1:compile
+[DEBUG]       org.apache.maven.resolver:maven-resolver-api:jar:1.4.1:compile
+[DEBUG]       org.apache.maven.resolver:maven-resolver-spi:jar:1.4.1:compile
+[DEBUG]       org.apache.maven.resolver:maven-resolver-util:jar:1.4.1:compile
+[DEBUG]       org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile
+[DEBUG]          commons-io:commons-io:jar:2.5:compile
+[DEBUG]       org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4:compile
+[DEBUG]       com.google.inject:guice:jar:no_aop:4.2.1:compile
+[DEBUG]          aopalliance:aopalliance:jar:1.0:compile
+[DEBUG]          com.google.guava:guava:jar:25.1-android:compile
+[DEBUG]             com.google.code.findbugs:jsr305:jar:3.0.2:compile
+[DEBUG]             org.checkerframework:checker-compat-qual:jar:2.0.0:compile
+[DEBUG]             com.google.errorprone:error_prone_annotations:jar:2.1.3:compile
+[DEBUG]             com.google.j2objc:j2objc-annotations:jar:1.1:compile
+[DEBUG]             org.codehaus.mojo:animal-sniffer-annotations:jar:1.14:compile
+[DEBUG]       javax.inject:javax.inject:jar:1:compile
+[DEBUG]       org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile (version managed from default)
+[DEBUG]       org.apache.commons:commons-lang3:jar:3.8.1:compile
+[DEBUG]    org.eclipse.tycho:tycho-p2-facade:jar:2.3.0:compile
+[DEBUG]       org.eclipse.tycho:tycho-core:jar:2.3.0:compile
+[DEBUG]          org.codehaus.plexus:plexus-archiver:jar:4.2.2:compile (version managed from default)
+[DEBUG]             org.codehaus.plexus:plexus-io:jar:3.2.0:compile (version managed from default)
+[DEBUG]             org.iq80.snappy:snappy:jar:0.4:compile
+[DEBUG]             org.tukaani:xz:jar:1.8:runtime
+[DEBUG]          org.eclipse.tycho:tycho-metadata-model:jar:2.3.0:compile
+[DEBUG]             de.pdark:decentxml:jar:1.4:compile (version managed from default)
+[DEBUG]          org.eclipse.tycho:tycho-embedder-api:jar:2.3.0:compile
+[DEBUG]             org.eclipse.tycho:org.eclipse.tycho.embedder.shared:jar:2.3.0:compile
+[DEBUG]          org.eclipse.tycho:org.eclipse.tycho.core.shared:jar:2.3.0:compile
+[DEBUG]          org.apache.maven:maven-compat:jar:3.6.3:compile (version managed from default)
+[DEBUG]             org.apache.maven.wagon:wagon-provider-api:jar:3.3.4:compile
+[DEBUG]       org.eclipse.tycho:sisu-equinox-embedder:jar:2.3.0:compile
+[DEBUG]          org.eclipse.platform:org.eclipse.osgi:jar:3.16.200:compile (version managed from default)
+[DEBUG]       org.eclipse.tycho:org.eclipse.tycho.p2.resolver.shared:jar:2.3.0:compile
+[DEBUG]       org.eclipse.tycho:org.eclipse.tycho.p2.tools.shared:jar:2.3.0:compile
+[DEBUG]    org.eclipse.tycho:sisu-equinox-launching:jar:2.3.0:compile
+[DEBUG]       org.eclipse.tycho:sisu-equinox-api:jar:2.3.0:compile
+[DEBUG]       org.apache.commons:commons-exec:jar:1.3:compile (version managed from default)
+[DEBUG]    org.eclipse.tycho:tycho-bundles-external:zip:2.3.0:compile
+[DEBUG]    org.apache.commons:commons-compress:jar:1.20:compile
+[DEBUG]    org.apache.commons:commons-compress:jar:sources:1.20:compile
+[DEBUG] Created new class realm plugin>org.eclipse.tycho:tycho-p2-director-plugin:2.3.0
+[DEBUG] Importing foreign packages into class realm plugin>org.eclipse.tycho:tycho-p2-director-plugin:2.3.0
+[DEBUG]   Imported:  < project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT
+[DEBUG] Populating class realm plugin>org.eclipse.tycho:tycho-p2-director-plugin:2.3.0
+[DEBUG]   Included: org.eclipse.tycho:tycho-p2-director-plugin:jar:2.3.0
+[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:3.3.0
+[DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.25
+[DEBUG]   Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4
+[DEBUG]   Included: org.sonatype.plexus:plexus-cipher:jar:1.7
+[DEBUG]   Included: org.apache.maven:maven-builder-support:jar:3.6.3
+[DEBUG]   Included: org.apache.maven.resolver:maven-resolver-util:jar:1.4.1
+[DEBUG]   Included: org.apache.maven.shared:maven-shared-utils:jar:3.2.1
+[DEBUG]   Included: commons-io:commons-io:jar:2.5
+[DEBUG]   Included: org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4
+[DEBUG]   Included: com.google.inject:guice:jar:no_aop:4.2.1
+[DEBUG]   Included: aopalliance:aopalliance:jar:1.0
+[DEBUG]   Included: com.google.guava:guava:jar:25.1-android
+[DEBUG]   Included: com.google.code.findbugs:jsr305:jar:3.0.2
+[DEBUG]   Included: org.checkerframework:checker-compat-qual:jar:2.0.0
+[DEBUG]   Included: com.google.errorprone:error_prone_annotations:jar:2.1.3
+[DEBUG]   Included: com.google.j2objc:j2objc-annotations:jar:1.1
+[DEBUG]   Included: org.codehaus.mojo:animal-sniffer-annotations:jar:1.14
+[DEBUG]   Included: org.codehaus.plexus:plexus-component-annotations:jar:2.1.0
+[DEBUG]   Included: org.apache.commons:commons-lang3:jar:3.8.1
+[DEBUG]   Included: org.codehaus.plexus:plexus-archiver:jar:4.2.2
+[DEBUG]   Included: org.codehaus.plexus:plexus-io:jar:3.2.0
+[DEBUG]   Included: org.iq80.snappy:snappy:jar:0.4
+[DEBUG]   Included: org.tukaani:xz:jar:1.8
+[DEBUG]   Included: org.eclipse.platform:org.eclipse.osgi:jar:3.16.200
+[DEBUG]   Included: org.eclipse.tycho:sisu-equinox-launching:jar:2.3.0
+[DEBUG]   Included: org.apache.commons:commons-exec:jar:1.3
+[DEBUG]   Included: org.eclipse.tycho:tycho-bundles-external:zip:2.3.0
+[DEBUG]   Included: org.apache.commons:commons-compress:jar:1.20
+[DEBUG]   Included: org.apache.commons:commons-compress:jar:sources:1.20
+[DEBUG] Could not find metadata org.eclipse.platform:org.eclipse.osgi/maven-metadata.xml in local (C:\Users\fad8pl\.m2\repository)
+[DEBUG] Failure to find org.eclipse.platform:org.eclipse.osgi/maven-metadata.xml in http://repository.jboss.org/nexus/content/groups/public/ was cached in the local repository, resolution will not be reattempted until the update interval of jboss-public-repository-group has elapsed or updates are forced
+[DEBUG] Failure to find org.eclipse.platform:org.eclipse.osgi/maven-metadata.xml in https://repository.jboss.org/nexus/content/repositories/snapshots/ was cached in the local repository, resolution will not be reattempted until the update interval of jboss-snapshots-repository has elapsed or updates are forced
+[DEBUG] Failure to find org.eclipse.platform:org.eclipse.osgi/maven-metadata.xml in https://repo.eclipse.org/content/repositories/cbi-releases/ was cached in the local repository, resolution will not be reattempted until the update interval of cbi has elapsed or updates are forced
+[DEBUG] Skipped remote request for org.eclipse.platform:org.eclipse.osgi/maven-metadata.xml, locally cached metadata up-to-date.
+[DEBUG] Failure to find org.eclipse.platform:org.eclipse.osgi/maven-metadata.xml in https://repo.eclipse.org/content/repositories/tycho-snapshots/ was cached in the local repository, resolution will not be reattempted until the update interval of tycho-snapshots has elapsed or updates are forced
+[DEBUG] Failure to find org.eclipse.platform:org.eclipse.osgi/maven-metadata.xml in https://repository.jboss.org/nexus/content/repositories/releases/ was cached in the local repository, resolution will not be reattempted until the update interval of jboss-releases has elapsed or updates are forced
+[DEBUG] Skipped remote request for org.eclipse.platform:org.eclipse.osgi/maven-metadata.xml, locally cached metadata up-to-date.
+[DEBUG] Failure to find org.eclipse.platform:org.eclipse.osgi/maven-metadata.xml in https://maven.repository.redhat.com/ga/ was cached in the local repository, resolution will not be reattempted until the update interval of jboss-ga-repository has elapsed or updates are forced
+[DEBUG] Using mirror Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/) for central (http://repo1.maven.org/maven2).
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=304801, ConflictMarker.markTime=141199, ConflictMarker.nodeCount=447, ConflictIdSorter.graphTime=149300, ConflictIdSorter.topsortTime=52001, ConflictIdSorter.conflictIdCount=106, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=2162400, ConflictResolver.conflictItemCount=208, DefaultDependencyCollector.collectTime=364592100, DefaultDependencyCollector.transformTime=2840899}
+[DEBUG] org.jboss.tools.tycho-plugins:repository-utils:jar:2.2.0
+[DEBUG]    org.eclipse.tycho:tycho-p2-facade:jar:2.2.0:compile
+[DEBUG]       org.eclipse.tycho:sisu-equinox-embedder:jar:2.2.0:compile
+[DEBUG]          org.eclipse.platform:org.eclipse.osgi:jar:3.16.100:compile
+[DEBUG]          org.eclipse.tycho:sisu-equinox-api:jar:2.2.0:compile
+[DEBUG]       org.eclipse.tycho:org.eclipse.tycho.p2.resolver.shared:jar:2.2.0:compile
+[DEBUG]       org.eclipse.tycho:org.eclipse.tycho.p2.tools.shared:jar:2.2.0:compile
+[DEBUG]    org.eclipse.tycho:tycho-packaging-plugin:jar:2.2.0:compile
+[DEBUG]       org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
+[DEBUG]       org.apache.maven:maven-archiver:jar:3.5.0:compile
+[DEBUG]          org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile
+[DEBUG]       org.codehaus.plexus:plexus-archiver:jar:4.2.2:compile
+[DEBUG]          org.codehaus.plexus:plexus-io:jar:3.2.0:compile
+[DEBUG]          org.apache.commons:commons-compress:jar:1.20:compile
+[DEBUG]          org.iq80.snappy:snappy:jar:0.4:compile
+[DEBUG]    org.eclipse.tycho:tycho-core:jar:2.2.0:compile
+[DEBUG]       org.eclipse.platform:org.eclipse.osgi.compatibility.state:jar:1.2.200:compile
+[DEBUG]       org.eclipse.tycho:tycho-metadata-model:jar:2.2.0:compile
+[DEBUG]          de.pdark:decentxml:jar:1.4:compile
+[DEBUG]       org.eclipse.tycho:tycho-embedder-api:jar:2.2.0:compile
+[DEBUG]          org.eclipse.tycho:org.eclipse.tycho.embedder.shared:jar:2.2.0:compile
+[DEBUG]       org.eclipse.tycho:org.eclipse.tycho.core.shared:jar:2.2.0:compile
+[DEBUG]       org.apache.maven:maven-compat:jar:3.6.3:compile
+[DEBUG]          org.apache.maven:maven-resolver-provider:jar:3.6.3:compile
+[DEBUG]             org.apache.maven.resolver:maven-resolver-spi:jar:1.4.1:compile
+[DEBUG]             javax.inject:javax.inject:jar:1:compile
+[DEBUG]             org.slf4j:slf4j-api:jar:1.7.29:compile
+[DEBUG]          org.apache.maven.resolver:maven-resolver-api:jar:1.4.1:compile
+[DEBUG]          org.apache.maven.resolver:maven-resolver-util:jar:1.4.1:compile
+[DEBUG]          org.apache.maven.resolver:maven-resolver-impl:jar:1.4.1:compile
+[DEBUG]          org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:compile
+[DEBUG]             javax.enterprise:cdi-api:jar:1.0:compile
+[DEBUG]                javax.annotation:jsr250-api:jar:1.0:compile
+[DEBUG]             org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4:compile
+[DEBUG]    net.sf.saxon:saxon:jar:8.7:compile
+[DEBUG]    net.sf.saxon:saxon-dom:jar:8.7:compile
+[DEBUG]    org.jboss:jboss-dmr:jar:1.2.0.Final:compile
+[DEBUG]    com.googlecode.maven-download-plugin:download-maven-plugin:jar:1.2.0:compile
+[DEBUG]       org.apache.maven:maven-artifact:jar:2.0:compile
+[DEBUG]       org.apache.maven:maven-project:jar:2.0:compile
+[DEBUG]          org.apache.maven:maven-profile:jar:2.0:compile
+[DEBUG]          org.apache.maven:maven-artifact-manager:jar:2.0:compile
+[DEBUG]          org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-8:compile
+[DEBUG]             junit:junit:jar:3.8.1:compile
+[DEBUG]             classworlds:classworlds:jar:1.1-alpha-2:compile
+[DEBUG]       commons-io:commons-io:jar:1.4:compile
+[DEBUG]       org.apache.httpcomponents:httpclient:jar:4.0-beta2:compile
+[DEBUG]          org.apache.httpcomponents:httpcore:jar:4.0-beta3:compile
+[DEBUG]          commons-logging:commons-logging:jar:1.1.1:compile
+[DEBUG]          commons-codec:commons-codec:jar:1.3:compile
+[DEBUG]       org.apache.maven.wagon:wagon-provider-api:jar:2.4:compile
+[DEBUG]    org.eclipse.jgit:org.eclipse.jgit:jar:3.6.0.201411121045-m1:compile
+[DEBUG]       com.jcraft:jsch:jar:0.1.50:compile
+[DEBUG]       com.googlecode.javaewah:JavaEWAH:jar:0.7.9:compile
+[DEBUG]    pl.project13.maven:git-commit-id-plugin:jar:2.1.13:compile
+[DEBUG]       com.fasterxml.jackson.core:jackson-databind:jar:2.2.3:compile
+[DEBUG]          com.fasterxml.jackson.core:jackson-annotations:jar:2.2.3:compile
+[DEBUG]          com.fasterxml.jackson.core:jackson-core:jar:2.2.3:compile
+[DEBUG]       joda-time:joda-time:jar:2.0:compile
+[DEBUG]       com.google.guava:guava:jar:15.0:compile
+[DEBUG]       com.intellij:annotations:jar:9.0.4:compile
+[DEBUG]    org.tukaani:xz:jar:1.5:compile
+[DEBUG]    org.jsoup:jsoup:jar:1.10.2:compile
+[DEBUG]    org.apache.maven:maven-plugin-api:jar:3.0:compile
+[DEBUG]       org.apache.maven:maven-model:jar:3.0:compile
+[DEBUG]       org.sonatype.sisu:sisu-inject-plexus:jar:1.4.2:compile
+[DEBUG]          org.sonatype.sisu:sisu-inject-bean:jar:1.4.2:compile
+[DEBUG]             org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7:compile
+[DEBUG]    org.apache.maven:maven-core:jar:3.0:compile
+[DEBUG]       org.apache.maven:maven-settings:jar:3.0:compile
+[DEBUG]       org.apache.maven:maven-settings-builder:jar:3.0:compile
+[DEBUG]       org.apache.maven:maven-repository-metadata:jar:3.0:compile
+[DEBUG]       org.apache.maven:maven-model-builder:jar:3.0:compile
+[DEBUG]       org.apache.maven:maven-aether-provider:jar:3.0:runtime
+[DEBUG]       org.sonatype.aether:aether-impl:jar:1.7:compile
+[DEBUG]          org.sonatype.aether:aether-spi:jar:1.7:compile
+[DEBUG]       org.sonatype.aether:aether-api:jar:1.7:compile
+[DEBUG]       org.sonatype.aether:aether-util:jar:1.7:compile
+[DEBUG]       org.codehaus.plexus:plexus-interpolation:jar:1.14:compile
+[DEBUG]       org.codehaus.plexus:plexus-classworlds:jar:2.2.3:compile
+[DEBUG]       org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile
+[DEBUG]          org.sonatype.plexus:plexus-cipher:jar:1.4:compile
+[DEBUG]    org.codehaus.plexus:plexus-component-annotations:jar:1.5.4:compile
+[DEBUG] Created new class realm plugin>org.jboss.tools.tycho-plugins:repository-utils:2.2.0
+[DEBUG] Importing foreign packages into class realm plugin>org.jboss.tools.tycho-plugins:repository-utils:2.2.0
+[DEBUG]   Imported:  < project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT
+[DEBUG] Populating class realm plugin>org.jboss.tools.tycho-plugins:repository-utils:2.2.0
+[DEBUG]   Included: org.jboss.tools.tycho-plugins:repository-utils:jar:2.2.0
+[DEBUG]   Included: org.eclipse.platform:org.eclipse.osgi:jar:3.16.100
+[DEBUG]   Included: org.eclipse.tycho:tycho-packaging-plugin:jar:2.2.0
+[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:3.3.0
+[DEBUG]   Included: org.apache.maven:maven-archiver:jar:3.5.0
+[DEBUG]   Included: org.apache.maven.shared:maven-shared-utils:jar:3.2.1
+[DEBUG]   Included: org.codehaus.plexus:plexus-archiver:jar:4.2.2
+[DEBUG]   Included: org.codehaus.plexus:plexus-io:jar:3.2.0
+[DEBUG]   Included: org.apache.commons:commons-compress:jar:1.20
+[DEBUG]   Included: org.iq80.snappy:snappy:jar:0.4
+[DEBUG]   Included: org.eclipse.platform:org.eclipse.osgi.compatibility.state:jar:1.2.200
+[DEBUG]   Included: org.apache.maven.resolver:maven-resolver-util:jar:1.4.1
+[DEBUG]   Included: javax.enterprise:cdi-api:jar:1.0
+[DEBUG]   Included: org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4
+[DEBUG]   Included: net.sf.saxon:saxon:jar:8.7
+[DEBUG]   Included: net.sf.saxon:saxon-dom:jar:8.7
+[DEBUG]   Included: org.jboss:jboss-dmr:jar:1.2.0.Final
+[DEBUG]   Included: com.googlecode.maven-download-plugin:download-maven-plugin:jar:1.2.0
+[DEBUG]   Included: junit:junit:jar:3.8.1
+[DEBUG]   Included: commons-io:commons-io:jar:1.4
+[DEBUG]   Included: org.apache.httpcomponents:httpclient:jar:4.0-beta2
+[DEBUG]   Included: org.apache.httpcomponents:httpcore:jar:4.0-beta3
+[DEBUG]   Included: commons-logging:commons-logging:jar:1.1.1
+[DEBUG]   Included: commons-codec:commons-codec:jar:1.3
+[DEBUG]   Included: org.eclipse.jgit:org.eclipse.jgit:jar:3.6.0.201411121045-m1
+[DEBUG]   Included: com.jcraft:jsch:jar:0.1.50
+[DEBUG]   Included: com.googlecode.javaewah:JavaEWAH:jar:0.7.9
+[DEBUG]   Included: pl.project13.maven:git-commit-id-plugin:jar:2.1.13
+[DEBUG]   Included: com.fasterxml.jackson.core:jackson-databind:jar:2.2.3
+[DEBUG]   Included: com.fasterxml.jackson.core:jackson-annotations:jar:2.2.3
+[DEBUG]   Included: com.fasterxml.jackson.core:jackson-core:jar:2.2.3
+[DEBUG]   Included: joda-time:joda-time:jar:2.0
+[DEBUG]   Included: com.google.guava:guava:jar:15.0
+[DEBUG]   Included: com.intellij:annotations:jar:9.0.4
+[DEBUG]   Included: org.tukaani:xz:jar:1.5
+[DEBUG]   Included: org.jsoup:jsoup:jar:1.10.2
+[DEBUG]   Included: org.sonatype.sisu:sisu-inject-bean:jar:1.4.2
+[DEBUG]   Included: org.sonatype.sisu:sisu-guice:jar:noaop:2.1.7
+[DEBUG]   Included: org.sonatype.aether:aether-util:jar:1.7
+[DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.14
+[DEBUG]   Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3
+[DEBUG]   Included: org.sonatype.plexus:plexus-cipher:jar:1.4
+[DEBUG]   Included: org.codehaus.plexus:plexus-component-annotations:jar:1.5.4
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=87001, ConflictMarker.markTime=47499, ConflictMarker.nodeCount=154, ConflictIdSorter.graphTime=56799, ConflictIdSorter.topsortTime=51201, ConflictIdSorter.conflictIdCount=59, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=1039201, ConflictResolver.conflictItemCount=144, DefaultDependencyCollector.collectTime=3912700, DefaultDependencyCollector.transformTime=1342701}
+[DEBUG] org.eclipse.tycho:tycho-p2-publisher-plugin:jar:2.3.0
+[DEBUG]    org.apache.maven:maven-plugin-api:jar:3.6.3:compile
+[DEBUG]       org.apache.maven:maven-model:jar:3.6.3:compile (version managed from default)
+[DEBUG]       org.apache.maven:maven-artifact:jar:3.6.3:compile
+[DEBUG]       org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:provided (scope managed from default) (version managed from default)
+[DEBUG]          javax.enterprise:cdi-api:jar:1.0:provided
+[DEBUG]             javax.annotation:jsr250-api:jar:1.0:provided
+[DEBUG]       org.codehaus.plexus:plexus-utils:jar:3.3.0:compile (version managed from default)
+[DEBUG]       org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile
+[DEBUG]    org.apache.maven:maven-core:jar:3.6.3:compile
+[DEBUG]       org.apache.maven:maven-settings:jar:3.6.3:compile (version managed from default)
+[DEBUG]       org.apache.maven:maven-settings-builder:jar:3.6.3:compile
+[DEBUG]          org.codehaus.plexus:plexus-interpolation:jar:1.25:compile
+[DEBUG]          org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile
+[DEBUG]             org.sonatype.plexus:plexus-cipher:jar:1.7:compile (version managed from default)
+[DEBUG]       org.apache.maven:maven-builder-support:jar:3.6.3:compile
+[DEBUG]       org.apache.maven:maven-repository-metadata:jar:3.6.3:compile
+[DEBUG]       org.apache.maven:maven-model-builder:jar:3.6.3:compile
+[DEBUG]       org.apache.maven:maven-resolver-provider:jar:3.6.3:compile
+[DEBUG]          org.slf4j:slf4j-api:jar:1.7.29:compile
+[DEBUG]       org.apache.maven.resolver:maven-resolver-impl:jar:1.4.1:compile
+[DEBUG]       org.apache.maven.resolver:maven-resolver-api:jar:1.4.1:compile
+[DEBUG]       org.apache.maven.resolver:maven-resolver-spi:jar:1.4.1:compile
+[DEBUG]       org.apache.maven.resolver:maven-resolver-util:jar:1.4.1:compile
+[DEBUG]       org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile
+[DEBUG]          commons-io:commons-io:jar:2.5:compile
+[DEBUG]       org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4:compile
+[DEBUG]       com.google.inject:guice:jar:no_aop:4.2.1:compile
+[DEBUG]          aopalliance:aopalliance:jar:1.0:compile
+[DEBUG]          com.google.guava:guava:jar:25.1-android:compile
+[DEBUG]             com.google.code.findbugs:jsr305:jar:3.0.2:compile
+[DEBUG]             org.checkerframework:checker-compat-qual:jar:2.0.0:compile
+[DEBUG]             com.google.errorprone:error_prone_annotations:jar:2.1.3:compile
+[DEBUG]             com.google.j2objc:j2objc-annotations:jar:1.1:compile
+[DEBUG]             org.codehaus.mojo:animal-sniffer-annotations:jar:1.14:compile
+[DEBUG]       javax.inject:javax.inject:jar:1:compile
+[DEBUG]       org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile (version managed from default)
+[DEBUG]       org.apache.commons:commons-lang3:jar:3.8.1:compile
+[DEBUG]    org.eclipse.tycho:tycho-p2-facade:jar:2.3.0:compile
+[DEBUG]       org.eclipse.tycho:tycho-core:jar:2.3.0:compile
+[DEBUG]          org.eclipse.tycho:tycho-metadata-model:jar:2.3.0:compile
+[DEBUG]             de.pdark:decentxml:jar:1.4:compile (version managed from default)
+[DEBUG]          org.eclipse.tycho:tycho-embedder-api:jar:2.3.0:compile
+[DEBUG]             org.eclipse.tycho:org.eclipse.tycho.embedder.shared:jar:2.3.0:compile
+[DEBUG]          org.eclipse.tycho:org.eclipse.tycho.core.shared:jar:2.3.0:compile
+[DEBUG]          org.apache.maven:maven-compat:jar:3.6.3:compile (version managed from default)
+[DEBUG]             org.apache.maven.wagon:wagon-provider-api:jar:3.3.4:compile
+[DEBUG]       org.eclipse.tycho:sisu-equinox-embedder:jar:2.3.0:compile
+[DEBUG]          org.eclipse.platform:org.eclipse.osgi:jar:3.16.200:compile (version managed from default)
+[DEBUG]          org.eclipse.tycho:sisu-equinox-api:jar:2.3.0:compile
+[DEBUG]       org.eclipse.tycho:org.eclipse.tycho.p2.resolver.shared:jar:2.3.0:compile
+[DEBUG]       org.eclipse.tycho:org.eclipse.tycho.p2.tools.shared:jar:2.3.0:compile
+[DEBUG]    org.eclipse.tycho:tycho-packaging-plugin:jar:2.3.0:compile
+[DEBUG]       org.apache.maven:maven-archiver:jar:3.5.0:compile (version managed from default)
+[DEBUG]       org.codehaus.plexus:plexus-archiver:jar:4.2.2:compile (version managed from default)
+[DEBUG]          org.codehaus.plexus:plexus-io:jar:3.2.0:compile (version managed from default)
+[DEBUG]          org.apache.commons:commons-compress:jar:1.20:compile (version managed from default)
+[DEBUG]          org.iq80.snappy:snappy:jar:0.4:compile
+[DEBUG]          org.tukaani:xz:jar:1.8:runtime
+[DEBUG] Created new class realm plugin>org.eclipse.tycho:tycho-p2-publisher-plugin:2.3.0
+[DEBUG] Importing foreign packages into class realm plugin>org.eclipse.tycho:tycho-p2-publisher-plugin:2.3.0
+[DEBUG]   Imported:  < project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT
+[DEBUG] Populating class realm plugin>org.eclipse.tycho:tycho-p2-publisher-plugin:2.3.0
+[DEBUG]   Included: org.eclipse.tycho:tycho-p2-publisher-plugin:jar:2.3.0
+[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:3.3.0
+[DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.25
+[DEBUG]   Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4
+[DEBUG]   Included: org.sonatype.plexus:plexus-cipher:jar:1.7
+[DEBUG]   Included: org.apache.maven:maven-builder-support:jar:3.6.3
+[DEBUG]   Included: org.apache.maven.resolver:maven-resolver-util:jar:1.4.1
+[DEBUG]   Included: org.apache.maven.shared:maven-shared-utils:jar:3.2.1
+[DEBUG]   Included: commons-io:commons-io:jar:2.5
+[DEBUG]   Included: org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4
+[DEBUG]   Included: com.google.inject:guice:jar:no_aop:4.2.1
+[DEBUG]   Included: aopalliance:aopalliance:jar:1.0
+[DEBUG]   Included: com.google.guava:guava:jar:25.1-android
+[DEBUG]   Included: com.google.code.findbugs:jsr305:jar:3.0.2
+[DEBUG]   Included: org.checkerframework:checker-compat-qual:jar:2.0.0
+[DEBUG]   Included: com.google.errorprone:error_prone_annotations:jar:2.1.3
+[DEBUG]   Included: com.google.j2objc:j2objc-annotations:jar:1.1
+[DEBUG]   Included: org.codehaus.mojo:animal-sniffer-annotations:jar:1.14
+[DEBUG]   Included: org.codehaus.plexus:plexus-component-annotations:jar:2.1.0
+[DEBUG]   Included: org.apache.commons:commons-lang3:jar:3.8.1
+[DEBUG]   Included: org.eclipse.platform:org.eclipse.osgi:jar:3.16.200
+[DEBUG]   Included: org.eclipse.tycho:tycho-packaging-plugin:jar:2.3.0
+[DEBUG]   Included: org.apache.maven:maven-archiver:jar:3.5.0
+[DEBUG]   Included: org.codehaus.plexus:plexus-archiver:jar:4.2.2
+[DEBUG]   Included: org.codehaus.plexus:plexus-io:jar:3.2.0
+[DEBUG]   Included: org.apache.commons:commons-compress:jar:1.20
+[DEBUG]   Included: org.iq80.snappy:snappy:jar:0.4
+[DEBUG]   Included: org.tukaani:xz:jar:1.8
+[DEBUG] target-platform-configuration for MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml:
+<?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <environments>
+    <environment>
+      <os>win32</os>
+      <ws>win32</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>linux</os>
+      <ws>gtk</ws>
+      <arch>x86_64</arch>
+    </environment>
+    <environment>
+      <os>macosx</os>
+      <ws>cocoa</ws>
+      <arch>x86_64</arch>
+    </environment>
+  </environments>
+  <target>
+    <artifact>
+      <groupId>org.eclipse.app4mc.migration</groupId>
+      <artifactId>org.eclipse.app4mc.converters.target</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+    </artifact>
+  </target>
+  <targetDefinitionIncludeSource>honor</targetDefinitionIncludeSource>
+  <dependency-resolution>
+    <extraRequirements>
+      <requirement>
+        <type>eclipse-plugin</type>
+        <id>javax.annotation</id>
+        <versionRange>0.0.0</versionRange>
+      </requirement>
+    </extraRequirements>
+  </dependency-resolution>
+</configuration>
+[INFO] Computing target platform for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF
+[DEBUG] Using execution environment 'JavaSE-11' configured in Currently running profile, newer than configured profile (JavaSE-1.8) from [Bundle-RequiredExecutionEnvironment (unique entry)]
+[DEBUG] Currently running JRE matches source level for JavaSE-11; current JRE system packages are used.
+[DEBUG] Adding target definition file "C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\org.eclipse.app4mc.converters.target.target"
+[DEBUG] Resolving target definition content...
+[DEBUG] Target definition file contains 695 units
+[DEBUG] Registered artifact repository org.eclipse.tycho.repository.registry.facade.RepositoryBlackboardKey(uri=file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Cplugins%255Corg.eclipse.app4mc.amalthea.converters.071)
+[DEBUG] Added 120 locally built units to the target platform
+[INFO] Resolving dependencies of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF
+[INFO] Resolving class path of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF
+[DEBUG] Using TargetEnvironment (& (osgi.os=win32) (osgi.ws=win32) (osgi.arch=x86_64) ) to create resolver properties
+[INFO] Computing target platform for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF
+[DEBUG] Using execution environment 'JavaSE-11' configured in Currently running profile, newer than configured profile (JavaSE-1.8) from [Bundle-RequiredExecutionEnvironment (unique entry)]
+[DEBUG] Adding target definition file "C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\org.eclipse.app4mc.converters.target.target"
+[DEBUG] Target definition file contains 695 units
+[DEBUG] Registered artifact repository org.eclipse.tycho.repository.registry.facade.RepositoryBlackboardKey(uri=file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Cplugins%255Corg.eclipse.app4mc.amalthea.converters.072)
+[DEBUG] Added 120 locally built units to the target platform
+[INFO] Resolving dependencies of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF
+[INFO] Resolving class path of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF
+[DEBUG] Using TargetEnvironment (& (osgi.os=win32) (osgi.ws=win32) (osgi.arch=x86_64) ) to create resolver properties
+[INFO] Computing target platform for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF
+[DEBUG] Using execution environment 'JavaSE-11' configured in Currently running profile, newer than configured profile (JavaSE-1.8) from [Bundle-RequiredExecutionEnvironment (unique entry)]
+[DEBUG] Adding target definition file "C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\org.eclipse.app4mc.converters.target.target"
+[DEBUG] Target definition file contains 695 units
+[DEBUG] Registered artifact repository org.eclipse.tycho.repository.registry.facade.RepositoryBlackboardKey(uri=file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Cplugins%255Corg.eclipse.app4mc.amalthea.converters.080)
+[DEBUG] Added 120 locally built units to the target platform
+[INFO] Resolving dependencies of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF
+[INFO] Resolving class path of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF
+[DEBUG] Using TargetEnvironment (& (osgi.os=win32) (osgi.ws=win32) (osgi.arch=x86_64) ) to create resolver properties
+[INFO] Computing target platform for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF
+[DEBUG] Using execution environment 'JavaSE-11' configured in Currently running profile, newer than configured profile (JavaSE-1.8) from [Bundle-RequiredExecutionEnvironment (unique entry)]
+[DEBUG] Adding target definition file "C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\org.eclipse.app4mc.converters.target.target"
+[DEBUG] Target definition file contains 695 units
+[DEBUG] Registered artifact repository org.eclipse.tycho.repository.registry.facade.RepositoryBlackboardKey(uri=file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Cplugins%255Corg.eclipse.app4mc.amalthea.converters.081)
+[DEBUG] Added 120 locally built units to the target platform
+[INFO] Resolving dependencies of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF
+[INFO] Resolving class path of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF
+[DEBUG] Using TargetEnvironment (& (osgi.os=win32) (osgi.ws=win32) (osgi.arch=x86_64) ) to create resolver properties
+[INFO] Computing target platform for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF
+[DEBUG] Using execution environment 'JavaSE-11' configured in Currently running profile, newer than configured profile (JavaSE-1.8) from [Bundle-RequiredExecutionEnvironment (unique entry)]
+[DEBUG] Adding target definition file "C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\org.eclipse.app4mc.converters.target.target"
+[DEBUG] Target definition file contains 695 units
+[DEBUG] Registered artifact repository org.eclipse.tycho.repository.registry.facade.RepositoryBlackboardKey(uri=file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Cplugins%255Corg.eclipse.app4mc.amalthea.converters.082)
+[DEBUG] Added 120 locally built units to the target platform
+[INFO] Resolving dependencies of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF
+[INFO] Resolving class path of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF
+[DEBUG] Using TargetEnvironment (& (osgi.os=win32) (osgi.ws=win32) (osgi.arch=x86_64) ) to create resolver properties
+[INFO] Computing target platform for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF
+[DEBUG] Using execution environment 'JavaSE-11' configured in Currently running profile, newer than configured profile (JavaSE-1.8) from [Bundle-RequiredExecutionEnvironment (unique entry)]
+[DEBUG] Adding target definition file "C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\org.eclipse.app4mc.converters.target.target"
+[DEBUG] Target definition file contains 695 units
+[DEBUG] Registered artifact repository org.eclipse.tycho.repository.registry.facade.RepositoryBlackboardKey(uri=file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Cplugins%255Corg.eclipse.app4mc.amalthea.converters.083)
+[DEBUG] Added 120 locally built units to the target platform
+[INFO] Resolving dependencies of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF
+[INFO] Resolving class path of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF
+[DEBUG] Using TargetEnvironment (& (osgi.os=win32) (osgi.ws=win32) (osgi.arch=x86_64) ) to create resolver properties
+[INFO] Computing target platform for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF
+[DEBUG] Using execution environment 'JavaSE-11' configured in Currently running profile, newer than configured profile (JavaSE-1.8) from [Bundle-RequiredExecutionEnvironment (unique entry)]
+[DEBUG] Adding target definition file "C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\org.eclipse.app4mc.converters.target.target"
+[DEBUG] Target definition file contains 695 units
+[DEBUG] Registered artifact repository org.eclipse.tycho.repository.registry.facade.RepositoryBlackboardKey(uri=file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Cplugins%255Corg.eclipse.app4mc.amalthea.converters.090)
+[DEBUG] Added 120 locally built units to the target platform
+[INFO] Resolving dependencies of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF
+[INFO] Resolving class path of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF
+[DEBUG] Using TargetEnvironment (& (osgi.os=win32) (osgi.ws=win32) (osgi.arch=x86_64) ) to create resolver properties
+[INFO] Computing target platform for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF
+[DEBUG] Using execution environment 'JavaSE-11' configured in Currently running profile, newer than configured profile (JavaSE-1.8) from [Bundle-RequiredExecutionEnvironment (unique entry)]
+[DEBUG] Adding target definition file "C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\org.eclipse.app4mc.converters.target.target"
+[DEBUG] Target definition file contains 695 units
+[DEBUG] Registered artifact repository org.eclipse.tycho.repository.registry.facade.RepositoryBlackboardKey(uri=file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Cplugins%255Corg.eclipse.app4mc.amalthea.converters.091)
+[DEBUG] Added 120 locally built units to the target platform
+[INFO] Resolving dependencies of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF
+[INFO] Resolving class path of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF
+[DEBUG] Using TargetEnvironment (& (osgi.os=win32) (osgi.ws=win32) (osgi.arch=x86_64) ) to create resolver properties
+[INFO] Computing target platform for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF
+[DEBUG] Using execution environment 'JavaSE-11' configured in Currently running profile, newer than configured profile (JavaSE-1.8) from [Bundle-RequiredExecutionEnvironment (unique entry)]
+[DEBUG] Adding target definition file "C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\org.eclipse.app4mc.converters.target.target"
+[DEBUG] Target definition file contains 695 units
+[DEBUG] Registered artifact repository org.eclipse.tycho.repository.registry.facade.RepositoryBlackboardKey(uri=file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Cplugins%255Corg.eclipse.app4mc.amalthea.converters.092)
+[DEBUG] Added 120 locally built units to the target platform
+[INFO] Resolving dependencies of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF
+[INFO] Resolving class path of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF
+[DEBUG] Using TargetEnvironment (& (osgi.os=win32) (osgi.ws=win32) (osgi.arch=x86_64) ) to create resolver properties
+[INFO] Computing target platform for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF
+[DEBUG] Using execution environment 'JavaSE-11' configured in Currently running profile, newer than configured profile (JavaSE-1.8) from [Bundle-RequiredExecutionEnvironment (unique entry)]
+[DEBUG] Adding target definition file "C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\org.eclipse.app4mc.converters.target.target"
+[DEBUG] Target definition file contains 695 units
+[DEBUG] Registered artifact repository org.eclipse.tycho.repository.registry.facade.RepositoryBlackboardKey(uri=file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Cplugins%255Corg.eclipse.app4mc.amalthea.converters.093)
+[DEBUG] Added 120 locally built units to the target platform
+[INFO] Resolving dependencies of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF
+[INFO] Resolving class path of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF
+[DEBUG] Using TargetEnvironment (& (osgi.os=win32) (osgi.ws=win32) (osgi.arch=x86_64) ) to create resolver properties
+[INFO] Computing target platform for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF
+[DEBUG] Using execution environment 'JavaSE-11' configured in Currently running profile, newer than configured profile (JavaSE-1.8) from [Bundle-RequiredExecutionEnvironment (unique entry)]
+[DEBUG] Adding target definition file "C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\org.eclipse.app4mc.converters.target.target"
+[DEBUG] Target definition file contains 695 units
+[DEBUG] Registered artifact repository org.eclipse.tycho.repository.registry.facade.RepositoryBlackboardKey(uri=file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Cplugins%255Corg.eclipse.app4mc.amalthea.converters.094)
+[DEBUG] Added 120 locally built units to the target platform
+[INFO] Resolving dependencies of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF
+[INFO] Resolving class path of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF
+[DEBUG] Using TargetEnvironment (& (osgi.os=win32) (osgi.ws=win32) (osgi.arch=x86_64) ) to create resolver properties
+[INFO] Computing target platform for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF
+[DEBUG] Using execution environment 'JavaSE-11' configured in Currently running profile, newer than configured profile (JavaSE-1.8) from [Bundle-RequiredExecutionEnvironment (unique entry)]
+[DEBUG] Adding target definition file "C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\org.eclipse.app4mc.converters.target.target"
+[DEBUG] Target definition file contains 695 units
+[DEBUG] Registered artifact repository org.eclipse.tycho.repository.registry.facade.RepositoryBlackboardKey(uri=file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Cplugins%255Corg.eclipse.app4mc.amalthea.converters.095)
+[DEBUG] Added 120 locally built units to the target platform
+[INFO] Resolving dependencies of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF
+[INFO] Resolving class path of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF
+[DEBUG] Using TargetEnvironment (& (osgi.os=win32) (osgi.ws=win32) (osgi.arch=x86_64) ) to create resolver properties
+[INFO] Computing target platform for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF
+[DEBUG] Using execution environment 'JavaSE-11' configured in Currently running profile, newer than configured profile (JavaSE-1.8) from [Bundle-RequiredExecutionEnvironment (unique entry)]
+[DEBUG] Adding target definition file "C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\org.eclipse.app4mc.converters.target.target"
+[DEBUG] Target definition file contains 695 units
+[DEBUG] Registered artifact repository org.eclipse.tycho.repository.registry.facade.RepositoryBlackboardKey(uri=file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Cplugins%255Corg.eclipse.app4mc.amalthea.converters.096)
+[DEBUG] Added 120 locally built units to the target platform
+[INFO] Resolving dependencies of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF
+[INFO] Resolving class path of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF
+[DEBUG] Using TargetEnvironment (& (osgi.os=win32) (osgi.ws=win32) (osgi.arch=x86_64) ) to create resolver properties
+[INFO] Computing target platform for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF
+[DEBUG] Using execution environment 'JavaSE-11' configured in Currently running profile, newer than configured profile (JavaSE-1.8) from [Bundle-RequiredExecutionEnvironment (unique entry)]
+[DEBUG] Adding target definition file "C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\org.eclipse.app4mc.converters.target.target"
+[DEBUG] Target definition file contains 695 units
+[DEBUG] Registered artifact repository org.eclipse.tycho.repository.registry.facade.RepositoryBlackboardKey(uri=file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Cplugins%255Corg.eclipse.app4mc.amalthea.converters.097)
+[DEBUG] Added 120 locally built units to the target platform
+[INFO] Resolving dependencies of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF
+[INFO] Resolving class path of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF
+[DEBUG] Using TargetEnvironment (& (osgi.os=win32) (osgi.ws=win32) (osgi.arch=x86_64) ) to create resolver properties
+[INFO] Computing target platform for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF
+[DEBUG] Using execution environment 'JavaSE-11' configured in Currently running profile, newer than configured profile (JavaSE-1.8) from [Bundle-RequiredExecutionEnvironment (unique entry)]
+[DEBUG] Adding target definition file "C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\org.eclipse.app4mc.converters.target.target"
+[DEBUG] Target definition file contains 695 units
+[DEBUG] Registered artifact repository org.eclipse.tycho.repository.registry.facade.RepositoryBlackboardKey(uri=file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Cplugins%255Corg.eclipse.app4mc.amalthea.converters.100)
+[DEBUG] Added 120 locally built units to the target platform
+[INFO] Resolving dependencies of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF
+[INFO] Resolving class path of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF
+[DEBUG] Using TargetEnvironment (& (osgi.os=win32) (osgi.ws=win32) (osgi.arch=x86_64) ) to create resolver properties
+[INFO] Computing target platform for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[DEBUG] Using execution environment 'JavaSE-11' configured in Currently running profile, newer than configured profile (JavaSE-1.8) from [Bundle-RequiredExecutionEnvironment (unique entry)]
+[DEBUG] Adding target definition file "C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\org.eclipse.app4mc.converters.target.target"
+[DEBUG] Target definition file contains 695 units
+[DEBUG] Registered artifact repository org.eclipse.tycho.repository.registry.facade.RepositoryBlackboardKey(uri=file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Cplugins%255Corg.eclipse.app4mc.amalthea.converters.common)
+[DEBUG] Added 120 locally built units to the target platform
+[INFO] Resolving dependencies of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[INFO] Resolving class path of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[DEBUG] Using TargetEnvironment (& (osgi.os=win32) (osgi.ws=win32) (osgi.arch=x86_64) ) to create resolver properties
+[INFO] Computing target platform for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF
+[DEBUG] Using execution environment 'JavaSE-11' configured in Currently running profile, newer than configured profile (JavaSE-1.8) from [Bundle-RequiredExecutionEnvironment (unique entry)]
+[DEBUG] Adding target definition file "C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\org.eclipse.app4mc.converters.target.target"
+[DEBUG] Target definition file contains 695 units
+[DEBUG] Registered artifact repository org.eclipse.tycho.repository.registry.facade.RepositoryBlackboardKey(uri=file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Cplugins%255Corg.eclipse.app4mc.amalthea.converters.headless.app)
+[DEBUG] Added 120 locally built units to the target platform
+[INFO] Resolving dependencies of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF
+[INFO] Resolving class path of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF
+[DEBUG] Using TargetEnvironment (& (osgi.os=win32) (osgi.ws=win32) (osgi.arch=x86_64) ) to create resolver properties
+[INFO] Computing target platform for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml
+[DEBUG] Using default execution environment 'JavaSE-11'
+[DEBUG] Adding target definition file "C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\org.eclipse.app4mc.converters.target.target"
+[DEBUG] Target definition file contains 695 units
+[DEBUG] Registered artifact repository org.eclipse.tycho.repository.registry.facade.RepositoryBlackboardKey(uri=file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Cplugins%255Corg.eclipse.app4mc.amalthea.converters.help)
+[DEBUG] Added 120 locally built units to the target platform
+[INFO] Resolving dependencies of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml
+[INFO] Resolving class path of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml
+[DEBUG] Using TargetEnvironment (& (osgi.os=win32) (osgi.ws=win32) (osgi.arch=x86_64) ) to create resolver properties
+[INFO] Computing target platform for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF
+[DEBUG] Using execution environment 'JavaSE-11' configured in Currently running profile, newer than configured profile (JavaSE-1.8) from [Bundle-RequiredExecutionEnvironment (unique entry)]
+[DEBUG] Adding target definition file "C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\org.eclipse.app4mc.converters.target.target"
+[DEBUG] Target definition file contains 695 units
+[DEBUG] Registered artifact repository org.eclipse.tycho.repository.registry.facade.RepositoryBlackboardKey(uri=file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Cplugins%255Corg.eclipse.app4mc.amalthea.converters.ui)
+[DEBUG] Added 120 locally built units to the target platform
+[INFO] Resolving dependencies of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF
+[INFO] Resolving class path of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF
+[DEBUG] Using TargetEnvironment (& (osgi.os=win32) (osgi.ws=win32) (osgi.arch=x86_64) ) to create resolver properties
+[INFO] Computing target platform for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF
+[DEBUG] Using execution environment 'JavaSE-11' configured in Currently running profile, newer than configured profile (JavaSE-1.8) from [Bundle-RequiredExecutionEnvironment (unique entry)]
+[DEBUG] Adding target definition file "C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\org.eclipse.app4mc.converters.target.target"
+[DEBUG] Target definition file contains 695 units
+[DEBUG] Registered artifact repository org.eclipse.tycho.repository.registry.facade.RepositoryBlackboardKey(uri=file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Ctests%255Corg.eclipse.app4mc.amalthea.converters.071.tests)
+[DEBUG] Added 120 locally built units to the target platform
+[INFO] Resolving dependencies of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF
+[INFO] Resolving class path of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF
+[DEBUG] Using TargetEnvironment (& (osgi.os=win32) (osgi.ws=win32) (osgi.arch=x86_64) ) to create resolver properties
+[INFO] Computing target platform for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF
+[DEBUG] Using execution environment 'JavaSE-11' configured in Currently running profile, newer than configured profile (JavaSE-1.8) from [Bundle-RequiredExecutionEnvironment (unique entry)]
+[DEBUG] Adding target definition file "C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\org.eclipse.app4mc.converters.target.target"
+[DEBUG] Target definition file contains 695 units
+[DEBUG] Registered artifact repository org.eclipse.tycho.repository.registry.facade.RepositoryBlackboardKey(uri=file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Ctests%255Corg.eclipse.app4mc.amalthea.converters.072.tests)
+[DEBUG] Added 120 locally built units to the target platform
+[INFO] Resolving dependencies of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF
+[INFO] Resolving class path of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF
+[DEBUG] Using TargetEnvironment (& (osgi.os=win32) (osgi.ws=win32) (osgi.arch=x86_64) ) to create resolver properties
+[INFO] Computing target platform for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF
+[DEBUG] Using execution environment 'JavaSE-11' configured in Currently running profile, newer than configured profile (JavaSE-1.8) from [Bundle-RequiredExecutionEnvironment (unique entry)]
+[DEBUG] Adding target definition file "C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\org.eclipse.app4mc.converters.target.target"
+[DEBUG] Target definition file contains 695 units
+[DEBUG] Registered artifact repository org.eclipse.tycho.repository.registry.facade.RepositoryBlackboardKey(uri=file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Ctests%255Corg.eclipse.app4mc.amalthea.converters.080.tests)
+[DEBUG] Added 120 locally built units to the target platform
+[INFO] Resolving dependencies of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF
+[INFO] Resolving class path of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF
+[DEBUG] Using TargetEnvironment (& (osgi.os=win32) (osgi.ws=win32) (osgi.arch=x86_64) ) to create resolver properties
+[INFO] Computing target platform for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF
+[DEBUG] Using execution environment 'JavaSE-11' configured in Currently running profile, newer than configured profile (JavaSE-1.8) from [Bundle-RequiredExecutionEnvironment (unique entry)]
+[DEBUG] Adding target definition file "C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\org.eclipse.app4mc.converters.target.target"
+[DEBUG] Target definition file contains 695 units
+[DEBUG] Registered artifact repository org.eclipse.tycho.repository.registry.facade.RepositoryBlackboardKey(uri=file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Ctests%255Corg.eclipse.app4mc.amalthea.converters.081.tests)
+[DEBUG] Added 120 locally built units to the target platform
+[INFO] Resolving dependencies of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF
+[INFO] Resolving class path of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF
+[DEBUG] Using TargetEnvironment (& (osgi.os=win32) (osgi.ws=win32) (osgi.arch=x86_64) ) to create resolver properties
+[INFO] Computing target platform for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF
+[DEBUG] Using execution environment 'JavaSE-11' configured in Currently running profile, newer than configured profile (JavaSE-1.8) from [Bundle-RequiredExecutionEnvironment (unique entry)]
+[DEBUG] Adding target definition file "C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\org.eclipse.app4mc.converters.target.target"
+[DEBUG] Target definition file contains 695 units
+[DEBUG] Registered artifact repository org.eclipse.tycho.repository.registry.facade.RepositoryBlackboardKey(uri=file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Ctests%255Corg.eclipse.app4mc.amalthea.converters.082.tests)
+[DEBUG] Added 120 locally built units to the target platform
+[INFO] Resolving dependencies of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF
+[INFO] Resolving class path of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF
+[DEBUG] Using TargetEnvironment (& (osgi.os=win32) (osgi.ws=win32) (osgi.arch=x86_64) ) to create resolver properties
+[INFO] Computing target platform for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF
+[DEBUG] Using execution environment 'JavaSE-11' configured in Currently running profile, newer than configured profile (JavaSE-1.8) from [Bundle-RequiredExecutionEnvironment (unique entry)]
+[DEBUG] Adding target definition file "C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\org.eclipse.app4mc.converters.target.target"
+[DEBUG] Target definition file contains 695 units
+[DEBUG] Registered artifact repository org.eclipse.tycho.repository.registry.facade.RepositoryBlackboardKey(uri=file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Ctests%255Corg.eclipse.app4mc.amalthea.converters.083.tests)
+[DEBUG] Added 120 locally built units to the target platform
+[INFO] Resolving dependencies of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF
+[INFO] Resolving class path of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF
+[DEBUG] Using TargetEnvironment (& (osgi.os=win32) (osgi.ws=win32) (osgi.arch=x86_64) ) to create resolver properties
+[INFO] Computing target platform for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF
+[DEBUG] Using execution environment 'JavaSE-11' configured in Currently running profile, newer than configured profile (JavaSE-1.8) from [Bundle-RequiredExecutionEnvironment (unique entry)]
+[DEBUG] Adding target definition file "C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\org.eclipse.app4mc.converters.target.target"
+[DEBUG] Target definition file contains 695 units
+[DEBUG] Registered artifact repository org.eclipse.tycho.repository.registry.facade.RepositoryBlackboardKey(uri=file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Ctests%255Corg.eclipse.app4mc.amalthea.converters.090.tests)
+[DEBUG] Added 120 locally built units to the target platform
+[INFO] Resolving dependencies of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF
+[INFO] Resolving class path of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF
+[DEBUG] Using TargetEnvironment (& (osgi.os=win32) (osgi.ws=win32) (osgi.arch=x86_64) ) to create resolver properties
+[INFO] Computing target platform for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF
+[DEBUG] Using execution environment 'JavaSE-11' configured in Currently running profile, newer than configured profile (JavaSE-1.8) from [Bundle-RequiredExecutionEnvironment (unique entry)]
+[DEBUG] Adding target definition file "C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\org.eclipse.app4mc.converters.target.target"
+[DEBUG] Target definition file contains 695 units
+[DEBUG] Registered artifact repository org.eclipse.tycho.repository.registry.facade.RepositoryBlackboardKey(uri=file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Ctests%255Corg.eclipse.app4mc.amalthea.converters.091.tests)
+[DEBUG] Added 120 locally built units to the target platform
+[INFO] Resolving dependencies of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF
+[INFO] Resolving class path of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF
+[DEBUG] Using TargetEnvironment (& (osgi.os=win32) (osgi.ws=win32) (osgi.arch=x86_64) ) to create resolver properties
+[INFO] Computing target platform for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF
+[DEBUG] Using execution environment 'JavaSE-11' configured in Currently running profile, newer than configured profile (JavaSE-1.8) from [Bundle-RequiredExecutionEnvironment (unique entry)]
+[DEBUG] Adding target definition file "C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\org.eclipse.app4mc.converters.target.target"
+[DEBUG] Target definition file contains 695 units
+[DEBUG] Registered artifact repository org.eclipse.tycho.repository.registry.facade.RepositoryBlackboardKey(uri=file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Ctests%255Corg.eclipse.app4mc.amalthea.converters.092.tests)
+[DEBUG] Added 120 locally built units to the target platform
+[INFO] Resolving dependencies of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF
+[INFO] Resolving class path of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF
+[DEBUG] Using TargetEnvironment (& (osgi.os=win32) (osgi.ws=win32) (osgi.arch=x86_64) ) to create resolver properties
+[INFO] Computing target platform for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF
+[DEBUG] Using execution environment 'JavaSE-11' configured in Currently running profile, newer than configured profile (JavaSE-1.8) from [Bundle-RequiredExecutionEnvironment (unique entry)]
+[DEBUG] Adding target definition file "C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\org.eclipse.app4mc.converters.target.target"
+[DEBUG] Target definition file contains 695 units
+[DEBUG] Registered artifact repository org.eclipse.tycho.repository.registry.facade.RepositoryBlackboardKey(uri=file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Ctests%255Corg.eclipse.app4mc.amalthea.converters.093.tests)
+[DEBUG] Added 120 locally built units to the target platform
+[INFO] Resolving dependencies of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF
+[INFO] Resolving class path of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF
+[DEBUG] Using TargetEnvironment (& (osgi.os=win32) (osgi.ws=win32) (osgi.arch=x86_64) ) to create resolver properties
+[INFO] Computing target platform for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF
+[DEBUG] Using execution environment 'JavaSE-11' configured in Currently running profile, newer than configured profile (JavaSE-1.8) from [Bundle-RequiredExecutionEnvironment (unique entry)]
+[DEBUG] Adding target definition file "C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\org.eclipse.app4mc.converters.target.target"
+[DEBUG] Target definition file contains 695 units
+[DEBUG] Registered artifact repository org.eclipse.tycho.repository.registry.facade.RepositoryBlackboardKey(uri=file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Ctests%255Corg.eclipse.app4mc.amalthea.converters.094.tests)
+[DEBUG] Added 120 locally built units to the target platform
+[INFO] Resolving dependencies of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF
+[INFO] Resolving class path of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF
+[DEBUG] Using TargetEnvironment (& (osgi.os=win32) (osgi.ws=win32) (osgi.arch=x86_64) ) to create resolver properties
+[INFO] Computing target platform for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF
+[DEBUG] Using execution environment 'JavaSE-11' configured in Currently running profile, newer than configured profile (JavaSE-1.8) from [Bundle-RequiredExecutionEnvironment (unique entry)]
+[DEBUG] Adding target definition file "C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\org.eclipse.app4mc.converters.target.target"
+[DEBUG] Target definition file contains 695 units
+[DEBUG] Registered artifact repository org.eclipse.tycho.repository.registry.facade.RepositoryBlackboardKey(uri=file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Ctests%255Corg.eclipse.app4mc.amalthea.converters.095.tests)
+[DEBUG] Added 120 locally built units to the target platform
+[INFO] Resolving dependencies of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF
+[INFO] Resolving class path of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF
+[DEBUG] Using TargetEnvironment (& (osgi.os=win32) (osgi.ws=win32) (osgi.arch=x86_64) ) to create resolver properties
+[INFO] Computing target platform for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF
+[DEBUG] Using execution environment 'JavaSE-11' configured in Currently running profile, newer than configured profile (JavaSE-1.8) from [Bundle-RequiredExecutionEnvironment (unique entry)]
+[DEBUG] Adding target definition file "C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\org.eclipse.app4mc.converters.target.target"
+[DEBUG] Target definition file contains 695 units
+[DEBUG] Registered artifact repository org.eclipse.tycho.repository.registry.facade.RepositoryBlackboardKey(uri=file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Ctests%255Corg.eclipse.app4mc.amalthea.converters.096.tests)
+[DEBUG] Added 120 locally built units to the target platform
+[INFO] Resolving dependencies of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF
+[INFO] Resolving class path of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF
+[DEBUG] Using TargetEnvironment (& (osgi.os=win32) (osgi.ws=win32) (osgi.arch=x86_64) ) to create resolver properties
+[INFO] Computing target platform for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF
+[DEBUG] Using execution environment 'JavaSE-11' configured in Currently running profile, newer than configured profile (JavaSE-1.8) from [Bundle-RequiredExecutionEnvironment (unique entry)]
+[DEBUG] Adding target definition file "C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\org.eclipse.app4mc.converters.target.target"
+[DEBUG] Target definition file contains 695 units
+[DEBUG] Registered artifact repository org.eclipse.tycho.repository.registry.facade.RepositoryBlackboardKey(uri=file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Ctests%255Corg.eclipse.app4mc.amalthea.converters.097.tests)
+[DEBUG] Added 120 locally built units to the target platform
+[INFO] Resolving dependencies of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF
+[INFO] Resolving class path of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF
+[DEBUG] Using TargetEnvironment (& (osgi.os=win32) (osgi.ws=win32) (osgi.arch=x86_64) ) to create resolver properties
+[INFO] Computing target platform for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF
+[DEBUG] Using execution environment 'JavaSE-11' configured in Currently running profile, newer than configured profile (JavaSE-1.8) from [Bundle-RequiredExecutionEnvironment (unique entry)]
+[DEBUG] Adding target definition file "C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\org.eclipse.app4mc.converters.target.target"
+[DEBUG] Target definition file contains 695 units
+[DEBUG] Registered artifact repository org.eclipse.tycho.repository.registry.facade.RepositoryBlackboardKey(uri=file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Ctests%255Corg.eclipse.app4mc.amalthea.converters.100.tests)
+[DEBUG] Added 120 locally built units to the target platform
+[INFO] Resolving dependencies of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF
+[INFO] Resolving class path of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF
+[DEBUG] Using TargetEnvironment (& (osgi.os=win32) (osgi.ws=win32) (osgi.arch=x86_64) ) to create resolver properties
+[INFO] Computing target platform for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF
+[DEBUG] Using execution environment 'JavaSE-11' configured in Currently running profile, newer than configured profile (JavaSE-1.8) from [Bundle-RequiredExecutionEnvironment (unique entry)]
+[DEBUG] Adding target definition file "C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\org.eclipse.app4mc.converters.target.target"
+[DEBUG] Target definition file contains 695 units
+[DEBUG] Registered artifact repository org.eclipse.tycho.repository.registry.facade.RepositoryBlackboardKey(uri=file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Ctests%255Corg.eclipse.app4mc.amalthea.converters.common.tests)
+[DEBUG] Added 120 locally built units to the target platform
+[INFO] Resolving dependencies of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF
+[INFO] Resolving class path of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF
+[DEBUG] Using TargetEnvironment (& (osgi.os=win32) (osgi.ws=win32) (osgi.arch=x86_64) ) to create resolver properties
+[INFO] Computing target platform for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml
+[DEBUG] Using default execution environment 'JavaSE-11'
+[DEBUG] Adding target definition file "C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\org.eclipse.app4mc.converters.target.target"
+[DEBUG] Target definition file contains 695 units
+[DEBUG] Registered artifact repository org.eclipse.tycho.repository.registry.facade.RepositoryBlackboardKey(uri=file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Cfeatures%255Corg.eclipse.app4mc.amalthea.converters)
+[DEBUG] Added 120 locally built units to the target platform
+[INFO] Resolving dependencies of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml
+[INFO] Resolving class path of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml
+[INFO] Computing target platform for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml
+[DEBUG] Using default execution environment 'JavaSE-11'
+[DEBUG] Adding target definition file "C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\org.eclipse.app4mc.converters.target.target"
+[DEBUG] Target definition file contains 695 units
+[DEBUG] Registered artifact repository org.eclipse.tycho.repository.registry.facade.RepositoryBlackboardKey(uri=file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Cfeatures%255Corg.eclipse.app4mc.amalthea.converters.headless)
+[DEBUG] Added 120 locally built units to the target platform
+[INFO] Resolving dependencies of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml
+[INFO] Resolving class path of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml
+[INFO] Computing target platform for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml
+[DEBUG] Using default execution environment 'JavaSE-11'
+[DEBUG] Adding target definition file "C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\org.eclipse.app4mc.converters.target.target"
+[DEBUG] Target definition file contains 695 units
+[DEBUG] Registered artifact repository org.eclipse.tycho.repository.registry.facade.RepositoryBlackboardKey(uri=file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Cfeatures%255Corg.eclipse.app4mc.amalthea.converters.headless.runtime)
+[DEBUG] Added 120 locally built units to the target platform
+[INFO] Resolving dependencies of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml
+[INFO] Resolving class path of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml
+[INFO] Computing target platform for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml
+[DEBUG] Using default execution environment 'JavaSE-11'
+[DEBUG] Adding target definition file "C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\org.eclipse.app4mc.converters.target.target"
+[DEBUG] Target definition file contains 695 units
+[DEBUG] Registered artifact repository org.eclipse.tycho.repository.registry.facade.RepositoryBlackboardKey(uri=file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Cfeatures%255Corg.eclipse.app4mc.amalthea.converters.sdk)
+[DEBUG] Added 120 locally built units to the target platform
+[INFO] Resolving dependencies of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml
+[INFO] Resolving class path of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml
+[INFO] Computing target platform for MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml
+[DEBUG] Using default execution environment 'JavaSE-11'
+[DEBUG] Adding target definition file "C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\org.eclipse.app4mc.converters.target.target"
+[DEBUG] Target definition file contains 695 units
+[DEBUG] Registered artifact repository org.eclipse.tycho.repository.registry.facade.RepositoryBlackboardKey(uri=file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Creleng%255Corg.eclipse.app4mc.converters.p2repo)
+[DEBUG] Added 120 locally built units to the target platform
+[INFO] Resolving dependencies of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml
+[INFO] Resolving class path of MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml
+[INFO] Computing target platform for MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml
+[DEBUG] Using default execution environment 'JavaSE-11'
+[DEBUG] Adding target definition file "C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\org.eclipse.app4mc.converters.target.target"
+[DEBUG] Target definition file contains 695 units
+[DEBUG] Registered artifact repository org.eclipse.tycho.repository.registry.facade.RepositoryBlackboardKey(uri=file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Creleng%255Corg.eclipse.app4mc.converters.product)
+[DEBUG] Added 120 locally built units to the target platform
+[INFO] Resolving dependencies of MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml
+[INFO] Resolving class path of MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml
+[INFO] ------------------------------------------------------------------------
+[INFO] Reactor Build Order:
+[INFO] 
+[INFO] APP4MC Migration Component                                         [pom]
+[INFO] [aggregator] plugins                                               [pom]
+[INFO] [bundle] APP4MC Amalthea Converters Common              [eclipse-plugin]
+[INFO] [bundle] APP4MC Amalthea Converters to 0.7.1            [eclipse-plugin]
+[INFO] [bundle] APP4MC Amalthea Converters to 0.7.2            [eclipse-plugin]
+[INFO] [bundle] APP4MC Amalthea Converters to 0.8.0            [eclipse-plugin]
+[INFO] [bundle] APP4MC Amalthea Converters to 0.8.1            [eclipse-plugin]
+[INFO] [bundle] APP4MC Amalthea Converters to 0.8.2            [eclipse-plugin]
+[INFO] [bundle] APP4MC Amalthea Converters to 0.8.3            [eclipse-plugin]
+[INFO] [bundle] APP4MC Amalthea Converters to 0.9.0            [eclipse-plugin]
+[INFO] [bundle] APP4MC Amalthea Converters to 0.9.1            [eclipse-plugin]
+[INFO] [bundle] APP4MC Amalthea Converters to 0.9.2            [eclipse-plugin]
+[INFO] [bundle] APP4MC Amalthea Converters to 0.9.3            [eclipse-plugin]
+[INFO] [bundle] APP4MC Amalthea Converters to 0.9.4            [eclipse-plugin]
+[INFO] [bundle] APP4MC Amalthea Converters to 0.9.5            [eclipse-plugin]
+[INFO] [bundle] APP4MC Amalthea Converters to 0.9.6            [eclipse-plugin]
+[INFO] [bundle] APP4MC Amalthea Converters to 0.9.7            [eclipse-plugin]
+[INFO] [bundle] APP4MC Amalthea Converters to 1.0.0            [eclipse-plugin]
+[INFO] [bundle] APP4MC Amalthea Converters Headless App        [eclipse-plugin]
+[INFO] org.eclipse.app4mc.amalthea.converters.help             [eclipse-plugin]
+[INFO] [bundle] APP4MC Amalthea Converters UI                  [eclipse-plugin]
+[INFO] [aggregator] tests                                                 [pom]
+[INFO] [test-bundle] APP4MC Amalthea Converters Common Tests [eclipse-test-plugin]
+[INFO] [test-bundle] APP4MC Amalthea Converters to 0.7.1 - Tests [eclipse-test-plugin]
+[INFO] [test-bundle] APP4MC Amalthea Converters to 0.7.2 - Tests [eclipse-test-plugin]
+[INFO] [test-bundle] APP4MC Amalthea Converters to 0.8.0 - Tests [eclipse-test-plugin]
+[INFO] [test-bundle] APP4MC Amalthea Converters to 0.8.1 - Tests [eclipse-test-plugin]
+[INFO] [test-bundle] APP4MC Amalthea Converters to 0.8.2 - Tests [eclipse-test-plugin]
+[INFO] [test-bundle] APP4MC Amalthea Converters to 0.8.3 - Tests [eclipse-test-plugin]
+[INFO] [test-bundle] APP4MC Amalthea Converters to 0.9.0 - Tests [eclipse-test-plugin]
+[INFO] [test-bundle] APP4MC Amalthea Converters to 0.9.1 - Tests [eclipse-test-plugin]
+[INFO] [test-bundle] APP4MC Amalthea Converters to 0.9.2 - Tests [eclipse-test-plugin]
+[INFO] [test-bundle] APP4MC Amalthea Converters to 0.9.3 - Tests [eclipse-test-plugin]
+[INFO] [test-bundle] APP4MC Amalthea Converters to 0.9.4 - Tests [eclipse-test-plugin]
+[INFO] [test-bundle] APP4MC Amalthea Converters to 0.9.5 - Tests [eclipse-test-plugin]
+[INFO] [test-bundle] APP4MC Amalthea Converters to 0.9.6 - Tests [eclipse-test-plugin]
+[INFO] [test-bundle] APP4MC Amalthea Converters to 0.9.7 - Tests [eclipse-test-plugin]
+[INFO] [test-bundle] APP4MC Amalthea Converters to 1.0.0 - Tests [eclipse-test-plugin]
+[INFO] [aggregator] features                                              [pom]
+[INFO] [feature] APP4MC AMALTHEA Headless Converters          [eclipse-feature]
+[INFO] [feature] APP4MC AMALTHEA Converters                   [eclipse-feature]
+[INFO] [feature] APP4MC AMALTHEA Headless Converters Runtime  [eclipse-feature]
+[INFO] [feature] APP4MC AMALTHEA Converters SDK               [eclipse-feature]
+[INFO] org.eclipse.app4mc.converters.p2repo                [eclipse-repository]
+[INFO] headless                                            [eclipse-repository]
+[INFO] [aggregator] releng                                                [pom]
+[INFO] [target] Amalthea Model Migration Target     [eclipse-target-definition]
+[DEBUG] === REACTOR BUILD PLAN ================================================
+[DEBUG] Project: org.eclipse.app4mc.migration:parent:pom:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:plugins:pom:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:eclipse-plugin:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:eclipse-plugin:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:eclipse-plugin:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:eclipse-plugin:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:eclipse-plugin:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:eclipse-plugin:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:eclipse-plugin:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:eclipse-plugin:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:eclipse-plugin:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:eclipse-plugin:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:eclipse-plugin:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:eclipse-plugin:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:eclipse-plugin:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:eclipse-plugin:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:eclipse-plugin:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:eclipse-plugin:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:eclipse-plugin:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:eclipse-plugin:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:eclipse-plugin:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:tests:pom:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:eclipse-test-plugin:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:eclipse-test-plugin:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:eclipse-test-plugin:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:eclipse-test-plugin:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:eclipse-test-plugin:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:eclipse-test-plugin:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:eclipse-test-plugin:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:eclipse-test-plugin:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:eclipse-test-plugin:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:eclipse-test-plugin:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:eclipse-test-plugin:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:eclipse-test-plugin:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:eclipse-test-plugin:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:eclipse-test-plugin:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:eclipse-test-plugin:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:eclipse-test-plugin:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:features:pom:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:eclipse-feature:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:eclipse-feature:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:eclipse-feature:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:eclipse-feature:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:eclipse-repository:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:headless:eclipse-repository:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:releng:pom:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Project: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:eclipse-target-definition:1.1.0-SNAPSHOT
+[DEBUG] Tasks:   [clean, verify]
+[DEBUG] Style:   Regular
+[DEBUG] =======================================================================
+[INFO] 
+[INFO] ----------------< org.eclipse.app4mc.migration:parent >-----------------
+[INFO] Building APP4MC Migration Component 1.1.0-SNAPSHOT                [1/47]
+[INFO] --------------------------------[ pom ]---------------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): []
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] =======================================================================
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ parent ---
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=51700, ConflictMarker.markTime=19399, ConflictMarker.nodeCount=3, ConflictIdSorter.graphTime=4900, ConflictIdSorter.topsortTime=7400, ConflictIdSorter.conflictIdCount=3, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=65200, ConflictResolver.conflictItemCount=3, DefaultDependencyCollector.collectTime=11789300, DefaultDependencyCollector.transformTime=182400}
+[DEBUG] org.apache.maven.plugins:maven-clean-plugin:jar:2.5
+[DEBUG]    org.apache.maven:maven-plugin-api:jar:2.0.6:compile
+[DEBUG]    org.codehaus.plexus:plexus-utils:jar:3.0:compile
+[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-clean-plugin:2.5
+[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-clean-plugin:2.5
+[DEBUG]   Imported:  < project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT
+[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-clean-plugin:2.5
+[DEBUG]   Included: org.apache.maven.plugins:maven-clean-plugin:jar:2.5
+[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:3.0
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\target\test-classes
+[DEBUG] -- end configuration --
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\target\site
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ parent ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = parent-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] ----------------< org.eclipse.app4mc.migration:plugins >----------------
+[INFO] Building [aggregator] plugins 1.1.0-SNAPSHOT                      [2/47]
+[INFO] --------------------------------[ pom ]---------------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): []
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] =======================================================================
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ plugins ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\target\test-classes
+[DEBUG] -- end configuration --
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\target\site
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ plugins ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = plugins-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --< org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common >--
+[INFO] Building [bundle] APP4MC Amalthea Converters Common 1.1.0-SNAPSHOT [3/47]
+[INFO] ---------------------------[ eclipse-plugin ]---------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): [compile]
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <baseDir>${project.basedir}</baseDir>
+  <execution>${mojoExecution}</execution>
+  <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
+  <format default-value="yyyyMMddHHmm"/>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id (default-validate-id)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version (default-validate-version)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <strictVersions default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources (default-resources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources default-value="${project.resources}"/>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile (default-compile)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <basedir>${basedir}</basedir>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <compilerId default-value="jdt">${maven.compiler.compilerId}</compilerId>
+  <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
+  <copyResources default-value="true"/>
+  <debug default-value="true">${maven.compiler.debug}</debug>
+  <deriveReleaseCompilerArgumentFromTargetLevel default-value="true"/>
+  <encoding>${project.build.sourceEncoding}</encoding>
+  <executable>${maven.compiler.executable}</executable>
+  <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
+  <fork default-value="false"/>
+  <generatedSourcesDirectory default-value="${project.build.directory}/generated-sources/annotations"/>
+  <logDirectory default-value="${project.build.directory}/compile-logs"/>
+  <mavenCompilerEncoding>${maven.compiler.encoding}</mavenCompilerEncoding>
+  <maxmem>${maven.compiler.maxmem}</maxmem>
+  <meminitial>${maven.compiler.meminitial}</meminitial>
+  <optimize default-value="false">${maven.compiler.optimize}</optimize>
+  <outputFileName>${project.build.finalName}</outputFileName>
+  <project>${project}</project>
+  <release>${maven.compiler.release}</release>
+  <requireJREPackageImports default-value="false"/>
+  <session>${session}</session>
+  <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
+  <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
+  <source>${maven.compiler.source}</source>
+  <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
+  <strictCompilerTarget default-value="false"/>
+  <target>${maven.compiler.target}</target>
+  <useJDK default-value="SYSTEM"/>
+  <useProjectSettings default-value="true"/>
+  <verbose default-value="false">${maven.compiler.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources (default-testResources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources>${project.testResources}</resources>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform (default-target-platform)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <finalName>${project.build.finalName}</finalName>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <strictBinIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attachP2Metadata default-value="true"/>
+  <baselineMode default-value="warn">${tycho.baseline}</baselineMode>
+  <baselineReplace default-value="all">none</baselineReplace>
+  <baselineRepositories>
+    <repository>
+      <url>https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/</url>
+    </repository>
+  </baselineRepositories>
+  <defaultP2Metadata default-value="true"/>
+  <execution>${mojoExecution}</execution>
+  <generateDownloadStatsProperty default-value="false">${tycho.generateDownloadStatsProperty}</generateDownloadStatsProperty>
+  <project>${project}</project>
+</configuration>
+[DEBUG] =======================================================================
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=19800, ConflictMarker.markTime=22000, ConflictMarker.nodeCount=10, ConflictIdSorter.graphTime=4599, ConflictIdSorter.topsortTime=9100, ConflictIdSorter.conflictIdCount=9, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=386400, ConflictResolver.conflictItemCount=9, DefaultDependencyCollector.collectTime=311801, DefaultDependencyCollector.transformTime=497700}
+[DEBUG] org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:eclipse-plugin:1.1.0-SNAPSHOT
+[DEBUG]    p2.eclipse-plugin:javax.annotation:jar:1.2.0.v201602091430:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi:jar:3.15.100.v20191114-1701:system
+[DEBUG]    p2.eclipse-plugin:org.apache.felix.scr:jar:2.1.14.v20190123-1619:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.services:jar:3.8.0.v20190206-2147:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.util:jar:3.5.300.v20190708-1141:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.common:jar:3.10.600.v20191004-1420:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.app4mc.util.sessionlog:jar:1.1.0.202104211257:system
+[DEBUG]    p2.eclipse-plugin:org.jdom2:jar:2.0.6.v20191125-0928:system
+[DEBUG]    p2.eclipse-plugin:org.jaxen:jar:1.1.6.v20191106-1554:system
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ org.eclipse.app4mc.amalthea.converters.common ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\test-classes
+[DEBUG] -- end configuration --
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\site
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier) @ org.eclipse.app4mc.amalthea.converters.common ---
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=82600, ConflictMarker.markTime=50400, ConflictMarker.nodeCount=150, ConflictIdSorter.graphTime=59501, ConflictIdSorter.topsortTime=116900, ConflictIdSorter.conflictIdCount=60, ConflictIdSorter.conflictIdCycleCount=1, ConflictResolver.totalTime=1613600, ConflictResolver.conflictItemCount=139, DefaultDependencyCollector.collectTime=17512200, DefaultDependencyCollector.transformTime=1976600}
+[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:jar:2.3.0
+[DEBUG]    org.eclipse.tycho.extras:tycho-buildtimestamp-jgit:jar:2.3.0:runtime
+[DEBUG]       org.eclipse.jgit:org.eclipse.jgit:jar:5.10.0.202012080955-r:runtime
+[DEBUG]          com.googlecode.javaewah:JavaEWAH:jar:1.1.7:runtime
+[DEBUG]          org.slf4j:slf4j-api:jar:1.7.30:compile
+[DEBUG]    org.eclipse.tycho:tycho-core:jar:2.3.0:compile
+[DEBUG]       org.eclipse.tycho:org.eclipse.tycho.p2.tools.shared:jar:2.3.0:compile
+[DEBUG]       org.eclipse.tycho:org.eclipse.tycho.p2.resolver.shared:jar:2.3.0:compile
+[DEBUG]       org.eclipse.tycho:sisu-equinox-embedder:jar:2.3.0:compile
+[DEBUG]          org.eclipse.platform:org.eclipse.osgi:jar:3.16.200:compile (version managed from default)
+[DEBUG]          org.eclipse.tycho:sisu-equinox-api:jar:2.3.0:compile
+[DEBUG]       org.eclipse.tycho:tycho-metadata-model:jar:2.3.0:compile
+[DEBUG]          de.pdark:decentxml:jar:1.4:compile (version managed from default)
+[DEBUG]       org.eclipse.tycho:tycho-embedder-api:jar:2.3.0:compile
+[DEBUG]          org.eclipse.tycho:org.eclipse.tycho.embedder.shared:jar:2.3.0:compile
+[DEBUG]       org.eclipse.tycho:org.eclipse.tycho.core.shared:jar:2.3.0:compile
+[DEBUG]       org.apache.maven:maven-compat:jar:3.6.3:compile (version managed from default)
+[DEBUG]          org.apache.maven.wagon:wagon-provider-api:jar:3.3.4:compile
+[DEBUG]    org.apache.maven:maven-core:jar:3.6.3:compile
+[DEBUG]       org.apache.maven:maven-model:jar:3.6.3:compile (version managed from default)
+[DEBUG]       org.apache.maven:maven-settings:jar:3.6.3:compile (version managed from default)
+[DEBUG]       org.apache.maven:maven-settings-builder:jar:3.6.3:compile
+[DEBUG]          org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile
+[DEBUG]             org.sonatype.plexus:plexus-cipher:jar:1.7:compile (version managed from default)
+[DEBUG]       org.apache.maven:maven-builder-support:jar:3.6.3:compile
+[DEBUG]       org.apache.maven:maven-repository-metadata:jar:3.6.3:compile
+[DEBUG]       org.apache.maven:maven-artifact:jar:3.6.3:compile
+[DEBUG]       org.apache.maven:maven-model-builder:jar:3.6.3:compile
+[DEBUG]       org.apache.maven:maven-resolver-provider:jar:3.6.3:compile
+[DEBUG]       org.apache.maven.resolver:maven-resolver-impl:jar:1.4.1:compile
+[DEBUG]       org.apache.maven.resolver:maven-resolver-api:jar:1.4.1:compile
+[DEBUG]       org.apache.maven.resolver:maven-resolver-spi:jar:1.4.1:compile
+[DEBUG]       org.apache.maven.resolver:maven-resolver-util:jar:1.4.1:compile
+[DEBUG]       org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile
+[DEBUG]       org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:provided (scope managed from default) (version managed from default)
+[DEBUG]          javax.enterprise:cdi-api:jar:1.0:provided
+[DEBUG]             javax.annotation:jsr250-api:jar:1.0:provided
+[DEBUG]       org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4:compile
+[DEBUG]       com.google.inject:guice:jar:no_aop:4.2.1:compile
+[DEBUG]          aopalliance:aopalliance:jar:1.0:compile
+[DEBUG]          com.google.guava:guava:jar:25.1-android:compile
+[DEBUG]             com.google.code.findbugs:jsr305:jar:3.0.2:compile
+[DEBUG]             org.checkerframework:checker-compat-qual:jar:2.0.0:compile
+[DEBUG]             com.google.errorprone:error_prone_annotations:jar:2.1.3:compile
+[DEBUG]             com.google.j2objc:j2objc-annotations:jar:1.1:compile
+[DEBUG]             org.codehaus.mojo:animal-sniffer-annotations:jar:1.14:compile
+[DEBUG]       javax.inject:javax.inject:jar:1:compile
+[DEBUG]       org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile
+[DEBUG]       org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile (version managed from default)
+[DEBUG]       org.apache.commons:commons-lang3:jar:3.8.1:compile
+[DEBUG]    org.apache.maven:maven-plugin-api:jar:3.6.3:compile
+[DEBUG]    org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
+[DEBUG]    org.apache.maven:maven-archiver:jar:3.5.0:compile
+[DEBUG]       commons-io:commons-io:jar:2.5:compile
+[DEBUG]       org.codehaus.plexus:plexus-interpolation:jar:1.25:compile
+[DEBUG]    org.codehaus.plexus:plexus-archiver:jar:4.2.2:compile
+[DEBUG]       org.codehaus.plexus:plexus-io:jar:3.2.0:compile (version managed from default)
+[DEBUG]       org.apache.commons:commons-compress:jar:1.20:compile (version managed from default)
+[DEBUG]       org.iq80.snappy:snappy:jar:0.4:compile
+[DEBUG]       org.tukaani:xz:jar:1.8:runtime
+[DEBUG] Created new class realm plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0
+[DEBUG] Importing foreign packages into class realm plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0
+[DEBUG]   Imported:  < project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT
+[DEBUG] Populating class realm plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0
+[DEBUG]   Included: org.eclipse.tycho:tycho-packaging-plugin:jar:2.3.0
+[DEBUG]   Included: org.eclipse.tycho.extras:tycho-buildtimestamp-jgit:jar:2.3.0
+[DEBUG]   Included: org.eclipse.jgit:org.eclipse.jgit:jar:5.10.0.202012080955-r
+[DEBUG]   Included: com.googlecode.javaewah:JavaEWAH:jar:1.1.7
+[DEBUG]   Included: org.eclipse.platform:org.eclipse.osgi:jar:3.16.200
+[DEBUG]   Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4
+[DEBUG]   Included: org.sonatype.plexus:plexus-cipher:jar:1.7
+[DEBUG]   Included: org.apache.maven:maven-builder-support:jar:3.6.3
+[DEBUG]   Included: org.apache.maven.resolver:maven-resolver-util:jar:1.4.1
+[DEBUG]   Included: org.apache.maven.shared:maven-shared-utils:jar:3.2.1
+[DEBUG]   Included: org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4
+[DEBUG]   Included: com.google.inject:guice:jar:no_aop:4.2.1
+[DEBUG]   Included: aopalliance:aopalliance:jar:1.0
+[DEBUG]   Included: com.google.guava:guava:jar:25.1-android
+[DEBUG]   Included: com.google.code.findbugs:jsr305:jar:3.0.2
+[DEBUG]   Included: org.checkerframework:checker-compat-qual:jar:2.0.0
+[DEBUG]   Included: com.google.errorprone:error_prone_annotations:jar:2.1.3
+[DEBUG]   Included: com.google.j2objc:j2objc-annotations:jar:1.1
+[DEBUG]   Included: org.codehaus.mojo:animal-sniffer-annotations:jar:1.14
+[DEBUG]   Included: org.codehaus.plexus:plexus-component-annotations:jar:2.1.0
+[DEBUG]   Included: org.apache.commons:commons-lang3:jar:3.8.1
+[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:3.3.0
+[DEBUG]   Included: org.apache.maven:maven-archiver:jar:3.5.0
+[DEBUG]   Included: commons-io:commons-io:jar:2.5
+[DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.25
+[DEBUG]   Included: org.codehaus.plexus:plexus-archiver:jar:4.2.2
+[DEBUG]   Included: org.codehaus.plexus:plexus-io:jar:3.2.0
+[DEBUG]   Included: org.apache.commons:commons-compress:jar:1.20
+[DEBUG]   Included: org.iq80.snappy:snappy:jar:0.4
+[DEBUG]   Included: org.tukaani:xz:jar:1.8
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier' with basic configurator -->
+[DEBUG]   (f) baseDir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier {execution: default-build-qualifier}
+[DEBUG]   (s) format = yyyyMMddHHmm
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] The project's OSGi version is 1.1.0.202104220626
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-id (default-validate-id) @ org.eclipse.app4mc.amalthea.converters.common ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-version (default-validate-version) @ org.eclipse.app4mc.amalthea.converters.common ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[DEBUG]   (f) strictVersions = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ org.eclipse.app4mc.amalthea.converters.common ---
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=70400, ConflictMarker.markTime=33100, ConflictMarker.nodeCount=78, ConflictIdSorter.graphTime=27800, ConflictIdSorter.topsortTime=16800, ConflictIdSorter.conflictIdCount=26, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=267899, ConflictResolver.conflictItemCount=75, DefaultDependencyCollector.collectTime=48675800, DefaultDependencyCollector.transformTime=435499}
+[DEBUG] org.apache.maven.plugins:maven-resources-plugin:jar:2.4.3
+[DEBUG]    org.apache.maven:maven-plugin-api:jar:2.0.6:compile
+[DEBUG]    org.apache.maven:maven-project:jar:2.0.6:compile
+[DEBUG]       org.apache.maven:maven-profile:jar:2.0.6:compile
+[DEBUG]       org.apache.maven:maven-artifact-manager:jar:2.0.6:compile
+[DEBUG]       org.apache.maven:maven-plugin-registry:jar:2.0.6:compile
+[DEBUG]    org.apache.maven:maven-core:jar:2.0.6:compile
+[DEBUG]       org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.6:compile
+[DEBUG]       org.apache.maven.reporting:maven-reporting-api:jar:2.0.6:compile
+[DEBUG]          org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-7:compile
+[DEBUG]       org.apache.maven:maven-repository-metadata:jar:2.0.6:compile
+[DEBUG]       org.apache.maven:maven-error-diagnostics:jar:2.0.6:compile
+[DEBUG]       commons-cli:commons-cli:jar:1.0:compile
+[DEBUG]       org.apache.maven:maven-plugin-descriptor:jar:2.0.6:compile
+[DEBUG]       org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:compile
+[DEBUG]       classworlds:classworlds:jar:1.1:compile
+[DEBUG]    org.apache.maven:maven-artifact:jar:2.0.6:compile
+[DEBUG]    org.apache.maven:maven-settings:jar:2.0.6:compile
+[DEBUG]    org.apache.maven:maven-model:jar:2.0.6:compile
+[DEBUG]    org.apache.maven:maven-monitor:jar:2.0.6:compile
+[DEBUG]    org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile
+[DEBUG]       junit:junit:jar:3.8.1:compile
+[DEBUG]    org.codehaus.plexus:plexus-utils:jar:2.0.5:compile
+[DEBUG]    org.apache.maven.shared:maven-filtering:jar:1.0-beta-4:compile
+[DEBUG]       org.sonatype.plexus:plexus-build-api:jar:0.0.4:compile
+[DEBUG]    org.codehaus.plexus:plexus-interpolation:jar:1.13:compile
+[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3
+[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3
+[DEBUG]   Imported:  < project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT
+[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3
+[DEBUG]   Included: org.apache.maven.plugins:maven-resources-plugin:jar:2.4.3
+[DEBUG]   Included: org.apache.maven.reporting:maven-reporting-api:jar:2.0.6
+[DEBUG]   Included: org.apache.maven.doxia:doxia-sink-api:jar:1.0-alpha-7
+[DEBUG]   Included: commons-cli:commons-cli:jar:1.0
+[DEBUG]   Included: org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4
+[DEBUG]   Included: junit:junit:jar:3.8.1
+[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:2.0.5
+[DEBUG]   Included: org.apache.maven.shared:maven-filtering:jar:1.0-beta-4
+[DEBUG]   Included: org.sonatype.plexus:plexus-build-api:jar:0.0.4
+[DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.13
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.common.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\src\main\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\src\main\resources
+[INFO] 
+[INFO] --- tycho-compiler-plugin:2.3.0:compile (default-compile) @ org.eclipse.app4mc.amalthea.converters.common ---
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=132800, ConflictMarker.markTime=98300, ConflictMarker.nodeCount=139, ConflictIdSorter.graphTime=77400, ConflictIdSorter.topsortTime=46500, ConflictIdSorter.conflictIdCount=62, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=790400, ConflictResolver.conflictItemCount=137, DefaultDependencyCollector.collectTime=15073500, DefaultDependencyCollector.transformTime=1167700}
+[DEBUG] org.eclipse.tycho:tycho-compiler-plugin:jar:2.3.0
+[DEBUG]    org.apache.maven:maven-plugin-api:jar:3.6.3:compile
+[DEBUG]       org.apache.maven:maven-model:jar:3.6.3:compile (version managed from default)
+[DEBUG]       org.apache.maven:maven-artifact:jar:3.6.3:compile
+[DEBUG]          org.apache.commons:commons-lang3:jar:3.8.1:compile
+[DEBUG]       org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:provided (scope managed from default) (version managed from default)
+[DEBUG]          javax.enterprise:cdi-api:jar:1.0:provided
+[DEBUG]             javax.annotation:jsr250-api:jar:1.0:provided
+[DEBUG]          org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4:compile
+[DEBUG]       org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile
+[DEBUG]    org.codehaus.plexus:plexus-utils:jar:3.3.0:compile
+[DEBUG]    org.codehaus.plexus:plexus-compiler-manager:jar:2.8.8:compile
+[DEBUG]       org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile (version managed from default)
+[DEBUG]    org.codehaus.plexus:plexus-compiler-api:jar:2.8.8:compile
+[DEBUG]    org.eclipse.tycho:tycho-core:jar:2.3.0:compile
+[DEBUG]       org.apache.maven:maven-core:jar:3.6.3:compile (version managed from default)
+[DEBUG]          org.apache.maven:maven-settings:jar:3.6.3:compile (version managed from default)
+[DEBUG]          org.apache.maven:maven-settings-builder:jar:3.6.3:compile
+[DEBUG]             org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile
+[DEBUG]                org.sonatype.plexus:plexus-cipher:jar:1.7:compile (version managed from default)
+[DEBUG]          org.apache.maven:maven-builder-support:jar:3.6.3:compile
+[DEBUG]          org.apache.maven:maven-repository-metadata:jar:3.6.3:compile
+[DEBUG]          org.apache.maven:maven-model-builder:jar:3.6.3:compile
+[DEBUG]          org.apache.maven:maven-resolver-provider:jar:3.6.3:compile
+[DEBUG]             org.slf4j:slf4j-api:jar:1.7.29:compile
+[DEBUG]          org.apache.maven.resolver:maven-resolver-impl:jar:1.4.1:compile
+[DEBUG]          org.apache.maven.resolver:maven-resolver-api:jar:1.4.1:compile
+[DEBUG]          org.apache.maven.resolver:maven-resolver-spi:jar:1.4.1:compile
+[DEBUG]          org.apache.maven.resolver:maven-resolver-util:jar:1.4.1:compile
+[DEBUG]          org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile
+[DEBUG]             commons-io:commons-io:jar:2.5:compile
+[DEBUG]          com.google.inject:guice:jar:no_aop:4.2.1:compile
+[DEBUG]             aopalliance:aopalliance:jar:1.0:compile
+[DEBUG]             com.google.guava:guava:jar:25.1-android:compile
+[DEBUG]                com.google.code.findbugs:jsr305:jar:3.0.2:compile
+[DEBUG]                org.checkerframework:checker-compat-qual:jar:2.0.0:compile
+[DEBUG]                com.google.errorprone:error_prone_annotations:jar:2.1.3:compile
+[DEBUG]                com.google.j2objc:j2objc-annotations:jar:1.1:compile
+[DEBUG]                org.codehaus.mojo:animal-sniffer-annotations:jar:1.14:compile
+[DEBUG]          javax.inject:javax.inject:jar:1:compile
+[DEBUG]       org.eclipse.tycho:org.eclipse.tycho.p2.tools.shared:jar:2.3.0:compile
+[DEBUG]       org.eclipse.tycho:org.eclipse.tycho.p2.resolver.shared:jar:2.3.0:compile
+[DEBUG]       org.codehaus.plexus:plexus-archiver:jar:4.2.2:compile (version managed from default)
+[DEBUG]          org.codehaus.plexus:plexus-io:jar:3.2.0:compile (version managed from default)
+[DEBUG]          org.apache.commons:commons-compress:jar:1.20:compile (version managed from default)
+[DEBUG]          org.iq80.snappy:snappy:jar:0.4:compile
+[DEBUG]          org.tukaani:xz:jar:1.8:runtime
+[DEBUG]       org.eclipse.tycho:sisu-equinox-embedder:jar:2.3.0:compile
+[DEBUG]          org.eclipse.platform:org.eclipse.osgi:jar:3.16.200:compile (version managed from default)
+[DEBUG]          org.eclipse.tycho:sisu-equinox-api:jar:2.3.0:compile
+[DEBUG]       org.eclipse.tycho:tycho-metadata-model:jar:2.3.0:compile
+[DEBUG]          de.pdark:decentxml:jar:1.4:compile (version managed from default)
+[DEBUG]       org.eclipse.tycho:tycho-embedder-api:jar:2.3.0:compile
+[DEBUG]          org.eclipse.tycho:org.eclipse.tycho.embedder.shared:jar:2.3.0:compile
+[DEBUG]       org.eclipse.tycho:org.eclipse.tycho.core.shared:jar:2.3.0:compile
+[DEBUG]       org.apache.maven:maven-compat:jar:3.6.3:compile (version managed from default)
+[DEBUG]          org.codehaus.plexus:plexus-interpolation:jar:1.25:compile
+[DEBUG]          org.apache.maven.wagon:wagon-provider-api:jar:3.3.4:compile
+[DEBUG]    org.eclipse.tycho:tycho-compiler-jdt:jar:2.3.0:compile
+[DEBUG]       org.eclipse.tycho:tycho-lib-detector:jar:2.3.0:compile
+[DEBUG]       org.eclipse.jdt:ecj:jar:3.25.0:compile (version managed from default)
+[DEBUG]       org.apache.commons:commons-exec:jar:1.3:compile (version managed from default)
+[DEBUG] Created new class realm plugin>org.eclipse.tycho:tycho-compiler-plugin:2.3.0
+[DEBUG] Importing foreign packages into class realm plugin>org.eclipse.tycho:tycho-compiler-plugin:2.3.0
+[DEBUG]   Imported:  < project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT
+[DEBUG] Populating class realm plugin>org.eclipse.tycho:tycho-compiler-plugin:2.3.0
+[DEBUG]   Included: org.eclipse.tycho:tycho-compiler-plugin:jar:2.3.0
+[DEBUG]   Included: org.apache.commons:commons-lang3:jar:3.8.1
+[DEBUG]   Included: org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4
+[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:3.3.0
+[DEBUG]   Included: org.codehaus.plexus:plexus-compiler-manager:jar:2.8.8
+[DEBUG]   Included: org.codehaus.plexus:plexus-component-annotations:jar:2.1.0
+[DEBUG]   Included: org.codehaus.plexus:plexus-compiler-api:jar:2.8.8
+[DEBUG]   Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4
+[DEBUG]   Included: org.sonatype.plexus:plexus-cipher:jar:1.7
+[DEBUG]   Included: org.apache.maven:maven-builder-support:jar:3.6.3
+[DEBUG]   Included: org.apache.maven.resolver:maven-resolver-util:jar:1.4.1
+[DEBUG]   Included: org.apache.maven.shared:maven-shared-utils:jar:3.2.1
+[DEBUG]   Included: commons-io:commons-io:jar:2.5
+[DEBUG]   Included: com.google.inject:guice:jar:no_aop:4.2.1
+[DEBUG]   Included: aopalliance:aopalliance:jar:1.0
+[DEBUG]   Included: com.google.guava:guava:jar:25.1-android
+[DEBUG]   Included: com.google.code.findbugs:jsr305:jar:3.0.2
+[DEBUG]   Included: org.checkerframework:checker-compat-qual:jar:2.0.0
+[DEBUG]   Included: com.google.errorprone:error_prone_annotations:jar:2.1.3
+[DEBUG]   Included: com.google.j2objc:j2objc-annotations:jar:1.1
+[DEBUG]   Included: org.codehaus.mojo:animal-sniffer-annotations:jar:1.14
+[DEBUG]   Included: org.codehaus.plexus:plexus-archiver:jar:4.2.2
+[DEBUG]   Included: org.codehaus.plexus:plexus-io:jar:3.2.0
+[DEBUG]   Included: org.apache.commons:commons-compress:jar:1.20
+[DEBUG]   Included: org.iq80.snappy:snappy:jar:0.4
+[DEBUG]   Included: org.tukaani:xz:jar:1.8
+[DEBUG]   Included: org.eclipse.platform:org.eclipse.osgi:jar:3.16.200
+[DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.25
+[DEBUG]   Included: org.eclipse.tycho:tycho-compiler-jdt:jar:2.3.0
+[DEBUG]   Included: org.eclipse.tycho:tycho-lib-detector:jar:2.3.0
+[DEBUG]   Included: org.eclipse.jdt:ecj:jar:3.25.0
+[DEBUG]   Included: org.apache.commons:commons-exec:jar:1.3
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-compiler-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile' with basic configurator -->
+[DEBUG]   (f) basedir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target
+[DEBUG]   (f) compilerId = jdt
+[DEBUG]   (f) copyResources = true
+[DEBUG]   (f) debug = true
+[DEBUG]   (f) deriveReleaseCompilerArgumentFromTargetLevel = true
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) failOnWarning = false
+[DEBUG]   (f) fork = false
+[DEBUG]   (f) generatedSourcesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\generated-sources\annotations
+[DEBUG]   (f) logDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\compile-logs
+[DEBUG]   (f) optimize = false
+[DEBUG]   (f) outputFileName = org.eclipse.app4mc.amalthea.converters.common-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[DEBUG]   (f) requireJREPackageImports = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showDeprecation = false
+[DEBUG]   (f) showWarnings = false
+[DEBUG]   (f) staleMillis = 0
+[DEBUG]   (f) strictCompilerTarget = false
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useProjectSettings = true
+[DEBUG]   (f) verbose = false
+[DEBUG] -- end configuration --
+[DEBUG] Manifest BREEs: [OSGi profile 'JavaSE-1.8' { source level: 1.8, target level: 1.8}]
+[DEBUG] Target Platform EE: OSGi profile 'JavaSE-11' { source level: 11, target level: 11}
+[DEBUG] Effective source/target: 1.8/1.8
+[DEBUG] Using compiler 'jdt'.
+[DEBUG] Source directories: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\src]
+[DEBUG] Classpath: [C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.common\3.10.600.v20191004-1420\org.eclipse.equinox.common-3.10.600.v20191004-1420.jar[~org/eclipse/core/internal/boot/*;~org/eclipse/core/internal/runtime/*;+org/eclipse/core/runtime/*;+org/eclipse/equinox/events/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi\3.15.100.v20191114-1701\org.eclipse.osgi-3.15.100.v20191114-1701.jar[+javax/xml/namespace/*;+javax/xml/stream/*;+javax/xml/stream/events/*;+org/osgi/framework/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/*;+org/osgi/service/component/annotations/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;+org/jdom2/filter/*;+org/jdom2/input/*;+org/jdom2/output/*;+org/jdom2/xpath/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes]
+[DEBUG] Output directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes
+[DEBUG] Classpath:
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.common\3.10.600.v20191004-1420\org.eclipse.equinox.common-3.10.600.v20191004-1420.jar[~org/eclipse/core/internal/boot/*;~org/eclipse/core/internal/runtime/*;+org/eclipse/core/runtime/*;+org/eclipse/equinox/events/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi\3.15.100.v20191114-1701\org.eclipse.osgi-3.15.100.v20191114-1701.jar[+javax/xml/namespace/*;+javax/xml/stream/*;+javax/xml/stream/events/*;+org/osgi/framework/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/*;+org/osgi/service/component/annotations/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;+org/jdom2/filter/*;+org/jdom2/input/*;+org/jdom2/output/*;+org/jdom2/xpath/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes
+[DEBUG] Source roots:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\src
+[INFO] Compiling 24 source files to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes
+[DEBUG] JDT compiler args: [-properties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.settings\org.eclipse.jdt.core.prefs, -s, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\generated-sources\annotations, -d, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes, -classpath, C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.common\3.10.600.v20191004-1420\org.eclipse.equinox.common-3.10.600.v20191004-1420.jar[~org/eclipse/core/internal/boot/*;~org/eclipse/core/internal/runtime/*;+org/eclipse/core/runtime/*;+org/eclipse/equinox/events/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi\3.15.100.v20191114-1701\org.eclipse.osgi-3.15.100.v20191114-1701.jar[+javax/xml/namespace/*;+javax/xml/stream/*;+javax/xml/stream/events/*;+org/osgi/framework/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/*;+org/osgi/service/component/annotations/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;+org/jdom2/filter/*;+org/jdom2/input/*;+org/jdom2/output/*;+org/jdom2/xpath/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\src\org\eclipse\app4mc\amalthea\converters\common\ServiceConstants.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\src\org\eclipse\app4mc\amalthea\converters\common\MigrationProcessor.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\src\org\eclipse\app4mc\amalthea\converters\common\MigrationHelper.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\src\org\eclipse\app4mc\amalthea\converters\common\base\IConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\src\org\eclipse\app4mc\amalthea\converters\common\utils\Tags.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\src\org\eclipse\app4mc\amalthea\converters\common\MigrationStatusCode.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\src\org\eclipse\app4mc\amalthea\converters\common\utils\AmaltheaNamespace.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\src\org\eclipse\app4mc\amalthea\converters\common\MigrationInputFile.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\src\org\eclipse\app4mc\amalthea\converters\common\converter\NamespaceConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\src\org\eclipse\app4mc\amalthea\converters\common\ModelMigration.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\src\org\eclipse\app4mc\amalthea\converters\common\utils\HrefElement.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\src\org\eclipse\app4mc\amalthea\converters\common\utils\AmaltheaNamespaceRegistry.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\src\org\eclipse\app4mc\amalthea\converters\common\utils\HelperUtil.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\src\org\eclipse\app4mc\amalthea\converters\common\postprocessor\FileNameUpdationProcessor.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\src\org\eclipse\app4mc\amalthea\converters\common\base\IModelMigration.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\src\org\eclipse\app4mc\amalthea\converters\common\utils\ModelVersion.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\src\org\eclipse\app4mc\amalthea\converters\common\preprocessor\CustomPropsPreProcessor.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\src\org\eclipse\app4mc\amalthea\converters\common\base\ICache.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\src\org\eclipse\app4mc\amalthea\converters\common\MigrationException.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\src\org\eclipse\app4mc\amalthea\converters\common\converter\AbstractConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\src\org\eclipse\app4mc\amalthea\converters\common\base\IPreProcessor.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\src\org\eclipse\app4mc\amalthea\converters\common\converter\AbstractClassnameConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\src\org\eclipse\app4mc\amalthea\converters\common\MigrationSettings.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\src\org\eclipse\app4mc\amalthea\converters\common\base\IPostProcessor.java, -g, -nowarn, -target, 1.8, -source, 1.8, --release, 8, -encoding, UTF-8]
+[DEBUG] Original compiler output: 
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ org.eclipse.app4mc.amalthea.converters.common ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\test-classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\src\test\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.common.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\src\test\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\src\test\resources
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ org.eclipse.app4mc.amalthea.converters.common ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.common-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\org.eclipse.app4mc.amalthea.converters.common-1.1.0-SNAPSHOT-sources.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters/common/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters/common/base/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters/common/converter/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters/common/postprocessor/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters/common/preprocessor/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters/common/utils/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/base/ICache.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/base/IConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/base/IModelMigration.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/base/IPostProcessor.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/base/IPreProcessor.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/converter/AbstractClassnameConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/converter/AbstractConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/converter/NamespaceConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/MigrationException.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/MigrationHelper.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/MigrationInputFile.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/MigrationProcessor.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/MigrationSettings.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/MigrationStatusCode.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/ModelMigration.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/postprocessor/FileNameUpdationProcessor.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/preprocessor/CustomPropsPreProcessor.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/ServiceConstants.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/utils/AmaltheaNamespace.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/utils/AmaltheaNamespaceRegistry.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/utils/HelperUtil.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/utils/HrefElement.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/utils/ModelVersion.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/utils/Tags.java
+[DEBUG] adding entry about.html
+[DEBUG] adding entry epl-2.0.html
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding directory OSGI-INF/l10n/
+[DEBUG] adding entry OSGI-INF/l10n/bundle-src.properties
+[INFO] 
+[INFO] --- target-platform-configuration:2.3.0:target-platform (default-target-platform) @ org.eclipse.app4mc.amalthea.converters.common ---
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=102400, ConflictMarker.markTime=86300, ConflictMarker.nodeCount=127, ConflictIdSorter.graphTime=63800, ConflictIdSorter.topsortTime=40501, ConflictIdSorter.conflictIdCount=56, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=634801, ConflictResolver.conflictItemCount=125, DefaultDependencyCollector.collectTime=3734300, DefaultDependencyCollector.transformTime=962400}
+[DEBUG] org.eclipse.tycho:target-platform-configuration:jar:2.3.0
+[DEBUG]    org.apache.maven:maven-core:jar:3.6.3:compile
+[DEBUG]       org.apache.maven:maven-model:jar:3.6.3:compile (version managed from default)
+[DEBUG]       org.apache.maven:maven-settings:jar:3.6.3:compile (version managed from default)
+[DEBUG]       org.apache.maven:maven-settings-builder:jar:3.6.3:compile
+[DEBUG]          org.codehaus.plexus:plexus-interpolation:jar:1.25:compile
+[DEBUG]          org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile
+[DEBUG]             org.sonatype.plexus:plexus-cipher:jar:1.7:compile (version managed from default)
+[DEBUG]       org.apache.maven:maven-builder-support:jar:3.6.3:compile
+[DEBUG]       org.apache.maven:maven-repository-metadata:jar:3.6.3:compile
+[DEBUG]       org.apache.maven:maven-artifact:jar:3.6.3:compile
+[DEBUG]       org.apache.maven:maven-plugin-api:jar:3.6.3:compile (version managed from default)
+[DEBUG]       org.apache.maven:maven-model-builder:jar:3.6.3:compile
+[DEBUG]       org.apache.maven:maven-resolver-provider:jar:3.6.3:compile
+[DEBUG]          org.slf4j:slf4j-api:jar:1.7.29:compile
+[DEBUG]       org.apache.maven.resolver:maven-resolver-impl:jar:1.4.1:compile
+[DEBUG]       org.apache.maven.resolver:maven-resolver-api:jar:1.4.1:compile
+[DEBUG]       org.apache.maven.resolver:maven-resolver-spi:jar:1.4.1:compile
+[DEBUG]       org.apache.maven.resolver:maven-resolver-util:jar:1.4.1:compile
+[DEBUG]       org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile
+[DEBUG]          commons-io:commons-io:jar:2.5:compile
+[DEBUG]       org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.4:provided (scope managed from default) (version managed from default)
+[DEBUG]          javax.enterprise:cdi-api:jar:1.0:provided
+[DEBUG]             javax.annotation:jsr250-api:jar:1.0:provided
+[DEBUG]       org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4:compile
+[DEBUG]       com.google.inject:guice:jar:no_aop:4.2.1:compile
+[DEBUG]          aopalliance:aopalliance:jar:1.0:compile
+[DEBUG]          com.google.guava:guava:jar:25.1-android:compile
+[DEBUG]             com.google.code.findbugs:jsr305:jar:3.0.2:compile
+[DEBUG]             org.checkerframework:checker-compat-qual:jar:2.0.0:compile
+[DEBUG]             com.google.errorprone:error_prone_annotations:jar:2.1.3:compile
+[DEBUG]             com.google.j2objc:j2objc-annotations:jar:1.1:compile
+[DEBUG]             org.codehaus.mojo:animal-sniffer-annotations:jar:1.14:compile
+[DEBUG]       javax.inject:javax.inject:jar:1:compile
+[DEBUG]       org.codehaus.plexus:plexus-utils:jar:3.3.0:compile (version managed from default)
+[DEBUG]       org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile
+[DEBUG]       org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile (version managed from default)
+[DEBUG]       org.apache.commons:commons-lang3:jar:3.8.1:compile
+[DEBUG]    org.eclipse.tycho:sisu-equinox-api:jar:2.3.0:compile
+[DEBUG]    org.eclipse.tycho:org.eclipse.tycho.p2.resolver.shared:jar:2.3.0:compile
+[DEBUG]    org.eclipse.tycho:tycho-core:jar:2.3.0:compile
+[DEBUG]       org.eclipse.tycho:org.eclipse.tycho.p2.tools.shared:jar:2.3.0:compile
+[DEBUG]       org.codehaus.plexus:plexus-archiver:jar:4.2.2:compile (version managed from default)
+[DEBUG]          org.codehaus.plexus:plexus-io:jar:3.2.0:compile (version managed from default)
+[DEBUG]          org.apache.commons:commons-compress:jar:1.20:compile (version managed from default)
+[DEBUG]          org.iq80.snappy:snappy:jar:0.4:compile
+[DEBUG]          org.tukaani:xz:jar:1.8:runtime
+[DEBUG]       org.eclipse.tycho:sisu-equinox-embedder:jar:2.3.0:compile
+[DEBUG]          org.eclipse.platform:org.eclipse.osgi:jar:3.16.200:compile (version managed from default)
+[DEBUG]       org.eclipse.tycho:tycho-metadata-model:jar:2.3.0:compile
+[DEBUG]          de.pdark:decentxml:jar:1.4:compile (version managed from default)
+[DEBUG]       org.eclipse.tycho:tycho-embedder-api:jar:2.3.0:compile
+[DEBUG]          org.eclipse.tycho:org.eclipse.tycho.embedder.shared:jar:2.3.0:compile
+[DEBUG]       org.eclipse.tycho:org.eclipse.tycho.core.shared:jar:2.3.0:compile
+[DEBUG]       org.apache.maven:maven-compat:jar:3.6.3:compile (version managed from default)
+[DEBUG]          org.apache.maven.wagon:wagon-provider-api:jar:3.3.4:compile
+[DEBUG] Created new class realm plugin>org.eclipse.tycho:target-platform-configuration:2.3.0
+[DEBUG] Importing foreign packages into class realm plugin>org.eclipse.tycho:target-platform-configuration:2.3.0
+[DEBUG]   Imported:  < project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT
+[DEBUG] Populating class realm plugin>org.eclipse.tycho:target-platform-configuration:2.3.0
+[DEBUG]   Included: org.eclipse.tycho:target-platform-configuration:jar:2.3.0
+[DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.25
+[DEBUG]   Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4
+[DEBUG]   Included: org.sonatype.plexus:plexus-cipher:jar:1.7
+[DEBUG]   Included: org.apache.maven:maven-builder-support:jar:3.6.3
+[DEBUG]   Included: org.apache.maven.resolver:maven-resolver-util:jar:1.4.1
+[DEBUG]   Included: org.apache.maven.shared:maven-shared-utils:jar:3.2.1
+[DEBUG]   Included: commons-io:commons-io:jar:2.5
+[DEBUG]   Included: org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4
+[DEBUG]   Included: com.google.inject:guice:jar:no_aop:4.2.1
+[DEBUG]   Included: aopalliance:aopalliance:jar:1.0
+[DEBUG]   Included: com.google.guava:guava:jar:25.1-android
+[DEBUG]   Included: com.google.code.findbugs:jsr305:jar:3.0.2
+[DEBUG]   Included: org.checkerframework:checker-compat-qual:jar:2.0.0
+[DEBUG]   Included: com.google.errorprone:error_prone_annotations:jar:2.1.3
+[DEBUG]   Included: com.google.j2objc:j2objc-annotations:jar:1.1
+[DEBUG]   Included: org.codehaus.mojo:animal-sniffer-annotations:jar:1.14
+[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:3.3.0
+[DEBUG]   Included: org.codehaus.plexus:plexus-component-annotations:jar:2.1.0
+[DEBUG]   Included: org.apache.commons:commons-lang3:jar:3.8.1
+[DEBUG]   Included: org.codehaus.plexus:plexus-archiver:jar:4.2.2
+[DEBUG]   Included: org.codehaus.plexus:plexus-io:jar:3.2.0
+[DEBUG]   Included: org.apache.commons:commons-compress:jar:1.20
+[DEBUG]   Included: org.iq80.snappy:snappy:jar:0.4
+[DEBUG]   Included: org.tukaani:xz:jar:1.8
+[DEBUG]   Included: org.eclipse.platform:org.eclipse.osgi:jar:3.16.200
+[DEBUG] Configuring mojo org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform from plugin realm ClassRealm[plugin>org.eclipse.tycho:target-platform-configuration:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin) @ org.eclipse.app4mc.amalthea.converters.common ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin' with basic configurator -->
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.common-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) strictBinIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\org.eclipse.app4mc.amalthea.converters.common-1.1.0-SNAPSHOT.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters/common/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters/common/base/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters/common/converter/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters/common/postprocessor/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters/common/preprocessor/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters/common/utils/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/base/ICache.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/base/IConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/base/IModelMigration.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/base/IPostProcessor.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/base/IPreProcessor.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/converter/AbstractClassnameConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/converter/AbstractConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/converter/NamespaceConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/MigrationException.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/MigrationHelper.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/MigrationInputFile.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/MigrationProcessor.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/MigrationSettings.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/MigrationStatusCode.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/ModelMigration.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/postprocessor/FileNameUpdationProcessor.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/preprocessor/CustomPropsPreProcessor.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/ServiceConstants.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/utils/AmaltheaNamespace.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/utils/AmaltheaNamespaceRegistry.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/utils/HelperUtil.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/utils/HrefElement.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/utils/ModelVersion.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/utils/Tags.class
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding directory resources/
+[DEBUG] adding entry about.html
+[DEBUG] adding entry epl-2.0.html
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters.common.converter.NamespaceConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters.common.MigrationProcessor.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters.common.ModelMigration.xml
+[DEBUG] adding entry resources/tags_Elements_ReferableBaseObject.txt
+[DEBUG] adding directory META-INF/maven/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.common/
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.common/pom.xml
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.common/pom.properties
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default) @ org.eclipse.app4mc.amalthea.converters.common ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default' with basic configurator -->
+[DEBUG]   (f) attachP2Metadata = true
+[DEBUG]   (f) baselineMode = warn
+[DEBUG]   (f) baselineReplace = none
+[DEBUG]   (f) url = https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/
+[DEBUG]   (f) baselineRepositories = [org.eclipse.tycho.plugins.p2.Repository@7ffce6ff]
+[DEBUG]   (f) defaultP2Metadata = true
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default {execution: default-p2-metadata-default}
+[DEBUG]   (f) generateDownloadStatsProperty = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] No baseline version MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[INFO] 
+[INFO] --< org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071 >--
+[INFO] Building [bundle] APP4MC Amalthea Converters to 0.7.1 1.1.0-SNAPSHOT [4/47]
+[INFO] ---------------------------[ eclipse-plugin ]---------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): [compile]
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <baseDir>${project.basedir}</baseDir>
+  <execution>${mojoExecution}</execution>
+  <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
+  <format default-value="yyyyMMddHHmm"/>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id (default-validate-id)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version (default-validate-version)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <strictVersions default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources (default-resources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources default-value="${project.resources}"/>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile (default-compile)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <basedir>${basedir}</basedir>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <compilerId default-value="jdt">${maven.compiler.compilerId}</compilerId>
+  <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
+  <copyResources default-value="true"/>
+  <debug default-value="true">${maven.compiler.debug}</debug>
+  <deriveReleaseCompilerArgumentFromTargetLevel default-value="true"/>
+  <encoding>${project.build.sourceEncoding}</encoding>
+  <executable>${maven.compiler.executable}</executable>
+  <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
+  <fork default-value="false"/>
+  <generatedSourcesDirectory default-value="${project.build.directory}/generated-sources/annotations"/>
+  <logDirectory default-value="${project.build.directory}/compile-logs"/>
+  <mavenCompilerEncoding>${maven.compiler.encoding}</mavenCompilerEncoding>
+  <maxmem>${maven.compiler.maxmem}</maxmem>
+  <meminitial>${maven.compiler.meminitial}</meminitial>
+  <optimize default-value="false">${maven.compiler.optimize}</optimize>
+  <outputFileName>${project.build.finalName}</outputFileName>
+  <project>${project}</project>
+  <release>${maven.compiler.release}</release>
+  <requireJREPackageImports default-value="false"/>
+  <session>${session}</session>
+  <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
+  <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
+  <source>${maven.compiler.source}</source>
+  <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
+  <strictCompilerTarget default-value="false"/>
+  <target>${maven.compiler.target}</target>
+  <useJDK default-value="SYSTEM"/>
+  <useProjectSettings default-value="true"/>
+  <verbose default-value="false">${maven.compiler.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources (default-testResources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources>${project.testResources}</resources>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform (default-target-platform)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <finalName>${project.build.finalName}</finalName>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <strictBinIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attachP2Metadata default-value="true"/>
+  <baselineMode default-value="warn">${tycho.baseline}</baselineMode>
+  <baselineReplace default-value="all">none</baselineReplace>
+  <baselineRepositories>
+    <repository>
+      <url>https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/</url>
+    </repository>
+  </baselineRepositories>
+  <defaultP2Metadata default-value="true"/>
+  <execution>${mojoExecution}</execution>
+  <generateDownloadStatsProperty default-value="false">${tycho.generateDownloadStatsProperty}</generateDownloadStatsProperty>
+  <project>${project}</project>
+</configuration>
+[DEBUG] =======================================================================
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=13200, ConflictMarker.markTime=10400, ConflictMarker.nodeCount=20, ConflictIdSorter.graphTime=5700, ConflictIdSorter.topsortTime=7600, ConflictIdSorter.conflictIdCount=10, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=120000, ConflictResolver.conflictItemCount=19, DefaultDependencyCollector.collectTime=496301, DefaultDependencyCollector.transformTime=172599}
+[DEBUG] org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:eclipse-plugin:1.1.0-SNAPSHOT
+[DEBUG]    p2.eclipse-plugin:javax.annotation:jar:1.2.0.v201602091430:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi:jar:3.15.100.v20191114-1701:system
+[DEBUG]    p2.eclipse-plugin:org.apache.felix.scr:jar:2.1.14.v20190123-1619:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.services:jar:3.8.0.v20190206-2147:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.util:jar:3.5.300.v20190708-1141:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.eclipse.app4mc.util.sessionlog:jar:1.1.0.202104211257:system
+[DEBUG]    p2.eclipse-plugin:org.jdom2:jar:2.0.6.v20191125-0928:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.common:jar:3.10.600.v20191004-1420:system
+[DEBUG]    p2.eclipse-plugin:org.jaxen:jar:1.1.6.v20191106-1554:system
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ org.eclipse.app4mc.amalthea.converters.071 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\test-classes
+[DEBUG] -- end configuration --
+[INFO] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\sourcebundle-l10n-gen\OSGI-INF\l10n\bundle-src.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\sourcebundle-l10n-gen\OSGI-INF\l10n
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\sourcebundle-l10n-gen\OSGI-INF
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\sourcebundle-l10n-gen
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\p2content.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\p2artifacts.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\org.eclipse.app4mc.amalthea.converters.071-1.1.0-SNAPSHOT.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\org.eclipse.app4mc.amalthea.converters.071-1.1.0-SNAPSHOT-sources.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\maven-archiver\pom.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\maven-archiver
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\MANIFEST.MF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\local-artifacts.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\generated-sources\annotations
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\generated-sources
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\classes\org\eclipse\app4mc\amalthea\converters071\utils\SectionRunnableLabelCacheEnum.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\classes\org\eclipse\app4mc\amalthea\converters071\utils\SectionRunnableLabelCacheBuilder.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\classes\org\eclipse\app4mc\amalthea\converters071\utils\HelperUtils_070_071.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\classes\org\eclipse\app4mc\amalthea\converters071\utils
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\classes\org\eclipse\app4mc\amalthea\converters071\impl\SwConverter.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\classes\org\eclipse\app4mc\amalthea\converters071\impl\RootElementConverter.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\classes\org\eclipse\app4mc\amalthea\converters071\impl\PropertyConstraintsConverter.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\classes\org\eclipse\app4mc\amalthea\converters071\impl\HwConverter.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\classes\org\eclipse\app4mc\amalthea\converters071\impl\ConstraintsConverter.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\classes\org\eclipse\app4mc\amalthea\converters071\impl
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\classes\org\eclipse\app4mc\amalthea\converters071
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\classes\org\eclipse\app4mc\amalthea
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\classes\org\eclipse\app4mc
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\classes\org\eclipse
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\classes\org
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\classes
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\site
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier) @ org.eclipse.app4mc.amalthea.converters.071 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier' with basic configurator -->
+[DEBUG]   (f) baseDir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier {execution: default-build-qualifier}
+[DEBUG]   (s) format = yyyyMMddHHmm
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] The project's OSGi version is 1.1.0.202104220626
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-id (default-validate-id) @ org.eclipse.app4mc.amalthea.converters.071 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-version (default-validate-version) @ org.eclipse.app4mc.amalthea.converters.071 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF
+[DEBUG]   (f) strictVersions = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ org.eclipse.app4mc.amalthea.converters.071 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.071.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\src\main\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\src\main\resources
+[INFO] 
+[INFO] --- tycho-compiler-plugin:2.3.0:compile (default-compile) @ org.eclipse.app4mc.amalthea.converters.071 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-compiler-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile' with basic configurator -->
+[DEBUG]   (f) basedir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target
+[DEBUG]   (f) compilerId = jdt
+[DEBUG]   (f) copyResources = true
+[DEBUG]   (f) debug = true
+[DEBUG]   (f) deriveReleaseCompilerArgumentFromTargetLevel = true
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) failOnWarning = false
+[DEBUG]   (f) fork = false
+[DEBUG]   (f) generatedSourcesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\generated-sources\annotations
+[DEBUG]   (f) logDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\compile-logs
+[DEBUG]   (f) optimize = false
+[DEBUG]   (f) outputFileName = org.eclipse.app4mc.amalthea.converters.071-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF
+[DEBUG]   (f) requireJREPackageImports = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showDeprecation = false
+[DEBUG]   (f) showWarnings = false
+[DEBUG]   (f) staleMillis = 0
+[DEBUG]   (f) strictCompilerTarget = false
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useProjectSettings = true
+[DEBUG]   (f) verbose = false
+[DEBUG] -- end configuration --
+[DEBUG] Manifest BREEs: [OSGi profile 'JavaSE-1.8' { source level: 1.8, target level: 1.8}]
+[DEBUG] Target Platform EE: OSGi profile 'JavaSE-11' { source level: 11, target level: 11}
+[DEBUG] Effective source/target: 1.8/1.8
+[DEBUG] Using compiler 'jdt'.
+[DEBUG] Source directories: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\src]
+[DEBUG] Classpath: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\classes]
+[DEBUG] Output directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\classes
+[DEBUG] Classpath:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\classes
+[DEBUG] Source roots:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\src
+[INFO] Compiling 8 source files to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\classes
+[DEBUG] JDT compiler args: [-properties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.settings\org.eclipse.jdt.core.prefs, -s, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\generated-sources\annotations, -d, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\classes, -classpath, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\classes, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\src\org\eclipse\app4mc\amalthea\converters071\utils\HelperUtils_070_071.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\src\org\eclipse\app4mc\amalthea\converters071\utils\SectionRunnableLabelCacheEnum.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\src\org\eclipse\app4mc\amalthea\converters071\impl\RootElementConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\src\org\eclipse\app4mc\amalthea\converters071\impl\ConstraintsConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\src\org\eclipse\app4mc\amalthea\converters071\impl\PropertyConstraintsConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\src\org\eclipse\app4mc\amalthea\converters071\impl\HwConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\src\org\eclipse\app4mc\amalthea\converters071\impl\SwConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\src\org\eclipse\app4mc\amalthea\converters071\utils\SectionRunnableLabelCacheBuilder.java, -g, -nowarn, -target, 1.8, -source, 1.8, --release, 8, -encoding, UTF-8]
+[DEBUG] Original compiler output: 
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ org.eclipse.app4mc.amalthea.converters.071 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\test-classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\src\test\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.071.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\src\test\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\src\test\resources
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ org.eclipse.app4mc.amalthea.converters.071 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.071-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\org.eclipse.app4mc.amalthea.converters.071-1.1.0-SNAPSHOT-sources.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters071/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters071/impl/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters071/utils/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters071/impl/ConstraintsConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters071/impl/HwConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters071/impl/PropertyConstraintsConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters071/impl/RootElementConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters071/impl/SwConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters071/utils/HelperUtils_070_071.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters071/utils/SectionRunnableLabelCacheBuilder.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters071/utils/SectionRunnableLabelCacheEnum.java
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding directory OSGI-INF/l10n/
+[DEBUG] adding entry OSGI-INF/l10n/bundle-src.properties
+[INFO] 
+[INFO] --- target-platform-configuration:2.3.0:target-platform (default-target-platform) @ org.eclipse.app4mc.amalthea.converters.071 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform from plugin realm ClassRealm[plugin>org.eclipse.tycho:target-platform-configuration:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin) @ org.eclipse.app4mc.amalthea.converters.071 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin' with basic configurator -->
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.071-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) strictBinIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\org.eclipse.app4mc.amalthea.converters.071-1.1.0-SNAPSHOT.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters071/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters071/impl/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters071/utils/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters071/impl/ConstraintsConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters071/impl/HwConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters071/impl/PropertyConstraintsConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters071/impl/RootElementConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters071/impl/SwConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters071/utils/HelperUtils_070_071.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters071/utils/SectionRunnableLabelCacheBuilder.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters071/utils/SectionRunnableLabelCacheEnum.class
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters071.impl.ConstraintsConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters071.impl.HwConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters071.impl.PropertyConstraintsConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters071.impl.RootElementConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters071.impl.SwConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters071.utils.SectionRunnableLabelCacheBuilder.xml
+[DEBUG] adding directory META-INF/maven/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.071/
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.071/pom.xml
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.071/pom.properties
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default) @ org.eclipse.app4mc.amalthea.converters.071 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default' with basic configurator -->
+[DEBUG]   (f) attachP2Metadata = true
+[DEBUG]   (f) baselineMode = warn
+[DEBUG]   (f) baselineReplace = none
+[DEBUG]   (f) url = https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/
+[DEBUG]   (f) baselineRepositories = [org.eclipse.tycho.plugins.p2.Repository@44849f77]
+[DEBUG]   (f) defaultP2Metadata = true
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default {execution: default-p2-metadata-default}
+[DEBUG]   (f) generateDownloadStatsProperty = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] No baseline version MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF
+[INFO] 
+[INFO] --< org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072 >--
+[INFO] Building [bundle] APP4MC Amalthea Converters to 0.7.2 1.1.0-SNAPSHOT [5/47]
+[INFO] ---------------------------[ eclipse-plugin ]---------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): [compile]
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <baseDir>${project.basedir}</baseDir>
+  <execution>${mojoExecution}</execution>
+  <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
+  <format default-value="yyyyMMddHHmm"/>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id (default-validate-id)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version (default-validate-version)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <strictVersions default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources (default-resources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources default-value="${project.resources}"/>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile (default-compile)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <basedir>${basedir}</basedir>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <compilerId default-value="jdt">${maven.compiler.compilerId}</compilerId>
+  <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
+  <copyResources default-value="true"/>
+  <debug default-value="true">${maven.compiler.debug}</debug>
+  <deriveReleaseCompilerArgumentFromTargetLevel default-value="true"/>
+  <encoding>${project.build.sourceEncoding}</encoding>
+  <executable>${maven.compiler.executable}</executable>
+  <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
+  <fork default-value="false"/>
+  <generatedSourcesDirectory default-value="${project.build.directory}/generated-sources/annotations"/>
+  <logDirectory default-value="${project.build.directory}/compile-logs"/>
+  <mavenCompilerEncoding>${maven.compiler.encoding}</mavenCompilerEncoding>
+  <maxmem>${maven.compiler.maxmem}</maxmem>
+  <meminitial>${maven.compiler.meminitial}</meminitial>
+  <optimize default-value="false">${maven.compiler.optimize}</optimize>
+  <outputFileName>${project.build.finalName}</outputFileName>
+  <project>${project}</project>
+  <release>${maven.compiler.release}</release>
+  <requireJREPackageImports default-value="false"/>
+  <session>${session}</session>
+  <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
+  <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
+  <source>${maven.compiler.source}</source>
+  <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
+  <strictCompilerTarget default-value="false"/>
+  <target>${maven.compiler.target}</target>
+  <useJDK default-value="SYSTEM"/>
+  <useProjectSettings default-value="true"/>
+  <verbose default-value="false">${maven.compiler.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources (default-testResources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources>${project.testResources}</resources>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform (default-target-platform)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <finalName>${project.build.finalName}</finalName>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <strictBinIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attachP2Metadata default-value="true"/>
+  <baselineMode default-value="warn">${tycho.baseline}</baselineMode>
+  <baselineReplace default-value="all">none</baselineReplace>
+  <baselineRepositories>
+    <repository>
+      <url>https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/</url>
+    </repository>
+  </baselineRepositories>
+  <defaultP2Metadata default-value="true"/>
+  <execution>${mojoExecution}</execution>
+  <generateDownloadStatsProperty default-value="false">${tycho.generateDownloadStatsProperty}</generateDownloadStatsProperty>
+  <project>${project}</project>
+</configuration>
+[DEBUG] =======================================================================
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=14100, ConflictMarker.markTime=18101, ConflictMarker.nodeCount=20, ConflictIdSorter.graphTime=5900, ConflictIdSorter.topsortTime=10400, ConflictIdSorter.conflictIdCount=10, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=74200, ConflictResolver.conflictItemCount=19, DefaultDependencyCollector.collectTime=217500, DefaultDependencyCollector.transformTime=136700}
+[DEBUG] org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:eclipse-plugin:1.1.0-SNAPSHOT
+[DEBUG]    p2.eclipse-plugin:javax.annotation:jar:1.2.0.v201602091430:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi:jar:3.15.100.v20191114-1701:system
+[DEBUG]    p2.eclipse-plugin:org.apache.felix.scr:jar:2.1.14.v20190123-1619:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.services:jar:3.8.0.v20190206-2147:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.util:jar:3.5.300.v20190708-1141:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.eclipse.app4mc.util.sessionlog:jar:1.1.0.202104211257:system
+[DEBUG]    p2.eclipse-plugin:org.jdom2:jar:2.0.6.v20191125-0928:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.common:jar:3.10.600.v20191004-1420:system
+[DEBUG]    p2.eclipse-plugin:org.jaxen:jar:1.1.6.v20191106-1554:system
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ org.eclipse.app4mc.amalthea.converters.072 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\test-classes
+[DEBUG] -- end configuration --
+[INFO] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\sourcebundle-l10n-gen\OSGI-INF\l10n\bundle-src.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\sourcebundle-l10n-gen\OSGI-INF\l10n
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\sourcebundle-l10n-gen\OSGI-INF
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\sourcebundle-l10n-gen
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\p2content.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\p2artifacts.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\org.eclipse.app4mc.amalthea.converters.072-1.1.0-SNAPSHOT.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\org.eclipse.app4mc.amalthea.converters.072-1.1.0-SNAPSHOT-sources.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\maven-archiver\pom.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\maven-archiver
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\MANIFEST.MF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\local-artifacts.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\generated-sources\annotations
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\generated-sources
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\classes\org\eclipse\app4mc\amalthea\converters072\utils\HwElementsCacheEnum.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\classes\org\eclipse\app4mc\amalthea\converters072\utils\HwElementsCacheBuilder.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\classes\org\eclipse\app4mc\amalthea\converters072\utils
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\classes\org\eclipse\app4mc\amalthea\converters072\impl\SwConverter.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\classes\org\eclipse\app4mc\amalthea\converters072\impl\StimuliConverter.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\classes\org\eclipse\app4mc\amalthea\converters072\impl\RootElementConverter.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\classes\org\eclipse\app4mc\amalthea\converters072\impl\PropertyConstraintsConverter.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\classes\org\eclipse\app4mc\amalthea\converters072\impl\OSConverter.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\classes\org\eclipse\app4mc\amalthea\converters072\impl\ConstraintsConverter.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\classes\org\eclipse\app4mc\amalthea\converters072\impl\ConfigConverter.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\classes\org\eclipse\app4mc\amalthea\converters072\impl\CommonElementsConverter.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\classes\org\eclipse\app4mc\amalthea\converters072\impl
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\classes\org\eclipse\app4mc\amalthea\converters072
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\classes\org\eclipse\app4mc\amalthea
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\classes\org\eclipse\app4mc
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\classes\org\eclipse
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\classes\org
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\classes
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\site
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier) @ org.eclipse.app4mc.amalthea.converters.072 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier' with basic configurator -->
+[DEBUG]   (f) baseDir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier {execution: default-build-qualifier}
+[DEBUG]   (s) format = yyyyMMddHHmm
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] The project's OSGi version is 1.1.0.202104220626
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-id (default-validate-id) @ org.eclipse.app4mc.amalthea.converters.072 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-version (default-validate-version) @ org.eclipse.app4mc.amalthea.converters.072 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF
+[DEBUG]   (f) strictVersions = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ org.eclipse.app4mc.amalthea.converters.072 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.072.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\src\main\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\src\main\resources
+[INFO] 
+[INFO] --- tycho-compiler-plugin:2.3.0:compile (default-compile) @ org.eclipse.app4mc.amalthea.converters.072 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-compiler-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile' with basic configurator -->
+[DEBUG]   (f) basedir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target
+[DEBUG]   (f) compilerId = jdt
+[DEBUG]   (f) copyResources = true
+[DEBUG]   (f) debug = true
+[DEBUG]   (f) deriveReleaseCompilerArgumentFromTargetLevel = true
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) failOnWarning = false
+[DEBUG]   (f) fork = false
+[DEBUG]   (f) generatedSourcesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\generated-sources\annotations
+[DEBUG]   (f) logDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\compile-logs
+[DEBUG]   (f) optimize = false
+[DEBUG]   (f) outputFileName = org.eclipse.app4mc.amalthea.converters.072-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF
+[DEBUG]   (f) requireJREPackageImports = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showDeprecation = false
+[DEBUG]   (f) showWarnings = false
+[DEBUG]   (f) staleMillis = 0
+[DEBUG]   (f) strictCompilerTarget = false
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useProjectSettings = true
+[DEBUG]   (f) verbose = false
+[DEBUG] -- end configuration --
+[DEBUG] Manifest BREEs: [OSGi profile 'JavaSE-1.8' { source level: 1.8, target level: 1.8}]
+[DEBUG] Target Platform EE: OSGi profile 'JavaSE-11' { source level: 11, target level: 11}
+[DEBUG] Effective source/target: 1.8/1.8
+[DEBUG] Using compiler 'jdt'.
+[DEBUG] Source directories: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\src]
+[DEBUG] Classpath: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\classes]
+[DEBUG] Output directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\classes
+[DEBUG] Classpath:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\classes
+[DEBUG] Source roots:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\src
+[INFO] Compiling 10 source files to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\classes
+[DEBUG] JDT compiler args: [-properties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.settings\org.eclipse.jdt.core.prefs, -s, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\generated-sources\annotations, -d, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\classes, -classpath, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\classes, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\src\org\eclipse\app4mc\amalthea\converters072\utils\HwElementsCacheBuilder.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\src\org\eclipse\app4mc\amalthea\converters072\utils\HwElementsCacheEnum.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\src\org\eclipse\app4mc\amalthea\converters072\impl\CommonElementsConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\src\org\eclipse\app4mc\amalthea\converters072\impl\SwConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\src\org\eclipse\app4mc\amalthea\converters072\impl\ConfigConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\src\org\eclipse\app4mc\amalthea\converters072\impl\OSConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\src\org\eclipse\app4mc\amalthea\converters072\impl\PropertyConstraintsConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\src\org\eclipse\app4mc\amalthea\converters072\impl\ConstraintsConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\src\org\eclipse\app4mc\amalthea\converters072\impl\RootElementConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\src\org\eclipse\app4mc\amalthea\converters072\impl\StimuliConverter.java, -g, -nowarn, -target, 1.8, -source, 1.8, --release, 8, -encoding, UTF-8]
+[DEBUG] Original compiler output: 
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ org.eclipse.app4mc.amalthea.converters.072 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\test-classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\src\test\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.072.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\src\test\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\src\test\resources
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ org.eclipse.app4mc.amalthea.converters.072 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.072-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\org.eclipse.app4mc.amalthea.converters.072-1.1.0-SNAPSHOT-sources.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters072/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters072/impl/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters072/utils/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters072/impl/CommonElementsConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters072/impl/ConfigConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters072/impl/ConstraintsConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters072/impl/OSConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters072/impl/PropertyConstraintsConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters072/impl/RootElementConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters072/impl/StimuliConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters072/impl/SwConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters072/utils/HwElementsCacheBuilder.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters072/utils/HwElementsCacheEnum.java
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding directory OSGI-INF/l10n/
+[DEBUG] adding entry OSGI-INF/l10n/bundle-src.properties
+[INFO] 
+[INFO] --- target-platform-configuration:2.3.0:target-platform (default-target-platform) @ org.eclipse.app4mc.amalthea.converters.072 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform from plugin realm ClassRealm[plugin>org.eclipse.tycho:target-platform-configuration:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin) @ org.eclipse.app4mc.amalthea.converters.072 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin' with basic configurator -->
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.072-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) strictBinIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\org.eclipse.app4mc.amalthea.converters.072-1.1.0-SNAPSHOT.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters072/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters072/impl/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters072/utils/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters072/impl/CommonElementsConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters072/impl/ConfigConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters072/impl/ConstraintsConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters072/impl/OSConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters072/impl/PropertyConstraintsConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters072/impl/RootElementConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters072/impl/StimuliConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters072/impl/SwConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters072/utils/HwElementsCacheBuilder.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters072/utils/HwElementsCacheEnum.class
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters072.impl.CommonElementsConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters072.impl.ConfigConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters072.impl.ConstraintsConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters072.impl.OSConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters072.impl.PropertyConstraintsConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters072.impl.RootElementConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters072.impl.StimuliConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters072.impl.SwConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters072.utils.HwElementsCacheBuilder.xml
+[DEBUG] adding directory META-INF/maven/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.072/
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.072/pom.xml
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.072/pom.properties
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default) @ org.eclipse.app4mc.amalthea.converters.072 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default' with basic configurator -->
+[DEBUG]   (f) attachP2Metadata = true
+[DEBUG]   (f) baselineMode = warn
+[DEBUG]   (f) baselineReplace = none
+[DEBUG]   (f) url = https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/
+[DEBUG]   (f) baselineRepositories = [org.eclipse.tycho.plugins.p2.Repository@7220e4d5]
+[DEBUG]   (f) defaultP2Metadata = true
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default {execution: default-p2-metadata-default}
+[DEBUG]   (f) generateDownloadStatsProperty = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] No baseline version MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF
+[INFO] 
+[INFO] --< org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080 >--
+[INFO] Building [bundle] APP4MC Amalthea Converters to 0.8.0 1.1.0-SNAPSHOT [6/47]
+[INFO] ---------------------------[ eclipse-plugin ]---------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): [compile]
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <baseDir>${project.basedir}</baseDir>
+  <execution>${mojoExecution}</execution>
+  <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
+  <format default-value="yyyyMMddHHmm"/>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id (default-validate-id)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version (default-validate-version)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <strictVersions default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources (default-resources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources default-value="${project.resources}"/>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile (default-compile)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <basedir>${basedir}</basedir>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <compilerId default-value="jdt">${maven.compiler.compilerId}</compilerId>
+  <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
+  <copyResources default-value="true"/>
+  <debug default-value="true">${maven.compiler.debug}</debug>
+  <deriveReleaseCompilerArgumentFromTargetLevel default-value="true"/>
+  <encoding>${project.build.sourceEncoding}</encoding>
+  <executable>${maven.compiler.executable}</executable>
+  <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
+  <fork default-value="false"/>
+  <generatedSourcesDirectory default-value="${project.build.directory}/generated-sources/annotations"/>
+  <logDirectory default-value="${project.build.directory}/compile-logs"/>
+  <mavenCompilerEncoding>${maven.compiler.encoding}</mavenCompilerEncoding>
+  <maxmem>${maven.compiler.maxmem}</maxmem>
+  <meminitial>${maven.compiler.meminitial}</meminitial>
+  <optimize default-value="false">${maven.compiler.optimize}</optimize>
+  <outputFileName>${project.build.finalName}</outputFileName>
+  <project>${project}</project>
+  <release>${maven.compiler.release}</release>
+  <requireJREPackageImports default-value="false"/>
+  <session>${session}</session>
+  <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
+  <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
+  <source>${maven.compiler.source}</source>
+  <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
+  <strictCompilerTarget default-value="false"/>
+  <target>${maven.compiler.target}</target>
+  <useJDK default-value="SYSTEM"/>
+  <useProjectSettings default-value="true"/>
+  <verbose default-value="false">${maven.compiler.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources (default-testResources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources>${project.testResources}</resources>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform (default-target-platform)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <finalName>${project.build.finalName}</finalName>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <strictBinIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attachP2Metadata default-value="true"/>
+  <baselineMode default-value="warn">${tycho.baseline}</baselineMode>
+  <baselineReplace default-value="all">none</baselineReplace>
+  <baselineRepositories>
+    <repository>
+      <url>https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/</url>
+    </repository>
+  </baselineRepositories>
+  <defaultP2Metadata default-value="true"/>
+  <execution>${mojoExecution}</execution>
+  <generateDownloadStatsProperty default-value="false">${tycho.generateDownloadStatsProperty}</generateDownloadStatsProperty>
+  <project>${project}</project>
+</configuration>
+[DEBUG] =======================================================================
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=12900, ConflictMarker.markTime=10400, ConflictMarker.nodeCount=20, ConflictIdSorter.graphTime=5601, ConflictIdSorter.topsortTime=6900, ConflictIdSorter.conflictIdCount=10, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=108301, ConflictResolver.conflictItemCount=19, DefaultDependencyCollector.collectTime=198899, DefaultDependencyCollector.transformTime=157101}
+[DEBUG] org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:eclipse-plugin:1.1.0-SNAPSHOT
+[DEBUG]    p2.eclipse-plugin:javax.annotation:jar:1.2.0.v201602091430:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi:jar:3.15.100.v20191114-1701:system
+[DEBUG]    p2.eclipse-plugin:org.apache.felix.scr:jar:2.1.14.v20190123-1619:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.services:jar:3.8.0.v20190206-2147:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.util:jar:3.5.300.v20190708-1141:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.eclipse.app4mc.util.sessionlog:jar:1.1.0.202104211257:system
+[DEBUG]    p2.eclipse-plugin:org.jdom2:jar:2.0.6.v20191125-0928:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.common:jar:3.10.600.v20191004-1420:system
+[DEBUG]    p2.eclipse-plugin:org.jaxen:jar:1.1.6.v20191106-1554:system
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ org.eclipse.app4mc.amalthea.converters.080 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\test-classes
+[DEBUG] -- end configuration --
+[INFO] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\sourcebundle-l10n-gen\OSGI-INF\l10n\bundle-src.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\sourcebundle-l10n-gen\OSGI-INF\l10n
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\sourcebundle-l10n-gen\OSGI-INF
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\sourcebundle-l10n-gen
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\p2content.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\p2artifacts.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\org.eclipse.app4mc.amalthea.converters.080-1.1.0-SNAPSHOT.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\org.eclipse.app4mc.amalthea.converters.080-1.1.0-SNAPSHOT-sources.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\maven-archiver\pom.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\maven-archiver
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\MANIFEST.MF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\local-artifacts.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\generated-sources\annotations
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\generated-sources
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\classes\org\eclipse\app4mc\amalthea\converters080\impl\SwConverter.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\classes\org\eclipse\app4mc\amalthea\converters080\impl\StimuliConverter.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\classes\org\eclipse\app4mc\amalthea\converters080\impl\RootElementConverter.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\classes\org\eclipse\app4mc\amalthea\converters080\impl\PropertyConstraintsConverter.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\classes\org\eclipse\app4mc\amalthea\converters080\impl\OSConverter.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\classes\org\eclipse\app4mc\amalthea\converters080\impl\MappingConverter.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\classes\org\eclipse\app4mc\amalthea\converters080\impl
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\classes\org\eclipse\app4mc\amalthea\converters080
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\classes\org\eclipse\app4mc\amalthea
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\classes\org\eclipse\app4mc
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\classes\org\eclipse
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\classes\org
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\classes
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\site
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier) @ org.eclipse.app4mc.amalthea.converters.080 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier' with basic configurator -->
+[DEBUG]   (f) baseDir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier {execution: default-build-qualifier}
+[DEBUG]   (s) format = yyyyMMddHHmm
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] The project's OSGi version is 1.1.0.202104220626
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-id (default-validate-id) @ org.eclipse.app4mc.amalthea.converters.080 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-version (default-validate-version) @ org.eclipse.app4mc.amalthea.converters.080 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF
+[DEBUG]   (f) strictVersions = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ org.eclipse.app4mc.amalthea.converters.080 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.080.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\src\main\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\src\main\resources
+[INFO] 
+[INFO] --- tycho-compiler-plugin:2.3.0:compile (default-compile) @ org.eclipse.app4mc.amalthea.converters.080 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-compiler-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile' with basic configurator -->
+[DEBUG]   (f) basedir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target
+[DEBUG]   (f) compilerId = jdt
+[DEBUG]   (f) copyResources = true
+[DEBUG]   (f) debug = true
+[DEBUG]   (f) deriveReleaseCompilerArgumentFromTargetLevel = true
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) failOnWarning = false
+[DEBUG]   (f) fork = false
+[DEBUG]   (f) generatedSourcesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\generated-sources\annotations
+[DEBUG]   (f) logDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\compile-logs
+[DEBUG]   (f) optimize = false
+[DEBUG]   (f) outputFileName = org.eclipse.app4mc.amalthea.converters.080-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF
+[DEBUG]   (f) requireJREPackageImports = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showDeprecation = false
+[DEBUG]   (f) showWarnings = false
+[DEBUG]   (f) staleMillis = 0
+[DEBUG]   (f) strictCompilerTarget = false
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useProjectSettings = true
+[DEBUG]   (f) verbose = false
+[DEBUG] -- end configuration --
+[DEBUG] Manifest BREEs: [OSGi profile 'JavaSE-1.8' { source level: 1.8, target level: 1.8}]
+[DEBUG] Target Platform EE: OSGi profile 'JavaSE-11' { source level: 11, target level: 11}
+[DEBUG] Effective source/target: 1.8/1.8
+[DEBUG] Using compiler 'jdt'.
+[DEBUG] Source directories: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\src]
+[DEBUG] Classpath: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;+org/jdom2/output/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\classes]
+[DEBUG] Output directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\classes
+[DEBUG] Classpath:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;+org/jdom2/output/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\classes
+[DEBUG] Source roots:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\src
+[INFO] Compiling 6 source files to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\classes
+[DEBUG] JDT compiler args: [-properties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.settings\org.eclipse.jdt.core.prefs, -s, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\generated-sources\annotations, -d, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\classes, -classpath, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;+org/jdom2/output/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\classes, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\src\org\eclipse\app4mc\amalthea\converters080\impl\StimuliConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\src\org\eclipse\app4mc\amalthea\converters080\impl\RootElementConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\src\org\eclipse\app4mc\amalthea\converters080\impl\PropertyConstraintsConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\src\org\eclipse\app4mc\amalthea\converters080\impl\OSConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\src\org\eclipse\app4mc\amalthea\converters080\impl\SwConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\src\org\eclipse\app4mc\amalthea\converters080\impl\MappingConverter.java, -g, -nowarn, -target, 1.8, -source, 1.8, --release, 8, -encoding, UTF-8]
+[DEBUG] Original compiler output: 
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ org.eclipse.app4mc.amalthea.converters.080 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\test-classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\src\test\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.080.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\src\test\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\src\test\resources
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ org.eclipse.app4mc.amalthea.converters.080 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.080-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\org.eclipse.app4mc.amalthea.converters.080-1.1.0-SNAPSHOT-sources.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters080/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters080/impl/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters080/impl/MappingConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters080/impl/OSConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters080/impl/PropertyConstraintsConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters080/impl/RootElementConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters080/impl/StimuliConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters080/impl/SwConverter.java
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding directory OSGI-INF/l10n/
+[DEBUG] adding entry OSGI-INF/l10n/bundle-src.properties
+[INFO] 
+[INFO] --- target-platform-configuration:2.3.0:target-platform (default-target-platform) @ org.eclipse.app4mc.amalthea.converters.080 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform from plugin realm ClassRealm[plugin>org.eclipse.tycho:target-platform-configuration:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin) @ org.eclipse.app4mc.amalthea.converters.080 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin' with basic configurator -->
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.080-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) strictBinIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\org.eclipse.app4mc.amalthea.converters.080-1.1.0-SNAPSHOT.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters080/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters080/impl/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters080/impl/MappingConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters080/impl/OSConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters080/impl/PropertyConstraintsConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters080/impl/RootElementConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters080/impl/StimuliConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters080/impl/SwConverter.class
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters080.impl.MappingConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters080.impl.OSConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters080.impl.PropertyConstraintsConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters080.impl.RootElementConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters080.impl.StimuliConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters080.impl.SwConverter.xml
+[DEBUG] adding directory META-INF/maven/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.080/
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.080/pom.xml
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.080/pom.properties
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default) @ org.eclipse.app4mc.amalthea.converters.080 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default' with basic configurator -->
+[DEBUG]   (f) attachP2Metadata = true
+[DEBUG]   (f) baselineMode = warn
+[DEBUG]   (f) baselineReplace = none
+[DEBUG]   (f) url = https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/
+[DEBUG]   (f) baselineRepositories = [org.eclipse.tycho.plugins.p2.Repository@729f1db0]
+[DEBUG]   (f) defaultP2Metadata = true
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default {execution: default-p2-metadata-default}
+[DEBUG]   (f) generateDownloadStatsProperty = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] No baseline version MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF
+[INFO] 
+[INFO] --< org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081 >--
+[INFO] Building [bundle] APP4MC Amalthea Converters to 0.8.1 1.1.0-SNAPSHOT [7/47]
+[INFO] ---------------------------[ eclipse-plugin ]---------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): [compile]
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <baseDir>${project.basedir}</baseDir>
+  <execution>${mojoExecution}</execution>
+  <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
+  <format default-value="yyyyMMddHHmm"/>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id (default-validate-id)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version (default-validate-version)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <strictVersions default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources (default-resources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources default-value="${project.resources}"/>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile (default-compile)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <basedir>${basedir}</basedir>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <compilerId default-value="jdt">${maven.compiler.compilerId}</compilerId>
+  <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
+  <copyResources default-value="true"/>
+  <debug default-value="true">${maven.compiler.debug}</debug>
+  <deriveReleaseCompilerArgumentFromTargetLevel default-value="true"/>
+  <encoding>${project.build.sourceEncoding}</encoding>
+  <executable>${maven.compiler.executable}</executable>
+  <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
+  <fork default-value="false"/>
+  <generatedSourcesDirectory default-value="${project.build.directory}/generated-sources/annotations"/>
+  <logDirectory default-value="${project.build.directory}/compile-logs"/>
+  <mavenCompilerEncoding>${maven.compiler.encoding}</mavenCompilerEncoding>
+  <maxmem>${maven.compiler.maxmem}</maxmem>
+  <meminitial>${maven.compiler.meminitial}</meminitial>
+  <optimize default-value="false">${maven.compiler.optimize}</optimize>
+  <outputFileName>${project.build.finalName}</outputFileName>
+  <project>${project}</project>
+  <release>${maven.compiler.release}</release>
+  <requireJREPackageImports default-value="false"/>
+  <session>${session}</session>
+  <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
+  <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
+  <source>${maven.compiler.source}</source>
+  <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
+  <strictCompilerTarget default-value="false"/>
+  <target>${maven.compiler.target}</target>
+  <useJDK default-value="SYSTEM"/>
+  <useProjectSettings default-value="true"/>
+  <verbose default-value="false">${maven.compiler.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources (default-testResources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources>${project.testResources}</resources>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform (default-target-platform)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <finalName>${project.build.finalName}</finalName>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <strictBinIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attachP2Metadata default-value="true"/>
+  <baselineMode default-value="warn">${tycho.baseline}</baselineMode>
+  <baselineReplace default-value="all">none</baselineReplace>
+  <baselineRepositories>
+    <repository>
+      <url>https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/</url>
+    </repository>
+  </baselineRepositories>
+  <defaultP2Metadata default-value="true"/>
+  <execution>${mojoExecution}</execution>
+  <generateDownloadStatsProperty default-value="false">${tycho.generateDownloadStatsProperty}</generateDownloadStatsProperty>
+  <project>${project}</project>
+</configuration>
+[DEBUG] =======================================================================
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=13600, ConflictMarker.markTime=11201, ConflictMarker.nodeCount=20, ConflictIdSorter.graphTime=5900, ConflictIdSorter.topsortTime=7099, ConflictIdSorter.conflictIdCount=10, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=52201, ConflictResolver.conflictItemCount=19, DefaultDependencyCollector.collectTime=199101, DefaultDependencyCollector.transformTime=109000}
+[DEBUG] org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:eclipse-plugin:1.1.0-SNAPSHOT
+[DEBUG]    p2.eclipse-plugin:javax.annotation:jar:1.2.0.v201602091430:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi:jar:3.15.100.v20191114-1701:system
+[DEBUG]    p2.eclipse-plugin:org.apache.felix.scr:jar:2.1.14.v20190123-1619:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.services:jar:3.8.0.v20190206-2147:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.util:jar:3.5.300.v20190708-1141:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.eclipse.app4mc.util.sessionlog:jar:1.1.0.202104211257:system
+[DEBUG]    p2.eclipse-plugin:org.jdom2:jar:2.0.6.v20191125-0928:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.common:jar:3.10.600.v20191004-1420:system
+[DEBUG]    p2.eclipse-plugin:org.jaxen:jar:1.1.6.v20191106-1554:system
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ org.eclipse.app4mc.amalthea.converters.081 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\test-classes
+[DEBUG] -- end configuration --
+[INFO] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\sourcebundle-l10n-gen\OSGI-INF\l10n\bundle-src.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\sourcebundle-l10n-gen\OSGI-INF\l10n
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\sourcebundle-l10n-gen\OSGI-INF
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\sourcebundle-l10n-gen
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\p2content.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\p2artifacts.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\org.eclipse.app4mc.amalthea.converters.081-1.1.0-SNAPSHOT.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\org.eclipse.app4mc.amalthea.converters.081-1.1.0-SNAPSHOT-sources.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\maven-archiver\pom.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\maven-archiver
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\MANIFEST.MF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\local-artifacts.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\generated-sources\annotations
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\generated-sources
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\classes\org\eclipse\app4mc\amalthea\converters081\utils\HelperUtils_080_081.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\classes\org\eclipse\app4mc\amalthea\converters081\utils\ConstraintElementsCacheEnum.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\classes\org\eclipse\app4mc\amalthea\converters081\utils\ConstraintElementsCacheBuilder.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\classes\org\eclipse\app4mc\amalthea\converters081\utils
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\classes\org\eclipse\app4mc\amalthea\converters081\impl\SwConverter.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\classes\org\eclipse\app4mc\amalthea\converters081\impl\StimuliConverter.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\classes\org\eclipse\app4mc\amalthea\converters081\impl\RootElementConverter.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\classes\org\eclipse\app4mc\amalthea\converters081\impl\OSConverter.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\classes\org\eclipse\app4mc\amalthea\converters081\impl\MappingConverter.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\classes\org\eclipse\app4mc\amalthea\converters081\impl\HwConverter.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\classes\org\eclipse\app4mc\amalthea\converters081\impl\ConstraintsConverter.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\classes\org\eclipse\app4mc\amalthea\converters081\impl
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\classes\org\eclipse\app4mc\amalthea\converters081
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\classes\org\eclipse\app4mc\amalthea
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\classes\org\eclipse\app4mc
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\classes\org\eclipse
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\classes\org
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\classes
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\site
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier) @ org.eclipse.app4mc.amalthea.converters.081 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier' with basic configurator -->
+[DEBUG]   (f) baseDir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier {execution: default-build-qualifier}
+[DEBUG]   (s) format = yyyyMMddHHmm
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] The project's OSGi version is 1.1.0.202104220626
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-id (default-validate-id) @ org.eclipse.app4mc.amalthea.converters.081 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-version (default-validate-version) @ org.eclipse.app4mc.amalthea.converters.081 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF
+[DEBUG]   (f) strictVersions = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ org.eclipse.app4mc.amalthea.converters.081 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.081.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\src\main\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\src\main\resources
+[INFO] 
+[INFO] --- tycho-compiler-plugin:2.3.0:compile (default-compile) @ org.eclipse.app4mc.amalthea.converters.081 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-compiler-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile' with basic configurator -->
+[DEBUG]   (f) basedir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target
+[DEBUG]   (f) compilerId = jdt
+[DEBUG]   (f) copyResources = true
+[DEBUG]   (f) debug = true
+[DEBUG]   (f) deriveReleaseCompilerArgumentFromTargetLevel = true
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) failOnWarning = false
+[DEBUG]   (f) fork = false
+[DEBUG]   (f) generatedSourcesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\generated-sources\annotations
+[DEBUG]   (f) logDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\compile-logs
+[DEBUG]   (f) optimize = false
+[DEBUG]   (f) outputFileName = org.eclipse.app4mc.amalthea.converters.081-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF
+[DEBUG]   (f) requireJREPackageImports = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showDeprecation = false
+[DEBUG]   (f) showWarnings = false
+[DEBUG]   (f) staleMillis = 0
+[DEBUG]   (f) strictCompilerTarget = false
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useProjectSettings = true
+[DEBUG]   (f) verbose = false
+[DEBUG] -- end configuration --
+[DEBUG] Manifest BREEs: [OSGi profile 'JavaSE-1.8' { source level: 1.8, target level: 1.8}]
+[DEBUG] Target Platform EE: OSGi profile 'JavaSE-11' { source level: 11, target level: 11}
+[DEBUG] Effective source/target: 1.8/1.8
+[DEBUG] Using compiler 'jdt'.
+[DEBUG] Source directories: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\src]
+[DEBUG] Classpath: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\classes]
+[DEBUG] Output directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\classes
+[DEBUG] Classpath:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\classes
+[DEBUG] Source roots:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\src
+[INFO] Compiling 10 source files to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\classes
+[DEBUG] JDT compiler args: [-properties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.settings\org.eclipse.jdt.core.prefs, -s, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\generated-sources\annotations, -d, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\classes, -classpath, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\classes, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\src\org\eclipse\app4mc\amalthea\converters081\impl\RootElementConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\src\org\eclipse\app4mc\amalthea\converters081\impl\ConstraintsConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\src\org\eclipse\app4mc\amalthea\converters081\impl\MappingConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\src\org\eclipse\app4mc\amalthea\converters081\utils\ConstraintElementsCacheEnum.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\src\org\eclipse\app4mc\amalthea\converters081\utils\ConstraintElementsCacheBuilder.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\src\org\eclipse\app4mc\amalthea\converters081\impl\HwConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\src\org\eclipse\app4mc\amalthea\converters081\utils\HelperUtils_080_081.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\src\org\eclipse\app4mc\amalthea\converters081\impl\StimuliConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\src\org\eclipse\app4mc\amalthea\converters081\impl\SwConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\src\org\eclipse\app4mc\amalthea\converters081\impl\OSConverter.java, -g, -nowarn, -target, 1.8, -source, 1.8, --release, 8, -encoding, UTF-8]
+[DEBUG] Original compiler output: 
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ org.eclipse.app4mc.amalthea.converters.081 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\test-classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\src\test\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.081.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\src\test\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\src\test\resources
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ org.eclipse.app4mc.amalthea.converters.081 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.081-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\org.eclipse.app4mc.amalthea.converters.081-1.1.0-SNAPSHOT-sources.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters081/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters081/impl/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters081/utils/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters081/impl/ConstraintsConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters081/impl/HwConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters081/impl/MappingConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters081/impl/OSConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters081/impl/RootElementConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters081/impl/StimuliConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters081/impl/SwConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters081/utils/ConstraintElementsCacheBuilder.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters081/utils/ConstraintElementsCacheEnum.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters081/utils/HelperUtils_080_081.java
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding directory OSGI-INF/l10n/
+[DEBUG] adding entry OSGI-INF/l10n/bundle-src.properties
+[INFO] 
+[INFO] --- target-platform-configuration:2.3.0:target-platform (default-target-platform) @ org.eclipse.app4mc.amalthea.converters.081 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform from plugin realm ClassRealm[plugin>org.eclipse.tycho:target-platform-configuration:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin) @ org.eclipse.app4mc.amalthea.converters.081 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin' with basic configurator -->
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.081-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) strictBinIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\org.eclipse.app4mc.amalthea.converters.081-1.1.0-SNAPSHOT.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters081/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters081/impl/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters081/utils/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters081/impl/ConstraintsConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters081/impl/HwConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters081/impl/MappingConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters081/impl/OSConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters081/impl/RootElementConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters081/impl/StimuliConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters081/impl/SwConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters081/utils/ConstraintElementsCacheBuilder.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters081/utils/ConstraintElementsCacheEnum.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters081/utils/HelperUtils_080_081.class
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters081.impl.ConstraintsConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters081.impl.HwConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters081.impl.MappingConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters081.impl.OSConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters081.impl.RootElementConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters081.impl.StimuliConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters081.impl.SwConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters081.utils.ConstraintElementsCacheBuilder.xml
+[DEBUG] adding directory META-INF/maven/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.081/
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.081/pom.xml
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.081/pom.properties
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default) @ org.eclipse.app4mc.amalthea.converters.081 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default' with basic configurator -->
+[DEBUG]   (f) attachP2Metadata = true
+[DEBUG]   (f) baselineMode = warn
+[DEBUG]   (f) baselineReplace = none
+[DEBUG]   (f) url = https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/
+[DEBUG]   (f) baselineRepositories = [org.eclipse.tycho.plugins.p2.Repository@e44d951]
+[DEBUG]   (f) defaultP2Metadata = true
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default {execution: default-p2-metadata-default}
+[DEBUG]   (f) generateDownloadStatsProperty = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] No baseline version MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF
+[INFO] 
+[INFO] --< org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082 >--
+[INFO] Building [bundle] APP4MC Amalthea Converters to 0.8.2 1.1.0-SNAPSHOT [8/47]
+[INFO] ---------------------------[ eclipse-plugin ]---------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): [compile]
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <baseDir>${project.basedir}</baseDir>
+  <execution>${mojoExecution}</execution>
+  <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
+  <format default-value="yyyyMMddHHmm"/>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id (default-validate-id)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version (default-validate-version)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <strictVersions default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources (default-resources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources default-value="${project.resources}"/>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile (default-compile)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <basedir>${basedir}</basedir>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <compilerId default-value="jdt">${maven.compiler.compilerId}</compilerId>
+  <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
+  <copyResources default-value="true"/>
+  <debug default-value="true">${maven.compiler.debug}</debug>
+  <deriveReleaseCompilerArgumentFromTargetLevel default-value="true"/>
+  <encoding>${project.build.sourceEncoding}</encoding>
+  <executable>${maven.compiler.executable}</executable>
+  <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
+  <fork default-value="false"/>
+  <generatedSourcesDirectory default-value="${project.build.directory}/generated-sources/annotations"/>
+  <logDirectory default-value="${project.build.directory}/compile-logs"/>
+  <mavenCompilerEncoding>${maven.compiler.encoding}</mavenCompilerEncoding>
+  <maxmem>${maven.compiler.maxmem}</maxmem>
+  <meminitial>${maven.compiler.meminitial}</meminitial>
+  <optimize default-value="false">${maven.compiler.optimize}</optimize>
+  <outputFileName>${project.build.finalName}</outputFileName>
+  <project>${project}</project>
+  <release>${maven.compiler.release}</release>
+  <requireJREPackageImports default-value="false"/>
+  <session>${session}</session>
+  <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
+  <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
+  <source>${maven.compiler.source}</source>
+  <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
+  <strictCompilerTarget default-value="false"/>
+  <target>${maven.compiler.target}</target>
+  <useJDK default-value="SYSTEM"/>
+  <useProjectSettings default-value="true"/>
+  <verbose default-value="false">${maven.compiler.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources (default-testResources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources>${project.testResources}</resources>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform (default-target-platform)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <finalName>${project.build.finalName}</finalName>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <strictBinIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attachP2Metadata default-value="true"/>
+  <baselineMode default-value="warn">${tycho.baseline}</baselineMode>
+  <baselineReplace default-value="all">none</baselineReplace>
+  <baselineRepositories>
+    <repository>
+      <url>https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/</url>
+    </repository>
+  </baselineRepositories>
+  <defaultP2Metadata default-value="true"/>
+  <execution>${mojoExecution}</execution>
+  <generateDownloadStatsProperty default-value="false">${tycho.generateDownloadStatsProperty}</generateDownloadStatsProperty>
+  <project>${project}</project>
+</configuration>
+[DEBUG] =======================================================================
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=23001, ConflictMarker.markTime=15899, ConflictMarker.nodeCount=20, ConflictIdSorter.graphTime=8000, ConflictIdSorter.topsortTime=11600, ConflictIdSorter.conflictIdCount=10, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=62401, ConflictResolver.conflictItemCount=19, DefaultDependencyCollector.collectTime=294100, DefaultDependencyCollector.transformTime=139000}
+[DEBUG] org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:eclipse-plugin:1.1.0-SNAPSHOT
+[DEBUG]    p2.eclipse-plugin:javax.annotation:jar:1.2.0.v201602091430:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi:jar:3.15.100.v20191114-1701:system
+[DEBUG]    p2.eclipse-plugin:org.apache.felix.scr:jar:2.1.14.v20190123-1619:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.services:jar:3.8.0.v20190206-2147:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.util:jar:3.5.300.v20190708-1141:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.eclipse.app4mc.util.sessionlog:jar:1.1.0.202104211257:system
+[DEBUG]    p2.eclipse-plugin:org.jdom2:jar:2.0.6.v20191125-0928:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.common:jar:3.10.600.v20191004-1420:system
+[DEBUG]    p2.eclipse-plugin:org.jaxen:jar:1.1.6.v20191106-1554:system
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ org.eclipse.app4mc.amalthea.converters.082 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\test-classes
+[DEBUG] -- end configuration --
+[INFO] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\sourcebundle-l10n-gen\OSGI-INF\l10n\bundle-src.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\sourcebundle-l10n-gen\OSGI-INF\l10n
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\sourcebundle-l10n-gen\OSGI-INF
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\sourcebundle-l10n-gen
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\p2content.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\p2artifacts.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\org.eclipse.app4mc.amalthea.converters.082-1.1.0-SNAPSHOT.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\org.eclipse.app4mc.amalthea.converters.082-1.1.0-SNAPSHOT-sources.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\maven-archiver\pom.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\maven-archiver
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\MANIFEST.MF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\local-artifacts.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\generated-sources\annotations
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\generated-sources
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\classes\org\eclipse\app4mc\amalthea\converters082\impl\RootElementConverter.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\classes\org\eclipse\app4mc\amalthea\converters082\impl
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\classes\org\eclipse\app4mc\amalthea\converters082
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\classes\org\eclipse\app4mc\amalthea
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\classes\org\eclipse\app4mc
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\classes\org\eclipse
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\classes\org
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\classes
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\site
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier) @ org.eclipse.app4mc.amalthea.converters.082 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier' with basic configurator -->
+[DEBUG]   (f) baseDir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier {execution: default-build-qualifier}
+[DEBUG]   (s) format = yyyyMMddHHmm
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] The project's OSGi version is 1.1.0.202104220626
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-id (default-validate-id) @ org.eclipse.app4mc.amalthea.converters.082 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-version (default-validate-version) @ org.eclipse.app4mc.amalthea.converters.082 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF
+[DEBUG]   (f) strictVersions = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ org.eclipse.app4mc.amalthea.converters.082 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.082.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\src\main\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\src\main\resources
+[INFO] 
+[INFO] --- tycho-compiler-plugin:2.3.0:compile (default-compile) @ org.eclipse.app4mc.amalthea.converters.082 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-compiler-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile' with basic configurator -->
+[DEBUG]   (f) basedir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target
+[DEBUG]   (f) compilerId = jdt
+[DEBUG]   (f) copyResources = true
+[DEBUG]   (f) debug = true
+[DEBUG]   (f) deriveReleaseCompilerArgumentFromTargetLevel = true
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) failOnWarning = false
+[DEBUG]   (f) fork = false
+[DEBUG]   (f) generatedSourcesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\generated-sources\annotations
+[DEBUG]   (f) logDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\compile-logs
+[DEBUG]   (f) optimize = false
+[DEBUG]   (f) outputFileName = org.eclipse.app4mc.amalthea.converters.082-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF
+[DEBUG]   (f) requireJREPackageImports = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showDeprecation = false
+[DEBUG]   (f) showWarnings = false
+[DEBUG]   (f) staleMillis = 0
+[DEBUG]   (f) strictCompilerTarget = false
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useProjectSettings = true
+[DEBUG]   (f) verbose = false
+[DEBUG] -- end configuration --
+[DEBUG] Manifest BREEs: [OSGi profile 'JavaSE-1.8' { source level: 1.8, target level: 1.8}]
+[DEBUG] Target Platform EE: OSGi profile 'JavaSE-11' { source level: 11, target level: 11}
+[DEBUG] Effective source/target: 1.8/1.8
+[DEBUG] Using compiler 'jdt'.
+[DEBUG] Source directories: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\src]
+[DEBUG] Classpath: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\classes]
+[DEBUG] Output directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\classes
+[DEBUG] Classpath:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\classes
+[DEBUG] Source roots:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\src
+[INFO] Compiling 1 source file to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\classes
+[DEBUG] JDT compiler args: [-properties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.settings\org.eclipse.jdt.core.prefs, -s, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\generated-sources\annotations, -d, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\classes, -classpath, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\classes, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\src\org\eclipse\app4mc\amalthea\converters082\impl\RootElementConverter.java, -g, -nowarn, -target, 1.8, -source, 1.8, --release, 8, -encoding, UTF-8]
+[DEBUG] Original compiler output: 
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ org.eclipse.app4mc.amalthea.converters.082 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\test-classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\src\test\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.082.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\src\test\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\src\test\resources
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ org.eclipse.app4mc.amalthea.converters.082 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.082-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\org.eclipse.app4mc.amalthea.converters.082-1.1.0-SNAPSHOT-sources.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters082/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters082/impl/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters082/impl/RootElementConverter.java
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding directory OSGI-INF/l10n/
+[DEBUG] adding entry OSGI-INF/l10n/bundle-src.properties
+[INFO] 
+[INFO] --- target-platform-configuration:2.3.0:target-platform (default-target-platform) @ org.eclipse.app4mc.amalthea.converters.082 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform from plugin realm ClassRealm[plugin>org.eclipse.tycho:target-platform-configuration:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin) @ org.eclipse.app4mc.amalthea.converters.082 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin' with basic configurator -->
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.082-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) strictBinIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\org.eclipse.app4mc.amalthea.converters.082-1.1.0-SNAPSHOT.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters082/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters082/impl/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters082/impl/RootElementConverter.class
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters082.impl.RootElementConverter.xml
+[DEBUG] adding directory META-INF/maven/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.082/
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.082/pom.xml
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.082/pom.properties
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default) @ org.eclipse.app4mc.amalthea.converters.082 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default' with basic configurator -->
+[DEBUG]   (f) attachP2Metadata = true
+[DEBUG]   (f) baselineMode = warn
+[DEBUG]   (f) baselineReplace = none
+[DEBUG]   (f) url = https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/
+[DEBUG]   (f) baselineRepositories = [org.eclipse.tycho.plugins.p2.Repository@47ae4629]
+[DEBUG]   (f) defaultP2Metadata = true
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default {execution: default-p2-metadata-default}
+[DEBUG]   (f) generateDownloadStatsProperty = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] No baseline version MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF
+[INFO] 
+[INFO] --< org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083 >--
+[INFO] Building [bundle] APP4MC Amalthea Converters to 0.8.3 1.1.0-SNAPSHOT [9/47]
+[INFO] ---------------------------[ eclipse-plugin ]---------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): [compile]
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <baseDir>${project.basedir}</baseDir>
+  <execution>${mojoExecution}</execution>
+  <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
+  <format default-value="yyyyMMddHHmm"/>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id (default-validate-id)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version (default-validate-version)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <strictVersions default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources (default-resources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources default-value="${project.resources}"/>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile (default-compile)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <basedir>${basedir}</basedir>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <compilerId default-value="jdt">${maven.compiler.compilerId}</compilerId>
+  <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
+  <copyResources default-value="true"/>
+  <debug default-value="true">${maven.compiler.debug}</debug>
+  <deriveReleaseCompilerArgumentFromTargetLevel default-value="true"/>
+  <encoding>${project.build.sourceEncoding}</encoding>
+  <executable>${maven.compiler.executable}</executable>
+  <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
+  <fork default-value="false"/>
+  <generatedSourcesDirectory default-value="${project.build.directory}/generated-sources/annotations"/>
+  <logDirectory default-value="${project.build.directory}/compile-logs"/>
+  <mavenCompilerEncoding>${maven.compiler.encoding}</mavenCompilerEncoding>
+  <maxmem>${maven.compiler.maxmem}</maxmem>
+  <meminitial>${maven.compiler.meminitial}</meminitial>
+  <optimize default-value="false">${maven.compiler.optimize}</optimize>
+  <outputFileName>${project.build.finalName}</outputFileName>
+  <project>${project}</project>
+  <release>${maven.compiler.release}</release>
+  <requireJREPackageImports default-value="false"/>
+  <session>${session}</session>
+  <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
+  <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
+  <source>${maven.compiler.source}</source>
+  <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
+  <strictCompilerTarget default-value="false"/>
+  <target>${maven.compiler.target}</target>
+  <useJDK default-value="SYSTEM"/>
+  <useProjectSettings default-value="true"/>
+  <verbose default-value="false">${maven.compiler.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources (default-testResources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources>${project.testResources}</resources>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform (default-target-platform)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <finalName>${project.build.finalName}</finalName>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <strictBinIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attachP2Metadata default-value="true"/>
+  <baselineMode default-value="warn">${tycho.baseline}</baselineMode>
+  <baselineReplace default-value="all">none</baselineReplace>
+  <baselineRepositories>
+    <repository>
+      <url>https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/</url>
+    </repository>
+  </baselineRepositories>
+  <defaultP2Metadata default-value="true"/>
+  <execution>${mojoExecution}</execution>
+  <generateDownloadStatsProperty default-value="false">${tycho.generateDownloadStatsProperty}</generateDownloadStatsProperty>
+  <project>${project}</project>
+</configuration>
+[DEBUG] =======================================================================
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=13900, ConflictMarker.markTime=12900, ConflictMarker.nodeCount=20, ConflictIdSorter.graphTime=6300, ConflictIdSorter.topsortTime=8399, ConflictIdSorter.conflictIdCount=10, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=55600, ConflictResolver.conflictItemCount=19, DefaultDependencyCollector.collectTime=215200, DefaultDependencyCollector.transformTime=111499}
+[DEBUG] org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:eclipse-plugin:1.1.0-SNAPSHOT
+[DEBUG]    p2.eclipse-plugin:javax.annotation:jar:1.2.0.v201602091430:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi:jar:3.15.100.v20191114-1701:system
+[DEBUG]    p2.eclipse-plugin:org.apache.felix.scr:jar:2.1.14.v20190123-1619:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.services:jar:3.8.0.v20190206-2147:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.util:jar:3.5.300.v20190708-1141:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.eclipse.app4mc.util.sessionlog:jar:1.1.0.202104211257:system
+[DEBUG]    p2.eclipse-plugin:org.jdom2:jar:2.0.6.v20191125-0928:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.common:jar:3.10.600.v20191004-1420:system
+[DEBUG]    p2.eclipse-plugin:org.jaxen:jar:1.1.6.v20191106-1554:system
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ org.eclipse.app4mc.amalthea.converters.083 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\test-classes
+[DEBUG] -- end configuration --
+[INFO] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\sourcebundle-l10n-gen\OSGI-INF\l10n\bundle-src.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\sourcebundle-l10n-gen\OSGI-INF\l10n
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\sourcebundle-l10n-gen\OSGI-INF
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\sourcebundle-l10n-gen
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\p2content.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\p2artifacts.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\org.eclipse.app4mc.amalthea.converters.083-1.1.0-SNAPSHOT.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\org.eclipse.app4mc.amalthea.converters.083-1.1.0-SNAPSHOT-sources.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\maven-archiver\pom.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\maven-archiver
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\MANIFEST.MF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\local-artifacts.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\generated-sources\annotations
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\generated-sources
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\classes\org\eclipse\app4mc\amalthea\converters083\utils\PeriodicStimulusCacheBuilder.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\classes\org\eclipse\app4mc\amalthea\converters083\utils
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\classes\org\eclipse\app4mc\amalthea\converters083\impl\SwConverter.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\classes\org\eclipse\app4mc\amalthea\converters083\impl\StimuliConverter.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\classes\org\eclipse\app4mc\amalthea\converters083\impl\RootElementConverter.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\classes\org\eclipse\app4mc\amalthea\converters083\impl\ComponentModelConverter.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\classes\org\eclipse\app4mc\amalthea\converters083\impl
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\classes\org\eclipse\app4mc\amalthea\converters083
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\classes\org\eclipse\app4mc\amalthea
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\classes\org\eclipse\app4mc
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\classes\org\eclipse
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\classes\org
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\classes
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\site
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier) @ org.eclipse.app4mc.amalthea.converters.083 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier' with basic configurator -->
+[DEBUG]   (f) baseDir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier {execution: default-build-qualifier}
+[DEBUG]   (s) format = yyyyMMddHHmm
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] The project's OSGi version is 1.1.0.202104220626
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-id (default-validate-id) @ org.eclipse.app4mc.amalthea.converters.083 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-version (default-validate-version) @ org.eclipse.app4mc.amalthea.converters.083 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF
+[DEBUG]   (f) strictVersions = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ org.eclipse.app4mc.amalthea.converters.083 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.083.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\src\main\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\src\main\resources
+[INFO] 
+[INFO] --- tycho-compiler-plugin:2.3.0:compile (default-compile) @ org.eclipse.app4mc.amalthea.converters.083 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-compiler-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile' with basic configurator -->
+[DEBUG]   (f) basedir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target
+[DEBUG]   (f) compilerId = jdt
+[DEBUG]   (f) copyResources = true
+[DEBUG]   (f) debug = true
+[DEBUG]   (f) deriveReleaseCompilerArgumentFromTargetLevel = true
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) failOnWarning = false
+[DEBUG]   (f) fork = false
+[DEBUG]   (f) generatedSourcesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\generated-sources\annotations
+[DEBUG]   (f) logDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\compile-logs
+[DEBUG]   (f) optimize = false
+[DEBUG]   (f) outputFileName = org.eclipse.app4mc.amalthea.converters.083-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF
+[DEBUG]   (f) requireJREPackageImports = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showDeprecation = false
+[DEBUG]   (f) showWarnings = false
+[DEBUG]   (f) staleMillis = 0
+[DEBUG]   (f) strictCompilerTarget = false
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useProjectSettings = true
+[DEBUG]   (f) verbose = false
+[DEBUG] -- end configuration --
+[DEBUG] Manifest BREEs: [OSGi profile 'JavaSE-1.8' { source level: 1.8, target level: 1.8}]
+[DEBUG] Target Platform EE: OSGi profile 'JavaSE-11' { source level: 11, target level: 11}
+[DEBUG] Effective source/target: 1.8/1.8
+[DEBUG] Using compiler 'jdt'.
+[DEBUG] Source directories: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\src]
+[DEBUG] Classpath: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\classes]
+[DEBUG] Output directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\classes
+[DEBUG] Classpath:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\classes
+[DEBUG] Source roots:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\src
+[INFO] Compiling 5 source files to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\classes
+[DEBUG] JDT compiler args: [-properties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.settings\org.eclipse.jdt.core.prefs, -s, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\generated-sources\annotations, -d, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\classes, -classpath, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\classes, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\src\org\eclipse\app4mc\amalthea\converters083\utils\PeriodicStimulusCacheBuilder.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\src\org\eclipse\app4mc\amalthea\converters083\impl\ComponentModelConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\src\org\eclipse\app4mc\amalthea\converters083\impl\SwConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\src\org\eclipse\app4mc\amalthea\converters083\impl\RootElementConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\src\org\eclipse\app4mc\amalthea\converters083\impl\StimuliConverter.java, -g, -nowarn, -target, 1.8, -source, 1.8, --release, 8, -encoding, UTF-8]
+[DEBUG] Original compiler output: 
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ org.eclipse.app4mc.amalthea.converters.083 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\test-classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\src\test\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.083.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\src\test\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\src\test\resources
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ org.eclipse.app4mc.amalthea.converters.083 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.083-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\org.eclipse.app4mc.amalthea.converters.083-1.1.0-SNAPSHOT-sources.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters083/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters083/impl/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters083/utils/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters083/impl/ComponentModelConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters083/impl/RootElementConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters083/impl/StimuliConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters083/impl/SwConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters083/utils/PeriodicStimulusCacheBuilder.java
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding directory OSGI-INF/l10n/
+[DEBUG] adding entry OSGI-INF/l10n/bundle-src.properties
+[INFO] 
+[INFO] --- target-platform-configuration:2.3.0:target-platform (default-target-platform) @ org.eclipse.app4mc.amalthea.converters.083 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform from plugin realm ClassRealm[plugin>org.eclipse.tycho:target-platform-configuration:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin) @ org.eclipse.app4mc.amalthea.converters.083 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin' with basic configurator -->
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.083-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) strictBinIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\org.eclipse.app4mc.amalthea.converters.083-1.1.0-SNAPSHOT.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters083/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters083/impl/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters083/utils/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters083/impl/ComponentModelConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters083/impl/RootElementConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters083/impl/StimuliConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters083/impl/SwConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters083/utils/PeriodicStimulusCacheBuilder.class
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters083.impl.ComponentModelConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters083.impl.RootElementConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters083.impl.StimuliConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters083.impl.SwConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters083.utils.PeriodicStimulusCacheBuilder.xml
+[DEBUG] adding directory META-INF/maven/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.083/
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.083/pom.xml
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.083/pom.properties
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default) @ org.eclipse.app4mc.amalthea.converters.083 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default' with basic configurator -->
+[DEBUG]   (f) attachP2Metadata = true
+[DEBUG]   (f) baselineMode = warn
+[DEBUG]   (f) baselineReplace = none
+[DEBUG]   (f) url = https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/
+[DEBUG]   (f) baselineRepositories = [org.eclipse.tycho.plugins.p2.Repository@64b6ba7a]
+[DEBUG]   (f) defaultP2Metadata = true
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default {execution: default-p2-metadata-default}
+[DEBUG]   (f) generateDownloadStatsProperty = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] No baseline version MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF
+[INFO] 
+[INFO] --< org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090 >--
+[INFO] Building [bundle] APP4MC Amalthea Converters to 0.9.0 1.1.0-SNAPSHOT [10/47]
+[INFO] ---------------------------[ eclipse-plugin ]---------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): [compile]
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <baseDir>${project.basedir}</baseDir>
+  <execution>${mojoExecution}</execution>
+  <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
+  <format default-value="yyyyMMddHHmm"/>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id (default-validate-id)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version (default-validate-version)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <strictVersions default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources (default-resources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources default-value="${project.resources}"/>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile (default-compile)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <basedir>${basedir}</basedir>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <compilerId default-value="jdt">${maven.compiler.compilerId}</compilerId>
+  <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
+  <copyResources default-value="true"/>
+  <debug default-value="true">${maven.compiler.debug}</debug>
+  <deriveReleaseCompilerArgumentFromTargetLevel default-value="true"/>
+  <encoding>${project.build.sourceEncoding}</encoding>
+  <executable>${maven.compiler.executable}</executable>
+  <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
+  <fork default-value="false"/>
+  <generatedSourcesDirectory default-value="${project.build.directory}/generated-sources/annotations"/>
+  <logDirectory default-value="${project.build.directory}/compile-logs"/>
+  <mavenCompilerEncoding>${maven.compiler.encoding}</mavenCompilerEncoding>
+  <maxmem>${maven.compiler.maxmem}</maxmem>
+  <meminitial>${maven.compiler.meminitial}</meminitial>
+  <optimize default-value="false">${maven.compiler.optimize}</optimize>
+  <outputFileName>${project.build.finalName}</outputFileName>
+  <project>${project}</project>
+  <release>${maven.compiler.release}</release>
+  <requireJREPackageImports default-value="false"/>
+  <session>${session}</session>
+  <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
+  <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
+  <source>${maven.compiler.source}</source>
+  <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
+  <strictCompilerTarget default-value="false"/>
+  <target>${maven.compiler.target}</target>
+  <useJDK default-value="SYSTEM"/>
+  <useProjectSettings default-value="true"/>
+  <verbose default-value="false">${maven.compiler.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources (default-testResources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources>${project.testResources}</resources>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform (default-target-platform)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <finalName>${project.build.finalName}</finalName>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <strictBinIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attachP2Metadata default-value="true"/>
+  <baselineMode default-value="warn">${tycho.baseline}</baselineMode>
+  <baselineReplace default-value="all">none</baselineReplace>
+  <baselineRepositories>
+    <repository>
+      <url>https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/</url>
+    </repository>
+  </baselineRepositories>
+  <defaultP2Metadata default-value="true"/>
+  <execution>${mojoExecution}</execution>
+  <generateDownloadStatsProperty default-value="false">${tycho.generateDownloadStatsProperty}</generateDownloadStatsProperty>
+  <project>${project}</project>
+</configuration>
+[DEBUG] =======================================================================
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=14000, ConflictMarker.markTime=11100, ConflictMarker.nodeCount=20, ConflictIdSorter.graphTime=6101, ConflictIdSorter.topsortTime=7700, ConflictIdSorter.conflictIdCount=10, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=44599, ConflictResolver.conflictItemCount=19, DefaultDependencyCollector.collectTime=198601, DefaultDependencyCollector.transformTime=96700}
+[DEBUG] org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:eclipse-plugin:1.1.0-SNAPSHOT
+[DEBUG]    p2.eclipse-plugin:javax.annotation:jar:1.2.0.v201602091430:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi:jar:3.15.100.v20191114-1701:system
+[DEBUG]    p2.eclipse-plugin:org.apache.felix.scr:jar:2.1.14.v20190123-1619:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.services:jar:3.8.0.v20190206-2147:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.util:jar:3.5.300.v20190708-1141:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.eclipse.app4mc.util.sessionlog:jar:1.1.0.202104211257:system
+[DEBUG]    p2.eclipse-plugin:org.jdom2:jar:2.0.6.v20191125-0928:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.common:jar:3.10.600.v20191004-1420:system
+[DEBUG]    p2.eclipse-plugin:org.jaxen:jar:1.1.6.v20191106-1554:system
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ org.eclipse.app4mc.amalthea.converters.090 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\test-classes
+[DEBUG] -- end configuration --
+[INFO] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\sourcebundle-l10n-gen\OSGI-INF\l10n\bundle-src.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\sourcebundle-l10n-gen\OSGI-INF\l10n
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\sourcebundle-l10n-gen\OSGI-INF
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\sourcebundle-l10n-gen
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\p2content.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\p2artifacts.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\org.eclipse.app4mc.amalthea.converters.090-1.1.0-SNAPSHOT.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\org.eclipse.app4mc.amalthea.converters.090-1.1.0-SNAPSHOT-sources.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\maven-archiver\pom.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\maven-archiver
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\MANIFEST.MF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\local-artifacts.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\generated-sources\annotations
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\generated-sources
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\classes\org\eclipse\app4mc\amalthea\converters090\utils\UpdateCustomPropsPostProcessor.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\classes\org\eclipse\app4mc\amalthea\converters090\utils\HWTransformationCache.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\classes\org\eclipse\app4mc\amalthea\converters090\utils\HWCacheBuilder.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\classes\org\eclipse\app4mc\amalthea\converters090\utils
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\classes\org\eclipse\app4mc\amalthea\converters090\impl\RootElementConverter.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\classes\org\eclipse\app4mc\amalthea\converters090\impl\HwReferencesConverter.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\classes\org\eclipse\app4mc\amalthea\converters090\impl\HwConverter.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\classes\org\eclipse\app4mc\amalthea\converters090\impl
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\classes\org\eclipse\app4mc\amalthea\converters090
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\classes\org\eclipse\app4mc\amalthea
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\classes\org\eclipse\app4mc
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\classes\org\eclipse
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\classes\org
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\classes
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\site
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier) @ org.eclipse.app4mc.amalthea.converters.090 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier' with basic configurator -->
+[DEBUG]   (f) baseDir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier {execution: default-build-qualifier}
+[DEBUG]   (s) format = yyyyMMddHHmm
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] The project's OSGi version is 1.1.0.202104220626
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-id (default-validate-id) @ org.eclipse.app4mc.amalthea.converters.090 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-version (default-validate-version) @ org.eclipse.app4mc.amalthea.converters.090 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF
+[DEBUG]   (f) strictVersions = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ org.eclipse.app4mc.amalthea.converters.090 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.090.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\src\main\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\src\main\resources
+[INFO] 
+[INFO] --- tycho-compiler-plugin:2.3.0:compile (default-compile) @ org.eclipse.app4mc.amalthea.converters.090 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-compiler-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile' with basic configurator -->
+[DEBUG]   (f) basedir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target
+[DEBUG]   (f) compilerId = jdt
+[DEBUG]   (f) copyResources = true
+[DEBUG]   (f) debug = true
+[DEBUG]   (f) deriveReleaseCompilerArgumentFromTargetLevel = true
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) failOnWarning = false
+[DEBUG]   (f) fork = false
+[DEBUG]   (f) generatedSourcesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\generated-sources\annotations
+[DEBUG]   (f) logDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\compile-logs
+[DEBUG]   (f) optimize = false
+[DEBUG]   (f) outputFileName = org.eclipse.app4mc.amalthea.converters.090-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF
+[DEBUG]   (f) requireJREPackageImports = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showDeprecation = false
+[DEBUG]   (f) showWarnings = false
+[DEBUG]   (f) staleMillis = 0
+[DEBUG]   (f) strictCompilerTarget = false
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useProjectSettings = true
+[DEBUG]   (f) verbose = false
+[DEBUG] -- end configuration --
+[DEBUG] Manifest BREEs: [OSGi profile 'JavaSE-1.8' { source level: 1.8, target level: 1.8}]
+[DEBUG] Target Platform EE: OSGi profile 'JavaSE-11' { source level: 11, target level: 11}
+[DEBUG] Effective source/target: 1.8/1.8
+[DEBUG] Using compiler 'jdt'.
+[DEBUG] Source directories: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\src]
+[DEBUG] Classpath: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\classes]
+[DEBUG] Output directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\classes
+[DEBUG] Classpath:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\classes
+[DEBUG] Source roots:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\src
+[INFO] Compiling 6 source files to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\classes
+[DEBUG] JDT compiler args: [-properties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.settings\org.eclipse.jdt.core.prefs, -s, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\generated-sources\annotations, -d, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\classes, -classpath, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\classes, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\src\org\eclipse\app4mc\amalthea\converters090\utils\HWCacheBuilder.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\src\org\eclipse\app4mc\amalthea\converters090\impl\HwConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\src\org\eclipse\app4mc\amalthea\converters090\impl\RootElementConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\src\org\eclipse\app4mc\amalthea\converters090\utils\HWTransformationCache.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\src\org\eclipse\app4mc\amalthea\converters090\impl\HwReferencesConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\src\org\eclipse\app4mc\amalthea\converters090\utils\UpdateCustomPropsPostProcessor.java, -g, -nowarn, -target, 1.8, -source, 1.8, --release, 8, -encoding, UTF-8]
+[DEBUG] Original compiler output: 
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ org.eclipse.app4mc.amalthea.converters.090 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\test-classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\src\test\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.090.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\src\test\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\src\test\resources
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ org.eclipse.app4mc.amalthea.converters.090 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.090-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\org.eclipse.app4mc.amalthea.converters.090-1.1.0-SNAPSHOT-sources.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters090/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters090/impl/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters090/utils/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters090/impl/HwConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters090/impl/HwReferencesConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters090/impl/RootElementConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters090/utils/HWCacheBuilder.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters090/utils/HWTransformationCache.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters090/utils/UpdateCustomPropsPostProcessor.java
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding directory OSGI-INF/l10n/
+[DEBUG] adding entry OSGI-INF/l10n/bundle-src.properties
+[INFO] 
+[INFO] --- target-platform-configuration:2.3.0:target-platform (default-target-platform) @ org.eclipse.app4mc.amalthea.converters.090 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform from plugin realm ClassRealm[plugin>org.eclipse.tycho:target-platform-configuration:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin) @ org.eclipse.app4mc.amalthea.converters.090 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin' with basic configurator -->
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.090-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) strictBinIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\org.eclipse.app4mc.amalthea.converters.090-1.1.0-SNAPSHOT.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters090/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters090/impl/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters090/utils/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters090/impl/HwConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters090/impl/HwReferencesConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters090/impl/RootElementConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters090/utils/HWCacheBuilder.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters090/utils/HWTransformationCache.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters090/utils/UpdateCustomPropsPostProcessor.class
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters090.impl.HwConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters090.impl.HwReferencesConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters090.impl.RootElementConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters090.utils.HWCacheBuilder.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters090.utils.UpdateCustomPropsPostProcessor.xml
+[DEBUG] adding directory META-INF/maven/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.090/
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.090/pom.xml
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.090/pom.properties
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default) @ org.eclipse.app4mc.amalthea.converters.090 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default' with basic configurator -->
+[DEBUG]   (f) attachP2Metadata = true
+[DEBUG]   (f) baselineMode = warn
+[DEBUG]   (f) baselineReplace = none
+[DEBUG]   (f) url = https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/
+[DEBUG]   (f) baselineRepositories = [org.eclipse.tycho.plugins.p2.Repository@643c5b25]
+[DEBUG]   (f) defaultP2Metadata = true
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default {execution: default-p2-metadata-default}
+[DEBUG]   (f) generateDownloadStatsProperty = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] No baseline version MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF
+[INFO] 
+[INFO] --< org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091 >--
+[INFO] Building [bundle] APP4MC Amalthea Converters to 0.9.1 1.1.0-SNAPSHOT [11/47]
+[INFO] ---------------------------[ eclipse-plugin ]---------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): [compile]
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <baseDir>${project.basedir}</baseDir>
+  <execution>${mojoExecution}</execution>
+  <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
+  <format default-value="yyyyMMddHHmm"/>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id (default-validate-id)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version (default-validate-version)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <strictVersions default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources (default-resources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources default-value="${project.resources}"/>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile (default-compile)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <basedir>${basedir}</basedir>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <compilerId default-value="jdt">${maven.compiler.compilerId}</compilerId>
+  <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
+  <copyResources default-value="true"/>
+  <debug default-value="true">${maven.compiler.debug}</debug>
+  <deriveReleaseCompilerArgumentFromTargetLevel default-value="true"/>
+  <encoding>${project.build.sourceEncoding}</encoding>
+  <executable>${maven.compiler.executable}</executable>
+  <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
+  <fork default-value="false"/>
+  <generatedSourcesDirectory default-value="${project.build.directory}/generated-sources/annotations"/>
+  <logDirectory default-value="${project.build.directory}/compile-logs"/>
+  <mavenCompilerEncoding>${maven.compiler.encoding}</mavenCompilerEncoding>
+  <maxmem>${maven.compiler.maxmem}</maxmem>
+  <meminitial>${maven.compiler.meminitial}</meminitial>
+  <optimize default-value="false">${maven.compiler.optimize}</optimize>
+  <outputFileName>${project.build.finalName}</outputFileName>
+  <project>${project}</project>
+  <release>${maven.compiler.release}</release>
+  <requireJREPackageImports default-value="false"/>
+  <session>${session}</session>
+  <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
+  <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
+  <source>${maven.compiler.source}</source>
+  <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
+  <strictCompilerTarget default-value="false"/>
+  <target>${maven.compiler.target}</target>
+  <useJDK default-value="SYSTEM"/>
+  <useProjectSettings default-value="true"/>
+  <verbose default-value="false">${maven.compiler.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources (default-testResources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources>${project.testResources}</resources>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform (default-target-platform)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <finalName>${project.build.finalName}</finalName>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <strictBinIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attachP2Metadata default-value="true"/>
+  <baselineMode default-value="warn">${tycho.baseline}</baselineMode>
+  <baselineReplace default-value="all">none</baselineReplace>
+  <baselineRepositories>
+    <repository>
+      <url>https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/</url>
+    </repository>
+  </baselineRepositories>
+  <defaultP2Metadata default-value="true"/>
+  <execution>${mojoExecution}</execution>
+  <generateDownloadStatsProperty default-value="false">${tycho.generateDownloadStatsProperty}</generateDownloadStatsProperty>
+  <project>${project}</project>
+</configuration>
+[DEBUG] =======================================================================
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=13600, ConflictMarker.markTime=12200, ConflictMarker.nodeCount=20, ConflictIdSorter.graphTime=6001, ConflictIdSorter.topsortTime=7900, ConflictIdSorter.conflictIdCount=10, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=48001, ConflictResolver.conflictItemCount=19, DefaultDependencyCollector.collectTime=201100, DefaultDependencyCollector.transformTime=102000}
+[DEBUG] org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:eclipse-plugin:1.1.0-SNAPSHOT
+[DEBUG]    p2.eclipse-plugin:javax.annotation:jar:1.2.0.v201602091430:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi:jar:3.15.100.v20191114-1701:system
+[DEBUG]    p2.eclipse-plugin:org.apache.felix.scr:jar:2.1.14.v20190123-1619:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.services:jar:3.8.0.v20190206-2147:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.util:jar:3.5.300.v20190708-1141:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.eclipse.app4mc.util.sessionlog:jar:1.1.0.202104211257:system
+[DEBUG]    p2.eclipse-plugin:org.jdom2:jar:2.0.6.v20191125-0928:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.common:jar:3.10.600.v20191004-1420:system
+[DEBUG]    p2.eclipse-plugin:org.jaxen:jar:1.1.6.v20191106-1554:system
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ org.eclipse.app4mc.amalthea.converters.091 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\test-classes
+[DEBUG] -- end configuration --
+[INFO] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\sourcebundle-l10n-gen\OSGI-INF\l10n\bundle-src.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\sourcebundle-l10n-gen\OSGI-INF\l10n
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\sourcebundle-l10n-gen\OSGI-INF
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\sourcebundle-l10n-gen
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\p2content.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\p2artifacts.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\org.eclipse.app4mc.amalthea.converters.091-1.1.0-SNAPSHOT.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\org.eclipse.app4mc.amalthea.converters.091-1.1.0-SNAPSHOT-sources.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\maven-archiver\pom.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\maven-archiver
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\MANIFEST.MF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\local-artifacts.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\generated-sources\annotations
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\generated-sources
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\classes\org\eclipse\app4mc\amalthea\converters091\impl\RootElementConverter.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\classes\org\eclipse\app4mc\amalthea\converters091\impl\CustomPropertiesConverter.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\classes\org\eclipse\app4mc\amalthea\converters091\impl
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\classes\org\eclipse\app4mc\amalthea\converters091
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\classes\org\eclipse\app4mc\amalthea
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\classes\org\eclipse\app4mc
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\classes\org\eclipse
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\classes\org
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\classes
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\site
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier) @ org.eclipse.app4mc.amalthea.converters.091 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier' with basic configurator -->
+[DEBUG]   (f) baseDir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier {execution: default-build-qualifier}
+[DEBUG]   (s) format = yyyyMMddHHmm
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] The project's OSGi version is 1.1.0.202104220626
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-id (default-validate-id) @ org.eclipse.app4mc.amalthea.converters.091 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-version (default-validate-version) @ org.eclipse.app4mc.amalthea.converters.091 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF
+[DEBUG]   (f) strictVersions = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ org.eclipse.app4mc.amalthea.converters.091 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.091.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\src\main\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\src\main\resources
+[INFO] 
+[INFO] --- tycho-compiler-plugin:2.3.0:compile (default-compile) @ org.eclipse.app4mc.amalthea.converters.091 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-compiler-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile' with basic configurator -->
+[DEBUG]   (f) basedir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target
+[DEBUG]   (f) compilerId = jdt
+[DEBUG]   (f) copyResources = true
+[DEBUG]   (f) debug = true
+[DEBUG]   (f) deriveReleaseCompilerArgumentFromTargetLevel = true
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) failOnWarning = false
+[DEBUG]   (f) fork = false
+[DEBUG]   (f) generatedSourcesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\generated-sources\annotations
+[DEBUG]   (f) logDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\compile-logs
+[DEBUG]   (f) optimize = false
+[DEBUG]   (f) outputFileName = org.eclipse.app4mc.amalthea.converters.091-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF
+[DEBUG]   (f) requireJREPackageImports = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showDeprecation = false
+[DEBUG]   (f) showWarnings = false
+[DEBUG]   (f) staleMillis = 0
+[DEBUG]   (f) strictCompilerTarget = false
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useProjectSettings = true
+[DEBUG]   (f) verbose = false
+[DEBUG] -- end configuration --
+[DEBUG] Manifest BREEs: [OSGi profile 'JavaSE-1.8' { source level: 1.8, target level: 1.8}]
+[DEBUG] Target Platform EE: OSGi profile 'JavaSE-11' { source level: 11, target level: 11}
+[DEBUG] Effective source/target: 1.8/1.8
+[DEBUG] Using compiler 'jdt'.
+[DEBUG] Source directories: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\src]
+[DEBUG] Classpath: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\classes]
+[DEBUG] Output directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\classes
+[DEBUG] Classpath:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\classes
+[DEBUG] Source roots:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\src
+[INFO] Compiling 2 source files to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\classes
+[DEBUG] JDT compiler args: [-properties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.settings\org.eclipse.jdt.core.prefs, -s, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\generated-sources\annotations, -d, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\classes, -classpath, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\classes, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\src\org\eclipse\app4mc\amalthea\converters091\impl\CustomPropertiesConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\src\org\eclipse\app4mc\amalthea\converters091\impl\RootElementConverter.java, -g, -nowarn, -target, 1.8, -source, 1.8, --release, 8, -encoding, UTF-8]
+[DEBUG] Original compiler output: 
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ org.eclipse.app4mc.amalthea.converters.091 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\test-classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\src\test\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.091.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\src\test\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\src\test\resources
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ org.eclipse.app4mc.amalthea.converters.091 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.091-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\org.eclipse.app4mc.amalthea.converters.091-1.1.0-SNAPSHOT-sources.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters091/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters091/impl/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters091/impl/CustomPropertiesConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters091/impl/RootElementConverter.java
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding directory OSGI-INF/l10n/
+[DEBUG] adding entry OSGI-INF/l10n/bundle-src.properties
+[INFO] 
+[INFO] --- target-platform-configuration:2.3.0:target-platform (default-target-platform) @ org.eclipse.app4mc.amalthea.converters.091 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform from plugin realm ClassRealm[plugin>org.eclipse.tycho:target-platform-configuration:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin) @ org.eclipse.app4mc.amalthea.converters.091 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin' with basic configurator -->
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.091-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) strictBinIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\org.eclipse.app4mc.amalthea.converters.091-1.1.0-SNAPSHOT.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters091/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters091/impl/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters091/impl/CustomPropertiesConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters091/impl/RootElementConverter.class
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters091.impl.CustomPropertiesConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters091.impl.RootElementConverter.xml
+[DEBUG] adding directory META-INF/maven/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.091/
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.091/pom.xml
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.091/pom.properties
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default) @ org.eclipse.app4mc.amalthea.converters.091 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default' with basic configurator -->
+[DEBUG]   (f) attachP2Metadata = true
+[DEBUG]   (f) baselineMode = warn
+[DEBUG]   (f) baselineReplace = none
+[DEBUG]   (f) url = https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/
+[DEBUG]   (f) baselineRepositories = [org.eclipse.tycho.plugins.p2.Repository@44f9e70f]
+[DEBUG]   (f) defaultP2Metadata = true
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default {execution: default-p2-metadata-default}
+[DEBUG]   (f) generateDownloadStatsProperty = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] No baseline version MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF
+[INFO] 
+[INFO] --< org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092 >--
+[INFO] Building [bundle] APP4MC Amalthea Converters to 0.9.2 1.1.0-SNAPSHOT [12/47]
+[INFO] ---------------------------[ eclipse-plugin ]---------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): [compile]
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <baseDir>${project.basedir}</baseDir>
+  <execution>${mojoExecution}</execution>
+  <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
+  <format default-value="yyyyMMddHHmm"/>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id (default-validate-id)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version (default-validate-version)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <strictVersions default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources (default-resources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources default-value="${project.resources}"/>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile (default-compile)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <basedir>${basedir}</basedir>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <compilerId default-value="jdt">${maven.compiler.compilerId}</compilerId>
+  <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
+  <copyResources default-value="true"/>
+  <debug default-value="true">${maven.compiler.debug}</debug>
+  <deriveReleaseCompilerArgumentFromTargetLevel default-value="true"/>
+  <encoding>${project.build.sourceEncoding}</encoding>
+  <executable>${maven.compiler.executable}</executable>
+  <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
+  <fork default-value="false"/>
+  <generatedSourcesDirectory default-value="${project.build.directory}/generated-sources/annotations"/>
+  <logDirectory default-value="${project.build.directory}/compile-logs"/>
+  <mavenCompilerEncoding>${maven.compiler.encoding}</mavenCompilerEncoding>
+  <maxmem>${maven.compiler.maxmem}</maxmem>
+  <meminitial>${maven.compiler.meminitial}</meminitial>
+  <optimize default-value="false">${maven.compiler.optimize}</optimize>
+  <outputFileName>${project.build.finalName}</outputFileName>
+  <project>${project}</project>
+  <release>${maven.compiler.release}</release>
+  <requireJREPackageImports default-value="false"/>
+  <session>${session}</session>
+  <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
+  <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
+  <source>${maven.compiler.source}</source>
+  <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
+  <strictCompilerTarget default-value="false"/>
+  <target>${maven.compiler.target}</target>
+  <useJDK default-value="SYSTEM"/>
+  <useProjectSettings default-value="true"/>
+  <verbose default-value="false">${maven.compiler.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources (default-testResources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources>${project.testResources}</resources>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform (default-target-platform)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <finalName>${project.build.finalName}</finalName>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <strictBinIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attachP2Metadata default-value="true"/>
+  <baselineMode default-value="warn">${tycho.baseline}</baselineMode>
+  <baselineReplace default-value="all">none</baselineReplace>
+  <baselineRepositories>
+    <repository>
+      <url>https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/</url>
+    </repository>
+  </baselineRepositories>
+  <defaultP2Metadata default-value="true"/>
+  <execution>${mojoExecution}</execution>
+  <generateDownloadStatsProperty default-value="false">${tycho.generateDownloadStatsProperty}</generateDownloadStatsProperty>
+  <project>${project}</project>
+</configuration>
+[DEBUG] =======================================================================
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=14600, ConflictMarker.markTime=10500, ConflictMarker.nodeCount=20, ConflictIdSorter.graphTime=6000, ConflictIdSorter.topsortTime=7299, ConflictIdSorter.conflictIdCount=10, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=43000, ConflictResolver.conflictItemCount=19, DefaultDependencyCollector.collectTime=196400, DefaultDependencyCollector.transformTime=95001}
+[DEBUG] org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:eclipse-plugin:1.1.0-SNAPSHOT
+[DEBUG]    p2.eclipse-plugin:javax.annotation:jar:1.2.0.v201602091430:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi:jar:3.15.100.v20191114-1701:system
+[DEBUG]    p2.eclipse-plugin:org.apache.felix.scr:jar:2.1.14.v20190123-1619:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.services:jar:3.8.0.v20190206-2147:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.util:jar:3.5.300.v20190708-1141:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.eclipse.app4mc.util.sessionlog:jar:1.1.0.202104211257:system
+[DEBUG]    p2.eclipse-plugin:org.jdom2:jar:2.0.6.v20191125-0928:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.common:jar:3.10.600.v20191004-1420:system
+[DEBUG]    p2.eclipse-plugin:org.jaxen:jar:1.1.6.v20191106-1554:system
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ org.eclipse.app4mc.amalthea.converters.092 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\test-classes
+[DEBUG] -- end configuration --
+[INFO] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\sourcebundle-l10n-gen\OSGI-INF\l10n\bundle-src.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\sourcebundle-l10n-gen\OSGI-INF\l10n
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\sourcebundle-l10n-gen\OSGI-INF
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\sourcebundle-l10n-gen
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\p2content.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\p2artifacts.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\org.eclipse.app4mc.amalthea.converters.092-1.1.0-SNAPSHOT.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\org.eclipse.app4mc.amalthea.converters.092-1.1.0-SNAPSHOT-sources.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\maven-archiver\pom.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\maven-archiver
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\MANIFEST.MF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\local-artifacts.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\generated-sources\annotations
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\generated-sources
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\classes\org\eclipse\app4mc\amalthea\converters092\impl\RootElementConverter.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\classes\org\eclipse\app4mc\amalthea\converters092\impl
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\classes\org\eclipse\app4mc\amalthea\converters092
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\classes\org\eclipse\app4mc\amalthea
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\classes\org\eclipse\app4mc
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\classes\org\eclipse
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\classes\org
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\classes
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\site
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier) @ org.eclipse.app4mc.amalthea.converters.092 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier' with basic configurator -->
+[DEBUG]   (f) baseDir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier {execution: default-build-qualifier}
+[DEBUG]   (s) format = yyyyMMddHHmm
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] The project's OSGi version is 1.1.0.202104220626
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-id (default-validate-id) @ org.eclipse.app4mc.amalthea.converters.092 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-version (default-validate-version) @ org.eclipse.app4mc.amalthea.converters.092 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF
+[DEBUG]   (f) strictVersions = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ org.eclipse.app4mc.amalthea.converters.092 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.092.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\src\main\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\src\main\resources
+[INFO] 
+[INFO] --- tycho-compiler-plugin:2.3.0:compile (default-compile) @ org.eclipse.app4mc.amalthea.converters.092 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-compiler-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile' with basic configurator -->
+[DEBUG]   (f) basedir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target
+[DEBUG]   (f) compilerId = jdt
+[DEBUG]   (f) copyResources = true
+[DEBUG]   (f) debug = true
+[DEBUG]   (f) deriveReleaseCompilerArgumentFromTargetLevel = true
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) failOnWarning = false
+[DEBUG]   (f) fork = false
+[DEBUG]   (f) generatedSourcesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\generated-sources\annotations
+[DEBUG]   (f) logDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\compile-logs
+[DEBUG]   (f) optimize = false
+[DEBUG]   (f) outputFileName = org.eclipse.app4mc.amalthea.converters.092-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF
+[DEBUG]   (f) requireJREPackageImports = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showDeprecation = false
+[DEBUG]   (f) showWarnings = false
+[DEBUG]   (f) staleMillis = 0
+[DEBUG]   (f) strictCompilerTarget = false
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useProjectSettings = true
+[DEBUG]   (f) verbose = false
+[DEBUG] -- end configuration --
+[DEBUG] Manifest BREEs: [OSGi profile 'JavaSE-1.8' { source level: 1.8, target level: 1.8}]
+[DEBUG] Target Platform EE: OSGi profile 'JavaSE-11' { source level: 11, target level: 11}
+[DEBUG] Effective source/target: 1.8/1.8
+[DEBUG] Using compiler 'jdt'.
+[DEBUG] Source directories: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\src]
+[DEBUG] Classpath: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\classes]
+[DEBUG] Output directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\classes
+[DEBUG] Classpath:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\classes
+[DEBUG] Source roots:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\src
+[INFO] Compiling 1 source file to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\classes
+[DEBUG] JDT compiler args: [-properties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.settings\org.eclipse.jdt.core.prefs, -s, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\generated-sources\annotations, -d, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\classes, -classpath, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\classes, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\src\org\eclipse\app4mc\amalthea\converters092\impl\RootElementConverter.java, -g, -nowarn, -target, 1.8, -source, 1.8, --release, 8, -encoding, UTF-8]
+[DEBUG] Original compiler output: 
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ org.eclipse.app4mc.amalthea.converters.092 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\test-classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\src\test\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.092.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\src\test\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\src\test\resources
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ org.eclipse.app4mc.amalthea.converters.092 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.092-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\org.eclipse.app4mc.amalthea.converters.092-1.1.0-SNAPSHOT-sources.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters092/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters092/impl/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters092/impl/RootElementConverter.java
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding directory OSGI-INF/l10n/
+[DEBUG] adding entry OSGI-INF/l10n/bundle-src.properties
+[INFO] 
+[INFO] --- target-platform-configuration:2.3.0:target-platform (default-target-platform) @ org.eclipse.app4mc.amalthea.converters.092 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform from plugin realm ClassRealm[plugin>org.eclipse.tycho:target-platform-configuration:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin) @ org.eclipse.app4mc.amalthea.converters.092 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin' with basic configurator -->
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.092-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) strictBinIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\org.eclipse.app4mc.amalthea.converters.092-1.1.0-SNAPSHOT.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters092/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters092/impl/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters092/impl/RootElementConverter.class
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters092.impl.RootElementConverter.xml
+[DEBUG] adding directory META-INF/maven/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.092/
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.092/pom.xml
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.092/pom.properties
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default) @ org.eclipse.app4mc.amalthea.converters.092 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default' with basic configurator -->
+[DEBUG]   (f) attachP2Metadata = true
+[DEBUG]   (f) baselineMode = warn
+[DEBUG]   (f) baselineReplace = none
+[DEBUG]   (f) url = https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/
+[DEBUG]   (f) baselineRepositories = [org.eclipse.tycho.plugins.p2.Repository@64c53561]
+[DEBUG]   (f) defaultP2Metadata = true
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default {execution: default-p2-metadata-default}
+[DEBUG]   (f) generateDownloadStatsProperty = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] No baseline version MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF
+[INFO] 
+[INFO] --< org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093 >--
+[INFO] Building [bundle] APP4MC Amalthea Converters to 0.9.3 1.1.0-SNAPSHOT [13/47]
+[INFO] ---------------------------[ eclipse-plugin ]---------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): [compile]
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <baseDir>${project.basedir}</baseDir>
+  <execution>${mojoExecution}</execution>
+  <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
+  <format default-value="yyyyMMddHHmm"/>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id (default-validate-id)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version (default-validate-version)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <strictVersions default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources (default-resources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources default-value="${project.resources}"/>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile (default-compile)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <basedir>${basedir}</basedir>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <compilerId default-value="jdt">${maven.compiler.compilerId}</compilerId>
+  <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
+  <copyResources default-value="true"/>
+  <debug default-value="true">${maven.compiler.debug}</debug>
+  <deriveReleaseCompilerArgumentFromTargetLevel default-value="true"/>
+  <encoding>${project.build.sourceEncoding}</encoding>
+  <executable>${maven.compiler.executable}</executable>
+  <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
+  <fork default-value="false"/>
+  <generatedSourcesDirectory default-value="${project.build.directory}/generated-sources/annotations"/>
+  <logDirectory default-value="${project.build.directory}/compile-logs"/>
+  <mavenCompilerEncoding>${maven.compiler.encoding}</mavenCompilerEncoding>
+  <maxmem>${maven.compiler.maxmem}</maxmem>
+  <meminitial>${maven.compiler.meminitial}</meminitial>
+  <optimize default-value="false">${maven.compiler.optimize}</optimize>
+  <outputFileName>${project.build.finalName}</outputFileName>
+  <project>${project}</project>
+  <release>${maven.compiler.release}</release>
+  <requireJREPackageImports default-value="false"/>
+  <session>${session}</session>
+  <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
+  <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
+  <source>${maven.compiler.source}</source>
+  <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
+  <strictCompilerTarget default-value="false"/>
+  <target>${maven.compiler.target}</target>
+  <useJDK default-value="SYSTEM"/>
+  <useProjectSettings default-value="true"/>
+  <verbose default-value="false">${maven.compiler.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources (default-testResources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources>${project.testResources}</resources>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform (default-target-platform)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <finalName>${project.build.finalName}</finalName>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <strictBinIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attachP2Metadata default-value="true"/>
+  <baselineMode default-value="warn">${tycho.baseline}</baselineMode>
+  <baselineReplace default-value="all">none</baselineReplace>
+  <baselineRepositories>
+    <repository>
+      <url>https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/</url>
+    </repository>
+  </baselineRepositories>
+  <defaultP2Metadata default-value="true"/>
+  <execution>${mojoExecution}</execution>
+  <generateDownloadStatsProperty default-value="false">${tycho.generateDownloadStatsProperty}</generateDownloadStatsProperty>
+  <project>${project}</project>
+</configuration>
+[DEBUG] =======================================================================
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=13700, ConflictMarker.markTime=10099, ConflictMarker.nodeCount=20, ConflictIdSorter.graphTime=6000, ConflictIdSorter.topsortTime=7100, ConflictIdSorter.conflictIdCount=10, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=44800, ConflictResolver.conflictItemCount=19, DefaultDependencyCollector.collectTime=197300, DefaultDependencyCollector.transformTime=95200}
+[DEBUG] org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:eclipse-plugin:1.1.0-SNAPSHOT
+[DEBUG]    p2.eclipse-plugin:javax.annotation:jar:1.2.0.v201602091430:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi:jar:3.15.100.v20191114-1701:system
+[DEBUG]    p2.eclipse-plugin:org.apache.felix.scr:jar:2.1.14.v20190123-1619:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.services:jar:3.8.0.v20190206-2147:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.util:jar:3.5.300.v20190708-1141:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.eclipse.app4mc.util.sessionlog:jar:1.1.0.202104211257:system
+[DEBUG]    p2.eclipse-plugin:org.jdom2:jar:2.0.6.v20191125-0928:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.common:jar:3.10.600.v20191004-1420:system
+[DEBUG]    p2.eclipse-plugin:org.jaxen:jar:1.1.6.v20191106-1554:system
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ org.eclipse.app4mc.amalthea.converters.093 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\test-classes
+[DEBUG] -- end configuration --
+[INFO] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\sourcebundle-l10n-gen\OSGI-INF\l10n\bundle-src.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\sourcebundle-l10n-gen\OSGI-INF\l10n
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\sourcebundle-l10n-gen\OSGI-INF
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\sourcebundle-l10n-gen
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\p2content.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\p2artifacts.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\org.eclipse.app4mc.amalthea.converters.093-1.1.0-SNAPSHOT.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\org.eclipse.app4mc.amalthea.converters.093-1.1.0-SNAPSHOT-sources.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\maven-archiver\pom.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\maven-archiver
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\MANIFEST.MF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\local-artifacts.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\generated-sources\annotations
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\generated-sources
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\classes\org\eclipse\app4mc\amalthea\converters093\utils\PUDefinition_IPCData.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\classes\org\eclipse\app4mc\amalthea\converters093\utils\HWCacheBuilder.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\classes\org\eclipse\app4mc\amalthea\converters093\utils\HelperUtils_092_093.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\classes\org\eclipse\app4mc\amalthea\converters093\utils
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\classes\org\eclipse\app4mc\amalthea\converters093\impl\SwConverter.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\classes\org\eclipse\app4mc\amalthea\converters093\impl\StimulusConverter.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\classes\org\eclipse\app4mc\amalthea\converters093\impl\RootElementConverter.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\classes\org\eclipse\app4mc\amalthea\converters093\impl\OsConverter.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\classes\org\eclipse\app4mc\amalthea\converters093\impl\MeasurementConverter.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\classes\org\eclipse\app4mc\amalthea\converters093\impl\HwConverter.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\classes\org\eclipse\app4mc\amalthea\converters093\impl
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\classes\org\eclipse\app4mc\amalthea\converters093
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\classes\org\eclipse\app4mc\amalthea
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\classes\org\eclipse\app4mc
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\classes\org\eclipse
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\classes\org
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\classes
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\site
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier) @ org.eclipse.app4mc.amalthea.converters.093 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier' with basic configurator -->
+[DEBUG]   (f) baseDir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier {execution: default-build-qualifier}
+[DEBUG]   (s) format = yyyyMMddHHmm
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] The project's OSGi version is 1.1.0.202104220626
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-id (default-validate-id) @ org.eclipse.app4mc.amalthea.converters.093 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-version (default-validate-version) @ org.eclipse.app4mc.amalthea.converters.093 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF
+[DEBUG]   (f) strictVersions = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ org.eclipse.app4mc.amalthea.converters.093 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.093.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\src\main\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\src\main\resources
+[INFO] 
+[INFO] --- tycho-compiler-plugin:2.3.0:compile (default-compile) @ org.eclipse.app4mc.amalthea.converters.093 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-compiler-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile' with basic configurator -->
+[DEBUG]   (f) basedir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target
+[DEBUG]   (f) compilerId = jdt
+[DEBUG]   (f) copyResources = true
+[DEBUG]   (f) debug = true
+[DEBUG]   (f) deriveReleaseCompilerArgumentFromTargetLevel = true
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) failOnWarning = false
+[DEBUG]   (f) fork = false
+[DEBUG]   (f) generatedSourcesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\generated-sources\annotations
+[DEBUG]   (f) logDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\compile-logs
+[DEBUG]   (f) optimize = false
+[DEBUG]   (f) outputFileName = org.eclipse.app4mc.amalthea.converters.093-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF
+[DEBUG]   (f) requireJREPackageImports = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showDeprecation = false
+[DEBUG]   (f) showWarnings = false
+[DEBUG]   (f) staleMillis = 0
+[DEBUG]   (f) strictCompilerTarget = false
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useProjectSettings = true
+[DEBUG]   (f) verbose = false
+[DEBUG] -- end configuration --
+[DEBUG] Manifest BREEs: [OSGi profile 'JavaSE-1.8' { source level: 1.8, target level: 1.8}]
+[DEBUG] Target Platform EE: OSGi profile 'JavaSE-11' { source level: 11, target level: 11}
+[DEBUG] Effective source/target: 1.8/1.8
+[DEBUG] Using compiler 'jdt'.
+[DEBUG] Source directories: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\src]
+[DEBUG] Classpath: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\classes]
+[DEBUG] Output directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\classes
+[DEBUG] Classpath:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\classes
+[DEBUG] Source roots:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\src
+[INFO] Compiling 9 source files to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\classes
+[DEBUG] JDT compiler args: [-properties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.settings\org.eclipse.jdt.core.prefs, -s, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\generated-sources\annotations, -d, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\classes, -classpath, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\classes, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\src\org\eclipse\app4mc\amalthea\converters093\impl\MeasurementConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\src\org\eclipse\app4mc\amalthea\converters093\impl\StimulusConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\src\org\eclipse\app4mc\amalthea\converters093\impl\HwConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\src\org\eclipse\app4mc\amalthea\converters093\impl\SwConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\src\org\eclipse\app4mc\amalthea\converters093\impl\OsConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\src\org\eclipse\app4mc\amalthea\converters093\utils\HWCacheBuilder.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\src\org\eclipse\app4mc\amalthea\converters093\impl\RootElementConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\src\org\eclipse\app4mc\amalthea\converters093\utils\PUDefinition_IPCData.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\src\org\eclipse\app4mc\amalthea\converters093\utils\HelperUtils_092_093.java, -g, -nowarn, -target, 1.8, -source, 1.8, --release, 8, -encoding, UTF-8]
+[DEBUG] Original compiler output: 
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ org.eclipse.app4mc.amalthea.converters.093 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\test-classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\src\test\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.093.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\src\test\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\src\test\resources
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ org.eclipse.app4mc.amalthea.converters.093 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.093-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\org.eclipse.app4mc.amalthea.converters.093-1.1.0-SNAPSHOT-sources.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters093/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters093/impl/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters093/utils/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters093/impl/HwConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters093/impl/MeasurementConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters093/impl/OsConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters093/impl/RootElementConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters093/impl/StimulusConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters093/impl/SwConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters093/utils/HelperUtils_092_093.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters093/utils/HWCacheBuilder.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters093/utils/PUDefinition_IPCData.java
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding directory OSGI-INF/l10n/
+[DEBUG] adding entry OSGI-INF/l10n/bundle-src.properties
+[INFO] 
+[INFO] --- target-platform-configuration:2.3.0:target-platform (default-target-platform) @ org.eclipse.app4mc.amalthea.converters.093 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform from plugin realm ClassRealm[plugin>org.eclipse.tycho:target-platform-configuration:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin) @ org.eclipse.app4mc.amalthea.converters.093 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin' with basic configurator -->
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.093-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) strictBinIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\org.eclipse.app4mc.amalthea.converters.093-1.1.0-SNAPSHOT.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters093/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters093/impl/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters093/utils/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters093/impl/HwConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters093/impl/MeasurementConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters093/impl/OsConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters093/impl/RootElementConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters093/impl/StimulusConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters093/impl/SwConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters093/utils/HelperUtils_092_093.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters093/utils/HWCacheBuilder.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters093/utils/PUDefinition_IPCData.class
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters093.impl.HwConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters093.impl.MeasurementConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters093.impl.OsConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters093.impl.RootElementConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters093.impl.StimulusConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters093.impl.SwConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters093.utils.HWCacheBuilder.xml
+[DEBUG] adding directory META-INF/maven/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.093/
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.093/pom.xml
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.093/pom.properties
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default) @ org.eclipse.app4mc.amalthea.converters.093 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default' with basic configurator -->
+[DEBUG]   (f) attachP2Metadata = true
+[DEBUG]   (f) baselineMode = warn
+[DEBUG]   (f) baselineReplace = none
+[DEBUG]   (f) url = https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/
+[DEBUG]   (f) baselineRepositories = [org.eclipse.tycho.plugins.p2.Repository@4c6d366c]
+[DEBUG]   (f) defaultP2Metadata = true
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default {execution: default-p2-metadata-default}
+[DEBUG]   (f) generateDownloadStatsProperty = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] No baseline version MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF
+[INFO] 
+[INFO] --< org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094 >--
+[INFO] Building [bundle] APP4MC Amalthea Converters to 0.9.4 1.1.0-SNAPSHOT [14/47]
+[INFO] ---------------------------[ eclipse-plugin ]---------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): [compile]
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <baseDir>${project.basedir}</baseDir>
+  <execution>${mojoExecution}</execution>
+  <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
+  <format default-value="yyyyMMddHHmm"/>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id (default-validate-id)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version (default-validate-version)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <strictVersions default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources (default-resources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources default-value="${project.resources}"/>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile (default-compile)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <basedir>${basedir}</basedir>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <compilerId default-value="jdt">${maven.compiler.compilerId}</compilerId>
+  <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
+  <copyResources default-value="true"/>
+  <debug default-value="true">${maven.compiler.debug}</debug>
+  <deriveReleaseCompilerArgumentFromTargetLevel default-value="true"/>
+  <encoding>${project.build.sourceEncoding}</encoding>
+  <executable>${maven.compiler.executable}</executable>
+  <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
+  <fork default-value="false"/>
+  <generatedSourcesDirectory default-value="${project.build.directory}/generated-sources/annotations"/>
+  <logDirectory default-value="${project.build.directory}/compile-logs"/>
+  <mavenCompilerEncoding>${maven.compiler.encoding}</mavenCompilerEncoding>
+  <maxmem>${maven.compiler.maxmem}</maxmem>
+  <meminitial>${maven.compiler.meminitial}</meminitial>
+  <optimize default-value="false">${maven.compiler.optimize}</optimize>
+  <outputFileName>${project.build.finalName}</outputFileName>
+  <project>${project}</project>
+  <release>${maven.compiler.release}</release>
+  <requireJREPackageImports default-value="false"/>
+  <session>${session}</session>
+  <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
+  <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
+  <source>${maven.compiler.source}</source>
+  <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
+  <strictCompilerTarget default-value="false"/>
+  <target>${maven.compiler.target}</target>
+  <useJDK default-value="SYSTEM"/>
+  <useProjectSettings default-value="true"/>
+  <verbose default-value="false">${maven.compiler.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources (default-testResources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources>${project.testResources}</resources>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform (default-target-platform)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <finalName>${project.build.finalName}</finalName>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <strictBinIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attachP2Metadata default-value="true"/>
+  <baselineMode default-value="warn">${tycho.baseline}</baselineMode>
+  <baselineReplace default-value="all">none</baselineReplace>
+  <baselineRepositories>
+    <repository>
+      <url>https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/</url>
+    </repository>
+  </baselineRepositories>
+  <defaultP2Metadata default-value="true"/>
+  <execution>${mojoExecution}</execution>
+  <generateDownloadStatsProperty default-value="false">${tycho.generateDownloadStatsProperty}</generateDownloadStatsProperty>
+  <project>${project}</project>
+</configuration>
+[DEBUG] =======================================================================
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=21200, ConflictMarker.markTime=18800, ConflictMarker.nodeCount=20, ConflictIdSorter.graphTime=10000, ConflictIdSorter.topsortTime=12700, ConflictIdSorter.conflictIdCount=10, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=87000, ConflictResolver.conflictItemCount=19, DefaultDependencyCollector.collectTime=334400, DefaultDependencyCollector.transformTime=172299}
+[DEBUG] org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:eclipse-plugin:1.1.0-SNAPSHOT
+[DEBUG]    p2.eclipse-plugin:javax.annotation:jar:1.2.0.v201602091430:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi:jar:3.15.100.v20191114-1701:system
+[DEBUG]    p2.eclipse-plugin:org.apache.felix.scr:jar:2.1.14.v20190123-1619:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.services:jar:3.8.0.v20190206-2147:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.util:jar:3.5.300.v20190708-1141:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.eclipse.app4mc.util.sessionlog:jar:1.1.0.202104211257:system
+[DEBUG]    p2.eclipse-plugin:org.jdom2:jar:2.0.6.v20191125-0928:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.common:jar:3.10.600.v20191004-1420:system
+[DEBUG]    p2.eclipse-plugin:org.jaxen:jar:1.1.6.v20191106-1554:system
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ org.eclipse.app4mc.amalthea.converters.094 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\test-classes
+[DEBUG] -- end configuration --
+[INFO] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\sourcebundle-l10n-gen\OSGI-INF\l10n\bundle-src.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\sourcebundle-l10n-gen\OSGI-INF\l10n
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\sourcebundle-l10n-gen\OSGI-INF
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\sourcebundle-l10n-gen
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\p2content.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\p2artifacts.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\org.eclipse.app4mc.amalthea.converters.094-1.1.0-SNAPSHOT.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\org.eclipse.app4mc.amalthea.converters.094-1.1.0-SNAPSHOT-sources.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\maven-archiver\pom.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\maven-archiver
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\MANIFEST.MF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\local-artifacts.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\generated-sources\annotations
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\generated-sources
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\classes\org\eclipse\app4mc\amalthea\converters094\impl\SwConverter.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\classes\org\eclipse\app4mc\amalthea\converters094\impl\HwConverter.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\classes\org\eclipse\app4mc\amalthea\converters094\impl
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\classes\org\eclipse\app4mc\amalthea\converters094
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\classes\org\eclipse\app4mc\amalthea
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\classes\org\eclipse\app4mc
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\classes\org\eclipse
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\classes\org
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\classes
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\site
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier) @ org.eclipse.app4mc.amalthea.converters.094 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier' with basic configurator -->
+[DEBUG]   (f) baseDir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier {execution: default-build-qualifier}
+[DEBUG]   (s) format = yyyyMMddHHmm
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] The project's OSGi version is 1.1.0.202104220626
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-id (default-validate-id) @ org.eclipse.app4mc.amalthea.converters.094 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-version (default-validate-version) @ org.eclipse.app4mc.amalthea.converters.094 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF
+[DEBUG]   (f) strictVersions = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ org.eclipse.app4mc.amalthea.converters.094 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.094.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\src\main\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\src\main\resources
+[INFO] 
+[INFO] --- tycho-compiler-plugin:2.3.0:compile (default-compile) @ org.eclipse.app4mc.amalthea.converters.094 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-compiler-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile' with basic configurator -->
+[DEBUG]   (f) basedir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target
+[DEBUG]   (f) compilerId = jdt
+[DEBUG]   (f) copyResources = true
+[DEBUG]   (f) debug = true
+[DEBUG]   (f) deriveReleaseCompilerArgumentFromTargetLevel = true
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) failOnWarning = false
+[DEBUG]   (f) fork = false
+[DEBUG]   (f) generatedSourcesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\generated-sources\annotations
+[DEBUG]   (f) logDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\compile-logs
+[DEBUG]   (f) optimize = false
+[DEBUG]   (f) outputFileName = org.eclipse.app4mc.amalthea.converters.094-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF
+[DEBUG]   (f) requireJREPackageImports = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showDeprecation = false
+[DEBUG]   (f) showWarnings = false
+[DEBUG]   (f) staleMillis = 0
+[DEBUG]   (f) strictCompilerTarget = false
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useProjectSettings = true
+[DEBUG]   (f) verbose = false
+[DEBUG] -- end configuration --
+[DEBUG] Manifest BREEs: [OSGi profile 'JavaSE-1.8' { source level: 1.8, target level: 1.8}]
+[DEBUG] Target Platform EE: OSGi profile 'JavaSE-11' { source level: 11, target level: 11}
+[DEBUG] Effective source/target: 1.8/1.8
+[DEBUG] Using compiler 'jdt'.
+[DEBUG] Source directories: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\src]
+[DEBUG] Classpath: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\classes]
+[DEBUG] Output directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\classes
+[DEBUG] Classpath:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\classes
+[DEBUG] Source roots:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\src
+[INFO] Compiling 2 source files to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\classes
+[DEBUG] JDT compiler args: [-properties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.settings\org.eclipse.jdt.core.prefs, -s, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\generated-sources\annotations, -d, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\classes, -classpath, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\classes, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\src\org\eclipse\app4mc\amalthea\converters094\impl\HwConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\src\org\eclipse\app4mc\amalthea\converters094\impl\SwConverter.java, -g, -nowarn, -target, 1.8, -source, 1.8, --release, 8, -encoding, UTF-8]
+[DEBUG] Original compiler output: 
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ org.eclipse.app4mc.amalthea.converters.094 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\test-classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\src\test\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.094.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\src\test\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\src\test\resources
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ org.eclipse.app4mc.amalthea.converters.094 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.094-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\org.eclipse.app4mc.amalthea.converters.094-1.1.0-SNAPSHOT-sources.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters094/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters094/impl/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters094/impl/HwConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters094/impl/SwConverter.java
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding directory OSGI-INF/l10n/
+[DEBUG] adding entry OSGI-INF/l10n/bundle-src.properties
+[INFO] 
+[INFO] --- target-platform-configuration:2.3.0:target-platform (default-target-platform) @ org.eclipse.app4mc.amalthea.converters.094 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform from plugin realm ClassRealm[plugin>org.eclipse.tycho:target-platform-configuration:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin) @ org.eclipse.app4mc.amalthea.converters.094 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin' with basic configurator -->
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.094-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) strictBinIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\org.eclipse.app4mc.amalthea.converters.094-1.1.0-SNAPSHOT.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters094/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters094/impl/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters094/impl/HwConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters094/impl/SwConverter.class
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters094.impl.HwConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters094.impl.SwConverter.xml
+[DEBUG] adding directory META-INF/maven/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.094/
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.094/pom.xml
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.094/pom.properties
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default) @ org.eclipse.app4mc.amalthea.converters.094 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default' with basic configurator -->
+[DEBUG]   (f) attachP2Metadata = true
+[DEBUG]   (f) baselineMode = warn
+[DEBUG]   (f) baselineReplace = none
+[DEBUG]   (f) url = https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/
+[DEBUG]   (f) baselineRepositories = [org.eclipse.tycho.plugins.p2.Repository@2cc70f6e]
+[DEBUG]   (f) defaultP2Metadata = true
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default {execution: default-p2-metadata-default}
+[DEBUG]   (f) generateDownloadStatsProperty = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] No baseline version MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF
+[INFO] 
+[INFO] --< org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095 >--
+[INFO] Building [bundle] APP4MC Amalthea Converters to 0.9.5 1.1.0-SNAPSHOT [15/47]
+[INFO] ---------------------------[ eclipse-plugin ]---------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): [compile]
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <baseDir>${project.basedir}</baseDir>
+  <execution>${mojoExecution}</execution>
+  <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
+  <format default-value="yyyyMMddHHmm"/>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id (default-validate-id)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version (default-validate-version)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <strictVersions default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources (default-resources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources default-value="${project.resources}"/>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile (default-compile)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <basedir>${basedir}</basedir>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <compilerId default-value="jdt">${maven.compiler.compilerId}</compilerId>
+  <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
+  <copyResources default-value="true"/>
+  <debug default-value="true">${maven.compiler.debug}</debug>
+  <deriveReleaseCompilerArgumentFromTargetLevel default-value="true"/>
+  <encoding>${project.build.sourceEncoding}</encoding>
+  <executable>${maven.compiler.executable}</executable>
+  <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
+  <fork default-value="false"/>
+  <generatedSourcesDirectory default-value="${project.build.directory}/generated-sources/annotations"/>
+  <logDirectory default-value="${project.build.directory}/compile-logs"/>
+  <mavenCompilerEncoding>${maven.compiler.encoding}</mavenCompilerEncoding>
+  <maxmem>${maven.compiler.maxmem}</maxmem>
+  <meminitial>${maven.compiler.meminitial}</meminitial>
+  <optimize default-value="false">${maven.compiler.optimize}</optimize>
+  <outputFileName>${project.build.finalName}</outputFileName>
+  <project>${project}</project>
+  <release>${maven.compiler.release}</release>
+  <requireJREPackageImports default-value="false"/>
+  <session>${session}</session>
+  <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
+  <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
+  <source>${maven.compiler.source}</source>
+  <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
+  <strictCompilerTarget default-value="false"/>
+  <target>${maven.compiler.target}</target>
+  <useJDK default-value="SYSTEM"/>
+  <useProjectSettings default-value="true"/>
+  <verbose default-value="false">${maven.compiler.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources (default-testResources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources>${project.testResources}</resources>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform (default-target-platform)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <finalName>${project.build.finalName}</finalName>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <strictBinIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attachP2Metadata default-value="true"/>
+  <baselineMode default-value="warn">${tycho.baseline}</baselineMode>
+  <baselineReplace default-value="all">none</baselineReplace>
+  <baselineRepositories>
+    <repository>
+      <url>https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/</url>
+    </repository>
+  </baselineRepositories>
+  <defaultP2Metadata default-value="true"/>
+  <execution>${mojoExecution}</execution>
+  <generateDownloadStatsProperty default-value="false">${tycho.generateDownloadStatsProperty}</generateDownloadStatsProperty>
+  <project>${project}</project>
+</configuration>
+[DEBUG] =======================================================================
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=13500, ConflictMarker.markTime=10500, ConflictMarker.nodeCount=20, ConflictIdSorter.graphTime=6000, ConflictIdSorter.topsortTime=7300, ConflictIdSorter.conflictIdCount=10, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=42000, ConflictResolver.conflictItemCount=19, DefaultDependencyCollector.collectTime=210500, DefaultDependencyCollector.transformTime=92200}
+[DEBUG] org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:eclipse-plugin:1.1.0-SNAPSHOT
+[DEBUG]    p2.eclipse-plugin:javax.annotation:jar:1.2.0.v201602091430:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi:jar:3.15.100.v20191114-1701:system
+[DEBUG]    p2.eclipse-plugin:org.apache.felix.scr:jar:2.1.14.v20190123-1619:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.services:jar:3.8.0.v20190206-2147:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.util:jar:3.5.300.v20190708-1141:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.eclipse.app4mc.util.sessionlog:jar:1.1.0.202104211257:system
+[DEBUG]    p2.eclipse-plugin:org.jdom2:jar:2.0.6.v20191125-0928:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.common:jar:3.10.600.v20191004-1420:system
+[DEBUG]    p2.eclipse-plugin:org.jaxen:jar:1.1.6.v20191106-1554:system
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ org.eclipse.app4mc.amalthea.converters.095 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\test-classes
+[DEBUG] -- end configuration --
+[INFO] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\sourcebundle-l10n-gen\OSGI-INF\l10n\bundle-src.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\sourcebundle-l10n-gen\OSGI-INF\l10n
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\sourcebundle-l10n-gen\OSGI-INF
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\sourcebundle-l10n-gen
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\p2content.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\p2artifacts.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\org.eclipse.app4mc.amalthea.converters.095-1.1.0-SNAPSHOT.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\org.eclipse.app4mc.amalthea.converters.095-1.1.0-SNAPSHOT-sources.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\maven-archiver\pom.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\maven-archiver
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\MANIFEST.MF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\local-artifacts.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\generated-sources\annotations
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\generated-sources
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\classes\org\eclipse\app4mc\amalthea\converters095\impl\SwConverter.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\classes\org\eclipse\app4mc\amalthea\converters095\impl\StimuliConverter.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\classes\org\eclipse\app4mc\amalthea\converters095\impl
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\classes\org\eclipse\app4mc\amalthea\converters095
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\classes\org\eclipse\app4mc\amalthea
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\classes\org\eclipse\app4mc
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\classes\org\eclipse
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\classes\org
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\classes
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\site
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier) @ org.eclipse.app4mc.amalthea.converters.095 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier' with basic configurator -->
+[DEBUG]   (f) baseDir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier {execution: default-build-qualifier}
+[DEBUG]   (s) format = yyyyMMddHHmm
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] The project's OSGi version is 1.1.0.202104220626
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-id (default-validate-id) @ org.eclipse.app4mc.amalthea.converters.095 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-version (default-validate-version) @ org.eclipse.app4mc.amalthea.converters.095 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF
+[DEBUG]   (f) strictVersions = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ org.eclipse.app4mc.amalthea.converters.095 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.095.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\src\main\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\src\main\resources
+[INFO] 
+[INFO] --- tycho-compiler-plugin:2.3.0:compile (default-compile) @ org.eclipse.app4mc.amalthea.converters.095 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-compiler-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile' with basic configurator -->
+[DEBUG]   (f) basedir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target
+[DEBUG]   (f) compilerId = jdt
+[DEBUG]   (f) copyResources = true
+[DEBUG]   (f) debug = true
+[DEBUG]   (f) deriveReleaseCompilerArgumentFromTargetLevel = true
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) failOnWarning = false
+[DEBUG]   (f) fork = false
+[DEBUG]   (f) generatedSourcesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\generated-sources\annotations
+[DEBUG]   (f) logDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\compile-logs
+[DEBUG]   (f) optimize = false
+[DEBUG]   (f) outputFileName = org.eclipse.app4mc.amalthea.converters.095-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF
+[DEBUG]   (f) requireJREPackageImports = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showDeprecation = false
+[DEBUG]   (f) showWarnings = false
+[DEBUG]   (f) staleMillis = 0
+[DEBUG]   (f) strictCompilerTarget = false
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useProjectSettings = true
+[DEBUG]   (f) verbose = false
+[DEBUG] -- end configuration --
+[DEBUG] Manifest BREEs: [OSGi profile 'JavaSE-1.8' { source level: 1.8, target level: 1.8}]
+[DEBUG] Target Platform EE: OSGi profile 'JavaSE-11' { source level: 11, target level: 11}
+[DEBUG] Effective source/target: 1.8/1.8
+[DEBUG] Using compiler 'jdt'.
+[DEBUG] Source directories: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\src]
+[DEBUG] Classpath: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\classes]
+[DEBUG] Output directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\classes
+[DEBUG] Classpath:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\classes
+[DEBUG] Source roots:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\src
+[INFO] Compiling 2 source files to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\classes
+[DEBUG] JDT compiler args: [-properties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.settings\org.eclipse.jdt.core.prefs, -s, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\generated-sources\annotations, -d, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\classes, -classpath, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\classes, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\src\org\eclipse\app4mc\amalthea\converters095\impl\StimuliConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\src\org\eclipse\app4mc\amalthea\converters095\impl\SwConverter.java, -g, -nowarn, -target, 1.8, -source, 1.8, --release, 8, -encoding, UTF-8]
+[DEBUG] Original compiler output: 
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ org.eclipse.app4mc.amalthea.converters.095 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\test-classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\src\test\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.095.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\src\test\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\src\test\resources
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ org.eclipse.app4mc.amalthea.converters.095 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.095-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\org.eclipse.app4mc.amalthea.converters.095-1.1.0-SNAPSHOT-sources.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters095/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters095/impl/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters095/impl/StimuliConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters095/impl/SwConverter.java
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding directory OSGI-INF/l10n/
+[DEBUG] adding entry OSGI-INF/l10n/bundle-src.properties
+[INFO] 
+[INFO] --- target-platform-configuration:2.3.0:target-platform (default-target-platform) @ org.eclipse.app4mc.amalthea.converters.095 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform from plugin realm ClassRealm[plugin>org.eclipse.tycho:target-platform-configuration:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin) @ org.eclipse.app4mc.amalthea.converters.095 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin' with basic configurator -->
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.095-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) strictBinIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\org.eclipse.app4mc.amalthea.converters.095-1.1.0-SNAPSHOT.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters095/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters095/impl/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters095/impl/StimuliConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters095/impl/SwConverter.class
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters095.impl.StimuliConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters095.impl.SwConverter.xml
+[DEBUG] adding directory META-INF/maven/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.095/
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.095/pom.xml
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.095/pom.properties
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default) @ org.eclipse.app4mc.amalthea.converters.095 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default' with basic configurator -->
+[DEBUG]   (f) attachP2Metadata = true
+[DEBUG]   (f) baselineMode = warn
+[DEBUG]   (f) baselineReplace = none
+[DEBUG]   (f) url = https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/
+[DEBUG]   (f) baselineRepositories = [org.eclipse.tycho.plugins.p2.Repository@472bc276]
+[DEBUG]   (f) defaultP2Metadata = true
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default {execution: default-p2-metadata-default}
+[DEBUG]   (f) generateDownloadStatsProperty = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] No baseline version MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF
+[INFO] 
+[INFO] --< org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096 >--
+[INFO] Building [bundle] APP4MC Amalthea Converters to 0.9.6 1.1.0-SNAPSHOT [16/47]
+[INFO] ---------------------------[ eclipse-plugin ]---------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): [compile]
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <baseDir>${project.basedir}</baseDir>
+  <execution>${mojoExecution}</execution>
+  <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
+  <format default-value="yyyyMMddHHmm"/>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id (default-validate-id)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version (default-validate-version)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <strictVersions default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources (default-resources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources default-value="${project.resources}"/>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile (default-compile)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <basedir>${basedir}</basedir>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <compilerId default-value="jdt">${maven.compiler.compilerId}</compilerId>
+  <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
+  <copyResources default-value="true"/>
+  <debug default-value="true">${maven.compiler.debug}</debug>
+  <deriveReleaseCompilerArgumentFromTargetLevel default-value="true"/>
+  <encoding>${project.build.sourceEncoding}</encoding>
+  <executable>${maven.compiler.executable}</executable>
+  <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
+  <fork default-value="false"/>
+  <generatedSourcesDirectory default-value="${project.build.directory}/generated-sources/annotations"/>
+  <logDirectory default-value="${project.build.directory}/compile-logs"/>
+  <mavenCompilerEncoding>${maven.compiler.encoding}</mavenCompilerEncoding>
+  <maxmem>${maven.compiler.maxmem}</maxmem>
+  <meminitial>${maven.compiler.meminitial}</meminitial>
+  <optimize default-value="false">${maven.compiler.optimize}</optimize>
+  <outputFileName>${project.build.finalName}</outputFileName>
+  <project>${project}</project>
+  <release>${maven.compiler.release}</release>
+  <requireJREPackageImports default-value="false"/>
+  <session>${session}</session>
+  <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
+  <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
+  <source>${maven.compiler.source}</source>
+  <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
+  <strictCompilerTarget default-value="false"/>
+  <target>${maven.compiler.target}</target>
+  <useJDK default-value="SYSTEM"/>
+  <useProjectSettings default-value="true"/>
+  <verbose default-value="false">${maven.compiler.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources (default-testResources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources>${project.testResources}</resources>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform (default-target-platform)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <finalName>${project.build.finalName}</finalName>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <strictBinIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attachP2Metadata default-value="true"/>
+  <baselineMode default-value="warn">${tycho.baseline}</baselineMode>
+  <baselineReplace default-value="all">none</baselineReplace>
+  <baselineRepositories>
+    <repository>
+      <url>https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/</url>
+    </repository>
+  </baselineRepositories>
+  <defaultP2Metadata default-value="true"/>
+  <execution>${mojoExecution}</execution>
+  <generateDownloadStatsProperty default-value="false">${tycho.generateDownloadStatsProperty}</generateDownloadStatsProperty>
+  <project>${project}</project>
+</configuration>
+[DEBUG] =======================================================================
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=13000, ConflictMarker.markTime=10300, ConflictMarker.nodeCount=20, ConflictIdSorter.graphTime=5500, ConflictIdSorter.topsortTime=7400, ConflictIdSorter.conflictIdCount=10, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=41299, ConflictResolver.conflictItemCount=19, DefaultDependencyCollector.collectTime=186399, DefaultDependencyCollector.transformTime=89501}
+[DEBUG] org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:eclipse-plugin:1.1.0-SNAPSHOT
+[DEBUG]    p2.eclipse-plugin:javax.annotation:jar:1.2.0.v201602091430:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi:jar:3.15.100.v20191114-1701:system
+[DEBUG]    p2.eclipse-plugin:org.apache.felix.scr:jar:2.1.14.v20190123-1619:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.services:jar:3.8.0.v20190206-2147:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.util:jar:3.5.300.v20190708-1141:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.eclipse.app4mc.util.sessionlog:jar:1.1.0.202104211257:system
+[DEBUG]    p2.eclipse-plugin:org.jdom2:jar:2.0.6.v20191125-0928:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.common:jar:3.10.600.v20191004-1420:system
+[DEBUG]    p2.eclipse-plugin:org.jaxen:jar:1.1.6.v20191106-1554:system
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ org.eclipse.app4mc.amalthea.converters.096 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\test-classes
+[DEBUG] -- end configuration --
+[INFO] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\sourcebundle-l10n-gen\OSGI-INF\l10n\bundle-src.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\sourcebundle-l10n-gen\OSGI-INF\l10n
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\sourcebundle-l10n-gen\OSGI-INF
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\sourcebundle-l10n-gen
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\p2content.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\p2artifacts.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\org.eclipse.app4mc.amalthea.converters.096-1.1.0-SNAPSHOT.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\org.eclipse.app4mc.amalthea.converters.096-1.1.0-SNAPSHOT-sources.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\maven-archiver\pom.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\maven-archiver
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\MANIFEST.MF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\local-artifacts.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\generated-sources\annotations
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\generated-sources
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\classes\org\eclipse\app4mc\amalthea\converters096\impl\SwConverter.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\classes\org\eclipse\app4mc\amalthea\converters096\impl\ConstraintsConverter.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\classes\org\eclipse\app4mc\amalthea\converters096\impl
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\classes\org\eclipse\app4mc\amalthea\converters096
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\classes\org\eclipse\app4mc\amalthea
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\classes\org\eclipse\app4mc
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\classes\org\eclipse
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\classes\org
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\classes
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\site
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier) @ org.eclipse.app4mc.amalthea.converters.096 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier' with basic configurator -->
+[DEBUG]   (f) baseDir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier {execution: default-build-qualifier}
+[DEBUG]   (s) format = yyyyMMddHHmm
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] The project's OSGi version is 1.1.0.202104220626
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-id (default-validate-id) @ org.eclipse.app4mc.amalthea.converters.096 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-version (default-validate-version) @ org.eclipse.app4mc.amalthea.converters.096 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF
+[DEBUG]   (f) strictVersions = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ org.eclipse.app4mc.amalthea.converters.096 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.096.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\src\main\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\src\main\resources
+[INFO] 
+[INFO] --- tycho-compiler-plugin:2.3.0:compile (default-compile) @ org.eclipse.app4mc.amalthea.converters.096 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-compiler-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile' with basic configurator -->
+[DEBUG]   (f) basedir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target
+[DEBUG]   (f) compilerId = jdt
+[DEBUG]   (f) copyResources = true
+[DEBUG]   (f) debug = true
+[DEBUG]   (f) deriveReleaseCompilerArgumentFromTargetLevel = true
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) failOnWarning = false
+[DEBUG]   (f) fork = false
+[DEBUG]   (f) generatedSourcesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\generated-sources\annotations
+[DEBUG]   (f) logDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\compile-logs
+[DEBUG]   (f) optimize = false
+[DEBUG]   (f) outputFileName = org.eclipse.app4mc.amalthea.converters.096-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF
+[DEBUG]   (f) requireJREPackageImports = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showDeprecation = false
+[DEBUG]   (f) showWarnings = false
+[DEBUG]   (f) staleMillis = 0
+[DEBUG]   (f) strictCompilerTarget = false
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useProjectSettings = true
+[DEBUG]   (f) verbose = false
+[DEBUG] -- end configuration --
+[DEBUG] Manifest BREEs: [OSGi profile 'JavaSE-1.8' { source level: 1.8, target level: 1.8}]
+[DEBUG] Target Platform EE: OSGi profile 'JavaSE-11' { source level: 11, target level: 11}
+[DEBUG] Effective source/target: 1.8/1.8
+[DEBUG] Using compiler 'jdt'.
+[DEBUG] Source directories: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\src]
+[DEBUG] Classpath: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\classes]
+[DEBUG] Output directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\classes
+[DEBUG] Classpath:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\classes
+[DEBUG] Source roots:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\src
+[INFO] Compiling 2 source files to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\classes
+[DEBUG] JDT compiler args: [-properties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.settings\org.eclipse.jdt.core.prefs, -s, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\generated-sources\annotations, -d, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\classes, -classpath, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\classes, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\src\org\eclipse\app4mc\amalthea\converters096\impl\ConstraintsConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\src\org\eclipse\app4mc\amalthea\converters096\impl\SwConverter.java, -g, -nowarn, -target, 1.8, -source, 1.8, --release, 8, -encoding, UTF-8]
+[DEBUG] Original compiler output: 
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ org.eclipse.app4mc.amalthea.converters.096 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\test-classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\src\test\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.096.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\src\test\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\src\test\resources
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ org.eclipse.app4mc.amalthea.converters.096 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.096-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\org.eclipse.app4mc.amalthea.converters.096-1.1.0-SNAPSHOT-sources.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters096/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters096/impl/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters096/impl/ConstraintsConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters096/impl/SwConverter.java
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding directory OSGI-INF/l10n/
+[DEBUG] adding entry OSGI-INF/l10n/bundle-src.properties
+[INFO] 
+[INFO] --- target-platform-configuration:2.3.0:target-platform (default-target-platform) @ org.eclipse.app4mc.amalthea.converters.096 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform from plugin realm ClassRealm[plugin>org.eclipse.tycho:target-platform-configuration:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin) @ org.eclipse.app4mc.amalthea.converters.096 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin' with basic configurator -->
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.096-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) strictBinIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\org.eclipse.app4mc.amalthea.converters.096-1.1.0-SNAPSHOT.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters096/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters096/impl/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters096/impl/ConstraintsConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters096/impl/SwConverter.class
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters096.impl.ConstraintsConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters096.impl.SwConverter.xml
+[DEBUG] adding directory META-INF/maven/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.096/
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.096/pom.xml
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.096/pom.properties
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default) @ org.eclipse.app4mc.amalthea.converters.096 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default' with basic configurator -->
+[DEBUG]   (f) attachP2Metadata = true
+[DEBUG]   (f) baselineMode = warn
+[DEBUG]   (f) baselineReplace = none
+[DEBUG]   (f) url = https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/
+[DEBUG]   (f) baselineRepositories = [org.eclipse.tycho.plugins.p2.Repository@c9d26c8]
+[DEBUG]   (f) defaultP2Metadata = true
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default {execution: default-p2-metadata-default}
+[DEBUG]   (f) generateDownloadStatsProperty = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] No baseline version MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF
+[INFO] 
+[INFO] --< org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097 >--
+[INFO] Building [bundle] APP4MC Amalthea Converters to 0.9.7 1.1.0-SNAPSHOT [17/47]
+[INFO] ---------------------------[ eclipse-plugin ]---------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): [compile]
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <baseDir>${project.basedir}</baseDir>
+  <execution>${mojoExecution}</execution>
+  <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
+  <format default-value="yyyyMMddHHmm"/>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id (default-validate-id)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version (default-validate-version)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <strictVersions default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources (default-resources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources default-value="${project.resources}"/>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile (default-compile)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <basedir>${basedir}</basedir>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <compilerId default-value="jdt">${maven.compiler.compilerId}</compilerId>
+  <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
+  <copyResources default-value="true"/>
+  <debug default-value="true">${maven.compiler.debug}</debug>
+  <deriveReleaseCompilerArgumentFromTargetLevel default-value="true"/>
+  <encoding>${project.build.sourceEncoding}</encoding>
+  <executable>${maven.compiler.executable}</executable>
+  <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
+  <fork default-value="false"/>
+  <generatedSourcesDirectory default-value="${project.build.directory}/generated-sources/annotations"/>
+  <logDirectory default-value="${project.build.directory}/compile-logs"/>
+  <mavenCompilerEncoding>${maven.compiler.encoding}</mavenCompilerEncoding>
+  <maxmem>${maven.compiler.maxmem}</maxmem>
+  <meminitial>${maven.compiler.meminitial}</meminitial>
+  <optimize default-value="false">${maven.compiler.optimize}</optimize>
+  <outputFileName>${project.build.finalName}</outputFileName>
+  <project>${project}</project>
+  <release>${maven.compiler.release}</release>
+  <requireJREPackageImports default-value="false"/>
+  <session>${session}</session>
+  <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
+  <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
+  <source>${maven.compiler.source}</source>
+  <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
+  <strictCompilerTarget default-value="false"/>
+  <target>${maven.compiler.target}</target>
+  <useJDK default-value="SYSTEM"/>
+  <useProjectSettings default-value="true"/>
+  <verbose default-value="false">${maven.compiler.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources (default-testResources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources>${project.testResources}</resources>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform (default-target-platform)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <finalName>${project.build.finalName}</finalName>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <strictBinIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attachP2Metadata default-value="true"/>
+  <baselineMode default-value="warn">${tycho.baseline}</baselineMode>
+  <baselineReplace default-value="all">none</baselineReplace>
+  <baselineRepositories>
+    <repository>
+      <url>https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/</url>
+    </repository>
+  </baselineRepositories>
+  <defaultP2Metadata default-value="true"/>
+  <execution>${mojoExecution}</execution>
+  <generateDownloadStatsProperty default-value="false">${tycho.generateDownloadStatsProperty}</generateDownloadStatsProperty>
+  <project>${project}</project>
+</configuration>
+[DEBUG] =======================================================================
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=18800, ConflictMarker.markTime=11500, ConflictMarker.nodeCount=20, ConflictIdSorter.graphTime=9499, ConflictIdSorter.topsortTime=12200, ConflictIdSorter.conflictIdCount=10, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=65700, ConflictResolver.conflictItemCount=19, DefaultDependencyCollector.collectTime=339800, DefaultDependencyCollector.transformTime=145500}
+[DEBUG] org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:eclipse-plugin:1.1.0-SNAPSHOT
+[DEBUG]    p2.eclipse-plugin:javax.annotation:jar:1.2.0.v201602091430:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi:jar:3.15.100.v20191114-1701:system
+[DEBUG]    p2.eclipse-plugin:org.apache.felix.scr:jar:2.1.14.v20190123-1619:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.services:jar:3.8.0.v20190206-2147:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.util:jar:3.5.300.v20190708-1141:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.eclipse.app4mc.util.sessionlog:jar:1.1.0.202104211257:system
+[DEBUG]    p2.eclipse-plugin:org.jdom2:jar:2.0.6.v20191125-0928:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.common:jar:3.10.600.v20191004-1420:system
+[DEBUG]    p2.eclipse-plugin:org.jaxen:jar:1.1.6.v20191106-1554:system
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ org.eclipse.app4mc.amalthea.converters.097 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\test-classes
+[DEBUG] -- end configuration --
+[INFO] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\sourcebundle-l10n-gen\OSGI-INF\l10n\bundle-src.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\sourcebundle-l10n-gen\OSGI-INF\l10n
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\sourcebundle-l10n-gen\OSGI-INF
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\sourcebundle-l10n-gen
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\p2content.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\p2artifacts.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\org.eclipse.app4mc.amalthea.converters.097-1.1.0-SNAPSHOT.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\org.eclipse.app4mc.amalthea.converters.097-1.1.0-SNAPSHOT-sources.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\maven-archiver\pom.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\maven-archiver
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\MANIFEST.MF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\local-artifacts.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\generated-sources\annotations
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\generated-sources
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\classes\org\eclipse\app4mc\amalthea\converters097\utils\ComponentPortInterfaceCacheBuilder.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\classes\org\eclipse\app4mc\amalthea\converters097\utils\AmltModelReferencePostProcessor.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\classes\org\eclipse\app4mc\amalthea\converters097\utils
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\classes\org\eclipse\app4mc\amalthea\converters097\impl\ComponentsModelConverter.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\classes\org\eclipse\app4mc\amalthea\converters097\impl
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\classes\org\eclipse\app4mc\amalthea\converters097
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\classes\org\eclipse\app4mc\amalthea
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\classes\org\eclipse\app4mc
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\classes\org\eclipse
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\classes\org
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\classes
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\site
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier) @ org.eclipse.app4mc.amalthea.converters.097 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier' with basic configurator -->
+[DEBUG]   (f) baseDir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier {execution: default-build-qualifier}
+[DEBUG]   (s) format = yyyyMMddHHmm
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] The project's OSGi version is 1.1.0.202104220626
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-id (default-validate-id) @ org.eclipse.app4mc.amalthea.converters.097 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-version (default-validate-version) @ org.eclipse.app4mc.amalthea.converters.097 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF
+[DEBUG]   (f) strictVersions = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ org.eclipse.app4mc.amalthea.converters.097 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.097.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\src\main\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\src\main\resources
+[INFO] 
+[INFO] --- tycho-compiler-plugin:2.3.0:compile (default-compile) @ org.eclipse.app4mc.amalthea.converters.097 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-compiler-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile' with basic configurator -->
+[DEBUG]   (f) basedir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target
+[DEBUG]   (f) compilerId = jdt
+[DEBUG]   (f) copyResources = true
+[DEBUG]   (f) debug = true
+[DEBUG]   (f) deriveReleaseCompilerArgumentFromTargetLevel = true
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) failOnWarning = false
+[DEBUG]   (f) fork = false
+[DEBUG]   (f) generatedSourcesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\generated-sources\annotations
+[DEBUG]   (f) logDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\compile-logs
+[DEBUG]   (f) optimize = false
+[DEBUG]   (f) outputFileName = org.eclipse.app4mc.amalthea.converters.097-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF
+[DEBUG]   (f) requireJREPackageImports = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showDeprecation = false
+[DEBUG]   (f) showWarnings = false
+[DEBUG]   (f) staleMillis = 0
+[DEBUG]   (f) strictCompilerTarget = false
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useProjectSettings = true
+[DEBUG]   (f) verbose = false
+[DEBUG] -- end configuration --
+[DEBUG] Manifest BREEs: [OSGi profile 'JavaSE-1.8' { source level: 1.8, target level: 1.8}]
+[DEBUG] Target Platform EE: OSGi profile 'JavaSE-11' { source level: 11, target level: 11}
+[DEBUG] Effective source/target: 1.8/1.8
+[DEBUG] Using compiler 'jdt'.
+[DEBUG] Source directories: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\src]
+[DEBUG] Classpath: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\classes]
+[DEBUG] Output directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\classes
+[DEBUG] Classpath:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\classes
+[DEBUG] Source roots:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\src
+[INFO] Compiling 3 source files to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\classes
+[DEBUG] JDT compiler args: [-properties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.settings\org.eclipse.jdt.core.prefs, -s, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\generated-sources\annotations, -d, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\classes, -classpath, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\classes, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\src\org\eclipse\app4mc\amalthea\converters097\utils\ComponentPortInterfaceCacheBuilder.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\src\org\eclipse\app4mc\amalthea\converters097\impl\ComponentsModelConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\src\org\eclipse\app4mc\amalthea\converters097\utils\AmltModelReferencePostProcessor.java, -g, -nowarn, -target, 1.8, -source, 1.8, --release, 8, -encoding, UTF-8]
+[DEBUG] Original compiler output: 
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ org.eclipse.app4mc.amalthea.converters.097 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\test-classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\src\test\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.097.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\src\test\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\src\test\resources
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ org.eclipse.app4mc.amalthea.converters.097 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.097-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\org.eclipse.app4mc.amalthea.converters.097-1.1.0-SNAPSHOT-sources.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters097/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters097/impl/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters097/utils/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters097/impl/ComponentsModelConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters097/utils/AmltModelReferencePostProcessor.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters097/utils/ComponentPortInterfaceCacheBuilder.java
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding directory OSGI-INF/l10n/
+[DEBUG] adding entry OSGI-INF/l10n/bundle-src.properties
+[INFO] 
+[INFO] --- target-platform-configuration:2.3.0:target-platform (default-target-platform) @ org.eclipse.app4mc.amalthea.converters.097 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform from plugin realm ClassRealm[plugin>org.eclipse.tycho:target-platform-configuration:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin) @ org.eclipse.app4mc.amalthea.converters.097 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin' with basic configurator -->
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.097-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) strictBinIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\org.eclipse.app4mc.amalthea.converters.097-1.1.0-SNAPSHOT.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters097/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters097/impl/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters097/utils/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters097/impl/ComponentsModelConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters097/utils/AmltModelReferencePostProcessor.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters097/utils/ComponentPortInterfaceCacheBuilder.class
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters097.impl.ComponentsModelConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters097.utils.AmltModelReferencePostProcessor.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters097.utils.ComponentPortInterfaceCacheBuilder.xml
+[DEBUG] adding directory META-INF/maven/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.097/
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.097/pom.xml
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.097/pom.properties
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default) @ org.eclipse.app4mc.amalthea.converters.097 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default' with basic configurator -->
+[DEBUG]   (f) attachP2Metadata = true
+[DEBUG]   (f) baselineMode = warn
+[DEBUG]   (f) baselineReplace = none
+[DEBUG]   (f) url = https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/
+[DEBUG]   (f) baselineRepositories = [org.eclipse.tycho.plugins.p2.Repository@2f0b5577]
+[DEBUG]   (f) defaultP2Metadata = true
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default {execution: default-p2-metadata-default}
+[DEBUG]   (f) generateDownloadStatsProperty = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] No baseline version MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF
+[INFO] 
+[INFO] --< org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100 >--
+[INFO] Building [bundle] APP4MC Amalthea Converters to 1.0.0 1.1.0-SNAPSHOT [18/47]
+[INFO] ---------------------------[ eclipse-plugin ]---------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): [compile]
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <baseDir>${project.basedir}</baseDir>
+  <execution>${mojoExecution}</execution>
+  <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
+  <format default-value="yyyyMMddHHmm"/>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id (default-validate-id)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version (default-validate-version)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <strictVersions default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources (default-resources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources default-value="${project.resources}"/>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile (default-compile)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <basedir>${basedir}</basedir>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <compilerId default-value="jdt">${maven.compiler.compilerId}</compilerId>
+  <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
+  <copyResources default-value="true"/>
+  <debug default-value="true">${maven.compiler.debug}</debug>
+  <deriveReleaseCompilerArgumentFromTargetLevel default-value="true"/>
+  <encoding>${project.build.sourceEncoding}</encoding>
+  <executable>${maven.compiler.executable}</executable>
+  <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
+  <fork default-value="false"/>
+  <generatedSourcesDirectory default-value="${project.build.directory}/generated-sources/annotations"/>
+  <logDirectory default-value="${project.build.directory}/compile-logs"/>
+  <mavenCompilerEncoding>${maven.compiler.encoding}</mavenCompilerEncoding>
+  <maxmem>${maven.compiler.maxmem}</maxmem>
+  <meminitial>${maven.compiler.meminitial}</meminitial>
+  <optimize default-value="false">${maven.compiler.optimize}</optimize>
+  <outputFileName>${project.build.finalName}</outputFileName>
+  <project>${project}</project>
+  <release>${maven.compiler.release}</release>
+  <requireJREPackageImports default-value="false"/>
+  <session>${session}</session>
+  <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
+  <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
+  <source>${maven.compiler.source}</source>
+  <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
+  <strictCompilerTarget default-value="false"/>
+  <target>${maven.compiler.target}</target>
+  <useJDK default-value="SYSTEM"/>
+  <useProjectSettings default-value="true"/>
+  <verbose default-value="false">${maven.compiler.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources (default-testResources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources>${project.testResources}</resources>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform (default-target-platform)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <finalName>${project.build.finalName}</finalName>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <strictBinIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attachP2Metadata default-value="true"/>
+  <baselineMode default-value="warn">${tycho.baseline}</baselineMode>
+  <baselineReplace default-value="all">none</baselineReplace>
+  <baselineRepositories>
+    <repository>
+      <url>https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/</url>
+    </repository>
+  </baselineRepositories>
+  <defaultP2Metadata default-value="true"/>
+  <execution>${mojoExecution}</execution>
+  <generateDownloadStatsProperty default-value="false">${tycho.generateDownloadStatsProperty}</generateDownloadStatsProperty>
+  <project>${project}</project>
+</configuration>
+[DEBUG] =======================================================================
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=13400, ConflictMarker.markTime=10900, ConflictMarker.nodeCount=20, ConflictIdSorter.graphTime=6000, ConflictIdSorter.topsortTime=7400, ConflictIdSorter.conflictIdCount=10, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=42799, ConflictResolver.conflictItemCount=19, DefaultDependencyCollector.collectTime=185600, DefaultDependencyCollector.transformTime=104999}
+[DEBUG] org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:eclipse-plugin:1.1.0-SNAPSHOT
+[DEBUG]    p2.eclipse-plugin:javax.annotation:jar:1.2.0.v201602091430:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi:jar:3.15.100.v20191114-1701:system
+[DEBUG]    p2.eclipse-plugin:org.apache.felix.scr:jar:2.1.14.v20190123-1619:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.services:jar:3.8.0.v20190206-2147:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.util:jar:3.5.300.v20190708-1141:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.eclipse.app4mc.util.sessionlog:jar:1.1.0.202104211257:system
+[DEBUG]    p2.eclipse-plugin:org.jdom2:jar:2.0.6.v20191125-0928:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.common:jar:3.10.600.v20191004-1420:system
+[DEBUG]    p2.eclipse-plugin:org.jaxen:jar:1.1.6.v20191106-1554:system
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ org.eclipse.app4mc.amalthea.converters.100 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\test-classes
+[DEBUG] -- end configuration --
+[INFO] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\sourcebundle-l10n-gen\OSGI-INF\l10n\bundle-src.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\sourcebundle-l10n-gen\OSGI-INF\l10n
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\sourcebundle-l10n-gen\OSGI-INF
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\sourcebundle-l10n-gen
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\p2content.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\p2artifacts.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\org.eclipse.app4mc.amalthea.converters.100-1.1.0-SNAPSHOT.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\org.eclipse.app4mc.amalthea.converters.100-1.1.0-SNAPSHOT-sources.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\maven-archiver\pom.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\maven-archiver
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\MANIFEST.MF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\local-artifacts.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\generated-sources\annotations
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\generated-sources
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\classes\org\eclipse\app4mc\amalthea\converters100\impl\MeasurementModelConverter.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\classes\org\eclipse\app4mc\amalthea\converters100\impl\EventModelConverter.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\classes\org\eclipse\app4mc\amalthea\converters100\impl
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\classes\org\eclipse\app4mc\amalthea\converters100
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\classes\org\eclipse\app4mc\amalthea
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\classes\org\eclipse\app4mc
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\classes\org\eclipse
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\classes\org
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\classes
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\site
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier) @ org.eclipse.app4mc.amalthea.converters.100 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier' with basic configurator -->
+[DEBUG]   (f) baseDir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier {execution: default-build-qualifier}
+[DEBUG]   (s) format = yyyyMMddHHmm
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] The project's OSGi version is 1.1.0.202104220626
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-id (default-validate-id) @ org.eclipse.app4mc.amalthea.converters.100 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-version (default-validate-version) @ org.eclipse.app4mc.amalthea.converters.100 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF
+[DEBUG]   (f) strictVersions = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ org.eclipse.app4mc.amalthea.converters.100 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.100.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\src\main\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\src\main\resources
+[INFO] 
+[INFO] --- tycho-compiler-plugin:2.3.0:compile (default-compile) @ org.eclipse.app4mc.amalthea.converters.100 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-compiler-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile' with basic configurator -->
+[DEBUG]   (f) basedir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target
+[DEBUG]   (f) compilerId = jdt
+[DEBUG]   (f) copyResources = true
+[DEBUG]   (f) debug = true
+[DEBUG]   (f) deriveReleaseCompilerArgumentFromTargetLevel = true
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) failOnWarning = false
+[DEBUG]   (f) fork = false
+[DEBUG]   (f) generatedSourcesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\generated-sources\annotations
+[DEBUG]   (f) logDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\compile-logs
+[DEBUG]   (f) optimize = false
+[DEBUG]   (f) outputFileName = org.eclipse.app4mc.amalthea.converters.100-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF
+[DEBUG]   (f) requireJREPackageImports = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showDeprecation = false
+[DEBUG]   (f) showWarnings = false
+[DEBUG]   (f) staleMillis = 0
+[DEBUG]   (f) strictCompilerTarget = false
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useProjectSettings = true
+[DEBUG]   (f) verbose = false
+[DEBUG] -- end configuration --
+[DEBUG] Manifest BREEs: [OSGi profile 'JavaSE-1.8' { source level: 1.8, target level: 1.8}]
+[DEBUG] Target Platform EE: OSGi profile 'JavaSE-11' { source level: 11, target level: 11}
+[DEBUG] Effective source/target: 1.8/1.8
+[DEBUG] Using compiler 'jdt'.
+[DEBUG] Source directories: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\src]
+[DEBUG] Classpath: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\classes]
+[DEBUG] Output directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\classes
+[DEBUG] Classpath:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\classes
+[DEBUG] Source roots:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\src
+[INFO] Compiling 2 source files to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\classes
+[DEBUG] JDT compiler args: [-properties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.settings\org.eclipse.jdt.core.prefs, -s, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\generated-sources\annotations, -d, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\classes, -classpath, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\classes, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\src\org\eclipse\app4mc\amalthea\converters100\impl\MeasurementModelConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\src\org\eclipse\app4mc\amalthea\converters100\impl\EventModelConverter.java, -g, -nowarn, -target, 1.8, -source, 1.8, --release, 8, -encoding, UTF-8]
+[DEBUG] Original compiler output: 
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ org.eclipse.app4mc.amalthea.converters.100 ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\test-classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\src\test\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.100.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\src\test\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\src\test\resources
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ org.eclipse.app4mc.amalthea.converters.100 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.100-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\org.eclipse.app4mc.amalthea.converters.100-1.1.0-SNAPSHOT-sources.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters100/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters100/impl/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters100/impl/EventModelConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters100/impl/MeasurementModelConverter.java
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding directory OSGI-INF/l10n/
+[DEBUG] adding entry OSGI-INF/l10n/bundle-src.properties
+[INFO] 
+[INFO] --- target-platform-configuration:2.3.0:target-platform (default-target-platform) @ org.eclipse.app4mc.amalthea.converters.100 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform from plugin realm ClassRealm[plugin>org.eclipse.tycho:target-platform-configuration:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin) @ org.eclipse.app4mc.amalthea.converters.100 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin' with basic configurator -->
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.100-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) strictBinIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\org.eclipse.app4mc.amalthea.converters.100-1.1.0-SNAPSHOT.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters100/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters100/impl/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters100/impl/EventModelConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters100/impl/MeasurementModelConverter.class
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters100.impl.EventModelConverter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters100.impl.MeasurementModelConverter.xml
+[DEBUG] adding directory META-INF/maven/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.100/
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.100/pom.xml
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.100/pom.properties
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default) @ org.eclipse.app4mc.amalthea.converters.100 ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default' with basic configurator -->
+[DEBUG]   (f) attachP2Metadata = true
+[DEBUG]   (f) baselineMode = warn
+[DEBUG]   (f) baselineReplace = none
+[DEBUG]   (f) url = https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/
+[DEBUG]   (f) baselineRepositories = [org.eclipse.tycho.plugins.p2.Repository@2239d38a]
+[DEBUG]   (f) defaultP2Metadata = true
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default {execution: default-p2-metadata-default}
+[DEBUG]   (f) generateDownloadStatsProperty = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] No baseline version MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF
+[INFO] 
+[INFO] --< org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app >--
+[INFO] Building [bundle] APP4MC Amalthea Converters Headless App 1.1.0-SNAPSHOT [19/47]
+[INFO] ---------------------------[ eclipse-plugin ]---------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): [compile]
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <baseDir>${project.basedir}</baseDir>
+  <execution>${mojoExecution}</execution>
+  <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
+  <format default-value="yyyyMMddHHmm"/>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id (default-validate-id)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version (default-validate-version)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <strictVersions default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources (default-resources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources default-value="${project.resources}"/>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile (default-compile)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <basedir>${basedir}</basedir>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <compilerId default-value="jdt">${maven.compiler.compilerId}</compilerId>
+  <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
+  <copyResources default-value="true"/>
+  <debug default-value="true">${maven.compiler.debug}</debug>
+  <deriveReleaseCompilerArgumentFromTargetLevel default-value="true"/>
+  <encoding>${project.build.sourceEncoding}</encoding>
+  <executable>${maven.compiler.executable}</executable>
+  <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
+  <fork default-value="false"/>
+  <generatedSourcesDirectory default-value="${project.build.directory}/generated-sources/annotations"/>
+  <logDirectory default-value="${project.build.directory}/compile-logs"/>
+  <mavenCompilerEncoding>${maven.compiler.encoding}</mavenCompilerEncoding>
+  <maxmem>${maven.compiler.maxmem}</maxmem>
+  <meminitial>${maven.compiler.meminitial}</meminitial>
+  <optimize default-value="false">${maven.compiler.optimize}</optimize>
+  <outputFileName>${project.build.finalName}</outputFileName>
+  <project>${project}</project>
+  <release>${maven.compiler.release}</release>
+  <requireJREPackageImports default-value="false"/>
+  <session>${session}</session>
+  <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
+  <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
+  <source>${maven.compiler.source}</source>
+  <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
+  <strictCompilerTarget default-value="false"/>
+  <target>${maven.compiler.target}</target>
+  <useJDK default-value="SYSTEM"/>
+  <useProjectSettings default-value="true"/>
+  <verbose default-value="false">${maven.compiler.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources (default-testResources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources>${project.testResources}</resources>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform (default-target-platform)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <finalName>${project.build.finalName}</finalName>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <strictBinIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attachP2Metadata default-value="true"/>
+  <baselineMode default-value="warn">${tycho.baseline}</baselineMode>
+  <baselineReplace default-value="all">none</baselineReplace>
+  <baselineRepositories>
+    <repository>
+      <url>https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/</url>
+    </repository>
+  </baselineRepositories>
+  <defaultP2Metadata default-value="true"/>
+  <execution>${mojoExecution}</execution>
+  <generateDownloadStatsProperty default-value="false">${tycho.generateDownloadStatsProperty}</generateDownloadStatsProperty>
+  <project>${project}</project>
+</configuration>
+[DEBUG] =======================================================================
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=12900, ConflictMarker.markTime=10101, ConflictMarker.nodeCount=21, ConflictIdSorter.graphTime=5599, ConflictIdSorter.topsortTime=7301, ConflictIdSorter.conflictIdCount=11, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=64599, ConflictResolver.conflictItemCount=20, DefaultDependencyCollector.collectTime=179799, DefaultDependencyCollector.transformTime=113000}
+[DEBUG] org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:eclipse-plugin:1.1.0-SNAPSHOT
+[DEBUG]    p2.eclipse-plugin:javax.annotation:jar:1.2.0.v201602091430:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi:jar:3.15.100.v20191114-1701:system
+[DEBUG]    p2.eclipse-plugin:org.apache.felix.gogo.runtime:jar:1.1.0.v20180713-1646:system
+[DEBUG]    p2.eclipse-plugin:org.apache.felix.scr:jar:2.1.14.v20190123-1619:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.services:jar:3.8.0.v20190206-2147:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.util:jar:3.5.300.v20190708-1141:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.common:jar:3.10.600.v20191004-1420:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.app4mc.util.sessionlog:jar:1.1.0.202104211257:system
+[DEBUG]    p2.eclipse-plugin:org.jdom2:jar:2.0.6.v20191125-0928:system
+[DEBUG]    p2.eclipse-plugin:org.jaxen:jar:1.1.6.v20191106-1554:system
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ org.eclipse.app4mc.amalthea.converters.headless.app ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\test-classes
+[DEBUG] -- end configuration --
+[INFO] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\sourcebundle-l10n-gen\OSGI-INF\l10n\bundle-src.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\sourcebundle-l10n-gen\OSGI-INF\l10n
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\sourcebundle-l10n-gen\OSGI-INF
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\sourcebundle-l10n-gen
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\p2content.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\p2artifacts.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\org.eclipse.app4mc.amalthea.converters.headless.app-1.1.0-SNAPSHOT.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\org.eclipse.app4mc.amalthea.converters.headless.app-1.1.0-SNAPSHOT-sources.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\maven-archiver\pom.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\maven-archiver
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\MANIFEST.MF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\local-artifacts.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\generated-sources\annotations
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\generated-sources
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\classes\org\eclipse\app4mc\amalthea\converters\headless\app\ModelMigrationCommand.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\classes\org\eclipse\app4mc\amalthea\converters\headless\app\EquinoxMigrationStarter.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\classes\org\eclipse\app4mc\amalthea\converters\headless\app\BndMigrationStarter.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\classes\org\eclipse\app4mc\amalthea\converters\headless\app\AbstractMigrationStarter.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\classes\org\eclipse\app4mc\amalthea\converters\headless\app
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\classes\org\eclipse\app4mc\amalthea\converters\headless
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\classes\org\eclipse\app4mc\amalthea\converters
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\classes\org\eclipse\app4mc\amalthea
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\classes\org\eclipse\app4mc
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\classes\org\eclipse
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\classes\org
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\classes
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\site
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier) @ org.eclipse.app4mc.amalthea.converters.headless.app ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier' with basic configurator -->
+[DEBUG]   (f) baseDir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier {execution: default-build-qualifier}
+[DEBUG]   (s) format = yyyyMMddHHmm
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] The project's OSGi version is 1.1.0.202104220626
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-id (default-validate-id) @ org.eclipse.app4mc.amalthea.converters.headless.app ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-version (default-validate-version) @ org.eclipse.app4mc.amalthea.converters.headless.app ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF
+[DEBUG]   (f) strictVersions = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ org.eclipse.app4mc.amalthea.converters.headless.app ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.headless.app.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\src\main\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\src\main\resources
+[INFO] 
+[INFO] --- tycho-compiler-plugin:2.3.0:compile (default-compile) @ org.eclipse.app4mc.amalthea.converters.headless.app ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-compiler-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile' with basic configurator -->
+[DEBUG]   (f) basedir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target
+[DEBUG]   (f) compilerId = jdt
+[DEBUG]   (f) copyResources = true
+[DEBUG]   (f) debug = true
+[DEBUG]   (f) deriveReleaseCompilerArgumentFromTargetLevel = true
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) failOnWarning = false
+[DEBUG]   (f) fork = false
+[DEBUG]   (f) generatedSourcesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\generated-sources\annotations
+[DEBUG]   (f) logDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\compile-logs
+[DEBUG]   (f) optimize = false
+[DEBUG]   (f) outputFileName = org.eclipse.app4mc.amalthea.converters.headless.app-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF
+[DEBUG]   (f) requireJREPackageImports = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showDeprecation = false
+[DEBUG]   (f) showWarnings = false
+[DEBUG]   (f) staleMillis = 0
+[DEBUG]   (f) strictCompilerTarget = false
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useProjectSettings = true
+[DEBUG]   (f) verbose = false
+[DEBUG] -- end configuration --
+[DEBUG] Manifest BREEs: [OSGi profile 'JavaSE-1.8' { source level: 1.8, target level: 1.8}]
+[DEBUG] Target Platform EE: OSGi profile 'JavaSE-11' { source level: 11, target level: 11}
+[DEBUG] Effective source/target: 1.8/1.8
+[DEBUG] Using compiler 'jdt'.
+[DEBUG] Source directories: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\src]
+[DEBUG] Classpath: [C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.common\3.10.600.v20191004-1420\org.eclipse.equinox.common-3.10.600.v20191004-1420.jar[~org/eclipse/core/internal/boot/*;~org/eclipse/core/internal/runtime/*;+org/eclipse/core/runtime/*;+org/eclipse/equinox/events/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.apache.felix.gogo.runtime\1.1.0.v20180713-1646\org.apache.felix.gogo.runtime-1.1.0.v20180713-1646.jar[+org/apache/felix/gogo/runtime/*;+org/apache/felix/gogo/runtime/activator/*;+org/apache/felix/gogo/runtime/threadio/*;+org/apache/felix/service/command/*;+org/apache/felix/service/threadio/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi\3.15.100.v20191114-1701\org.eclipse.osgi-3.15.100.v20191114-1701.jar[+org/eclipse/osgi/service/environment/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/*;+org/osgi/service/component/annotations/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\classes]
+[DEBUG] Output directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\classes
+[DEBUG] Classpath:
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.common\3.10.600.v20191004-1420\org.eclipse.equinox.common-3.10.600.v20191004-1420.jar[~org/eclipse/core/internal/boot/*;~org/eclipse/core/internal/runtime/*;+org/eclipse/core/runtime/*;+org/eclipse/equinox/events/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.apache.felix.gogo.runtime\1.1.0.v20180713-1646\org.apache.felix.gogo.runtime-1.1.0.v20180713-1646.jar[+org/apache/felix/gogo/runtime/*;+org/apache/felix/gogo/runtime/activator/*;+org/apache/felix/gogo/runtime/threadio/*;+org/apache/felix/service/command/*;+org/apache/felix/service/threadio/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi\3.15.100.v20191114-1701\org.eclipse.osgi-3.15.100.v20191114-1701.jar[+org/eclipse/osgi/service/environment/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/*;+org/osgi/service/component/annotations/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\classes
+[DEBUG] Source roots:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\src
+[INFO] Compiling 4 source files to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\classes
+[DEBUG] JDT compiler args: [-properties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.settings\org.eclipse.jdt.core.prefs, -s, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\generated-sources\annotations, -d, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\classes, -classpath, C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.common\3.10.600.v20191004-1420\org.eclipse.equinox.common-3.10.600.v20191004-1420.jar[~org/eclipse/core/internal/boot/*;~org/eclipse/core/internal/runtime/*;+org/eclipse/core/runtime/*;+org/eclipse/equinox/events/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.apache.felix.gogo.runtime\1.1.0.v20180713-1646\org.apache.felix.gogo.runtime-1.1.0.v20180713-1646.jar[+org/apache/felix/gogo/runtime/*;+org/apache/felix/gogo/runtime/activator/*;+org/apache/felix/gogo/runtime/threadio/*;+org/apache/felix/service/command/*;+org/apache/felix/service/threadio/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi\3.15.100.v20191114-1701\org.eclipse.osgi-3.15.100.v20191114-1701.jar[+org/eclipse/osgi/service/environment/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/*;+org/osgi/service/component/annotations/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\classes, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\src\org\eclipse\app4mc\amalthea\converters\headless\app\BndMigrationStarter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\src\org\eclipse\app4mc\amalthea\converters\headless\app\AbstractMigrationStarter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\src\org\eclipse\app4mc\amalthea\converters\headless\app\EquinoxMigrationStarter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\src\org\eclipse\app4mc\amalthea\converters\headless\app\ModelMigrationCommand.java, -g, -nowarn, -target, 1.8, -source, 1.8, --release, 8, -encoding, UTF-8]
+[DEBUG] Original compiler output: 
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ org.eclipse.app4mc.amalthea.converters.headless.app ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\test-classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\src\test\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.headless.app.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\src\test\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\src\test\resources
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ org.eclipse.app4mc.amalthea.converters.headless.app ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.headless.app-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\org.eclipse.app4mc.amalthea.converters.headless.app-1.1.0-SNAPSHOT-sources.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters/headless/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters/headless/app/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/headless/app/AbstractMigrationStarter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/headless/app/BndMigrationStarter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/headless/app/EquinoxMigrationStarter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/headless/app/ModelMigrationCommand.java
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding directory OSGI-INF/l10n/
+[DEBUG] adding entry OSGI-INF/l10n/bundle-src.properties
+[INFO] 
+[INFO] --- target-platform-configuration:2.3.0:target-platform (default-target-platform) @ org.eclipse.app4mc.amalthea.converters.headless.app ---
+[DEBUG] Configuring mojo org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform from plugin realm ClassRealm[plugin>org.eclipse.tycho:target-platform-configuration:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin) @ org.eclipse.app4mc.amalthea.converters.headless.app ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin' with basic configurator -->
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.headless.app-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) strictBinIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\target\org.eclipse.app4mc.amalthea.converters.headless.app-1.1.0-SNAPSHOT.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters/headless/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters/headless/app/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/headless/app/AbstractMigrationStarter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/headless/app/BndMigrationStarter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/headless/app/EquinoxMigrationStarter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/headless/app/ModelMigrationCommand.class
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters.headless.app.BndMigrationStarter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters.headless.app.EquinoxMigrationStarter.xml
+[DEBUG] adding entry OSGI-INF/org.eclipse.app4mc.amalthea.converters.headless.app.ModelMigrationCommand.xml
+[DEBUG] adding directory META-INF/maven/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.headless.app/
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.headless.app/pom.xml
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.headless.app/pom.properties
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default) @ org.eclipse.app4mc.amalthea.converters.headless.app ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default' with basic configurator -->
+[DEBUG]   (f) attachP2Metadata = true
+[DEBUG]   (f) baselineMode = warn
+[DEBUG]   (f) baselineReplace = none
+[DEBUG]   (f) url = https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/
+[DEBUG]   (f) baselineRepositories = [org.eclipse.tycho.plugins.p2.Repository@5d2ee1cc]
+[DEBUG]   (f) defaultP2Metadata = true
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default {execution: default-p2-metadata-default}
+[DEBUG]   (f) generateDownloadStatsProperty = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] No baseline version MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF
+[INFO] 
+[INFO] --< org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help >--
+[INFO] Building org.eclipse.app4mc.amalthea.converters.help 1.1.0-SNAPSHOT [20/47]
+[INFO] ---------------------------[ eclipse-plugin ]---------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): [compile, test]
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <baseDir>${project.basedir}</baseDir>
+  <execution>${mojoExecution}</execution>
+  <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
+  <format default-value="yyyyMMddHHmm"/>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id (default-validate-id)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version (default-validate-version)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <strictVersions default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-antrun-plugin:1.7:run (replace-build-token)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <exportAntProperties default-value="false"/>
+  <failOnError default-value="true"/>
+  <localRepository>${localRepository}</localRepository>
+  <pluginArtifacts>${plugin.artifacts}</pluginArtifacts>
+  <project>${project}</project>
+  <skip default-value="false">${maven.antrun.skip}</skip>
+  <sourceRoot>${sourceRoot}</sourceRoot>
+  <target>
+    <ant antfile="build-help.ant"/>
+  </target>
+  <testSourceRoot>${testSourceRoot}</testSourceRoot>
+  <versionsPropertyName default-value="maven.project.dependencies.versions"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources (default-resources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources default-value="${project.resources}"/>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile (default-compile)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <basedir>${basedir}</basedir>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <compilerId default-value="jdt">${maven.compiler.compilerId}</compilerId>
+  <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
+  <copyResources default-value="true"/>
+  <debug default-value="true">${maven.compiler.debug}</debug>
+  <deriveReleaseCompilerArgumentFromTargetLevel default-value="true"/>
+  <encoding>${project.build.sourceEncoding}</encoding>
+  <executable>${maven.compiler.executable}</executable>
+  <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
+  <fork default-value="false"/>
+  <generatedSourcesDirectory default-value="${project.build.directory}/generated-sources/annotations"/>
+  <logDirectory default-value="${project.build.directory}/compile-logs"/>
+  <mavenCompilerEncoding>${maven.compiler.encoding}</mavenCompilerEncoding>
+  <maxmem>${maven.compiler.maxmem}</maxmem>
+  <meminitial>${maven.compiler.meminitial}</meminitial>
+  <optimize default-value="false">${maven.compiler.optimize}</optimize>
+  <outputFileName>${project.build.finalName}</outputFileName>
+  <project>${project}</project>
+  <release>${maven.compiler.release}</release>
+  <requireJREPackageImports default-value="false"/>
+  <session>${session}</session>
+  <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
+  <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
+  <source>${maven.compiler.source}</source>
+  <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
+  <strictCompilerTarget default-value="false"/>
+  <target>${maven.compiler.target}</target>
+  <useJDK default-value="SYSTEM"/>
+  <useProjectSettings default-value="true"/>
+  <verbose default-value="false">${maven.compiler.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources (default-testResources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources>${project.testResources}</resources>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform (default-target-platform)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <finalName>${project.build.finalName}</finalName>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <strictBinIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attachP2Metadata default-value="true"/>
+  <baselineMode default-value="warn">${tycho.baseline}</baselineMode>
+  <baselineReplace default-value="all">none</baselineReplace>
+  <baselineRepositories>
+    <repository>
+      <url>https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/</url>
+    </repository>
+  </baselineRepositories>
+  <defaultP2Metadata default-value="true"/>
+  <execution>${mojoExecution}</execution>
+  <generateDownloadStatsProperty default-value="false">${tycho.generateDownloadStatsProperty}</generateDownloadStatsProperty>
+  <project>${project}</project>
+</configuration>
+[DEBUG] =======================================================================
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=15001, ConflictMarker.markTime=14500, ConflictMarker.nodeCount=13, ConflictIdSorter.graphTime=5600, ConflictIdSorter.topsortTime=13500, ConflictIdSorter.conflictIdCount=12, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=83300, ConflictResolver.conflictItemCount=12, DefaultDependencyCollector.collectTime=207200, DefaultDependencyCollector.transformTime=152000}
+[DEBUG] org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:eclipse-plugin:1.1.0-SNAPSHOT
+[DEBUG]    p2.eclipse-plugin:com.ibm.icu:jar:64.2.0.v20190507-1337:system
+[DEBUG]    p2.eclipse-plugin:javax.annotation:jar:1.2.0.v201602091430:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi:jar:3.15.100.v20191114-1701:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.help:jar:3.8.600.v20191123-0656:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.contenttype:jar:3.7.500.v20190916-2125:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.preferences:jar:3.7.600.v20191017-2055:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.registry:jar:3.8.600.v20191017-2055:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.common:jar:3.10.600.v20191004-1420:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.expressions:jar:3.6.600.v20191122-2104:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.runtime:jar:3.17.0.v20191122-2104:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.jobs:jar:3.10.600.v20191122-2104:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.app:jar:1.4.300.v20190815-1535:system
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ org.eclipse.app4mc.amalthea.converters.help ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\target\test-classes
+[DEBUG] -- end configuration --
+[INFO] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\target
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\target\p2content.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\target\p2artifacts.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\target\org.eclipse.app4mc.amalthea.converters.help-1.1.0-SNAPSHOT.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\target\maven-archiver\pom.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\target\maven-archiver
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\target\MANIFEST.MF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\target\local-artifacts.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\target\antrun\build-main.xml
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\target\antrun
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\target\site
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier) @ org.eclipse.app4mc.amalthea.converters.help ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier' with basic configurator -->
+[DEBUG]   (f) baseDir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier {execution: default-build-qualifier}
+[DEBUG]   (s) format = yyyyMMddHHmm
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] The project's OSGi version is 1.1.0.202104220626
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-id (default-validate-id) @ org.eclipse.app4mc.amalthea.converters.help ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-version (default-validate-version) @ org.eclipse.app4mc.amalthea.converters.help ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml
+[DEBUG]   (f) strictVersions = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- maven-antrun-plugin:1.7:run (replace-build-token) @ org.eclipse.app4mc.amalthea.converters.help ---
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=27301, ConflictMarker.markTime=15300, ConflictMarker.nodeCount=35, ConflictIdSorter.graphTime=14100, ConflictIdSorter.topsortTime=12400, ConflictIdSorter.conflictIdCount=17, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=96300, ConflictResolver.conflictItemCount=35, DefaultDependencyCollector.collectTime=46592301, DefaultDependencyCollector.transformTime=199500}
+[DEBUG] org.apache.maven.plugins:maven-antrun-plugin:jar:1.7
+[DEBUG]    org.apache.maven:maven-plugin-api:jar:2.0.11:compile
+[DEBUG]    org.apache.maven:maven-project:jar:2.0.11:compile
+[DEBUG]       org.apache.maven:maven-settings:jar:2.0.11:compile
+[DEBUG]       org.apache.maven:maven-profile:jar:2.0.11:compile
+[DEBUG]       org.apache.maven:maven-model:jar:2.0.11:compile
+[DEBUG]       org.apache.maven:maven-artifact-manager:jar:2.0.11:compile
+[DEBUG]          org.apache.maven:maven-repository-metadata:jar:2.0.11:compile
+[DEBUG]       org.apache.maven:maven-plugin-registry:jar:2.0.11:compile
+[DEBUG]       org.codehaus.plexus:plexus-interpolation:jar:1.1:compile
+[DEBUG]       org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile
+[DEBUG]          junit:junit:jar:3.8.1:compile
+[DEBUG]          classworlds:classworlds:jar:1.1-alpha-2:compile
+[DEBUG]    org.apache.maven:maven-artifact:jar:2.0.11:compile
+[DEBUG]    org.codehaus.plexus:plexus-utils:jar:2.0.5:compile
+[DEBUG]    org.apache.ant:ant:jar:1.8.2:compile
+[DEBUG]       org.apache.ant:ant-launcher:jar:1.8.2:compile
+[DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-antrun-plugin:1.7
+[DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-antrun-plugin:1.7
+[DEBUG]   Imported:  < project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT
+[DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-antrun-plugin:1.7
+[DEBUG]   Included: org.apache.maven.plugins:maven-antrun-plugin:jar:1.7
+[DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.1
+[DEBUG]   Included: junit:junit:jar:3.8.1
+[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:2.0.5
+[DEBUG]   Included: org.apache.ant:ant:jar:1.8.2
+[DEBUG]   Included: org.apache.ant:ant-launcher:jar:1.8.2
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-antrun-plugin:1.7:run from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-antrun-plugin:1.7, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-antrun-plugin:1.7:run' with basic configurator -->
+[DEBUG]   (f) exportAntProperties = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) localRepository =       id: local
+      url: file:///C:/Users/fad8pl/.m2/repository/
+   layout: default
+snapshots: [enabled => true, update => always]
+ releases: [enabled => true, update => always]
+
+[DEBUG]   (f) pluginArtifacts = [org.apache.maven.plugins:maven-antrun-plugin:maven-plugin:1.7:, org.apache.maven:maven-plugin-api:jar:2.0.11:compile, org.apache.maven:maven-project:jar:2.0.11:compile, org.apache.maven:maven-settings:jar:2.0.11:compile, org.apache.maven:maven-profile:jar:2.0.11:compile, org.apache.maven:maven-model:jar:2.0.11:compile, org.apache.maven:maven-artifact-manager:jar:2.0.11:compile, org.apache.maven:maven-repository-metadata:jar:2.0.11:compile, org.apache.maven:maven-plugin-registry:jar:2.0.11:compile, org.codehaus.plexus:plexus-interpolation:jar:1.1:compile, org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile, junit:junit:jar:3.8.1:compile, classworlds:classworlds:jar:1.1-alpha-2:compile, org.apache.maven:maven-artifact:jar:2.0.11:compile, org.codehaus.plexus:plexus-utils:jar:2.0.5:compile, org.apache.ant:ant:jar:1.8.2:compile, org.apache.ant:ant-launcher:jar:1.8.2:compile]
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) target = <target><ant antfile="build-help.ant"/>
+</target>
+
+[DEBUG]   (f) versionsPropertyName = maven.project.dependencies.versions
+[DEBUG] -- end configuration --
+Project base dir set to: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help
+Adding reference: maven.dependency.classpath
+Adding reference: maven.compile.classpath
+Adding reference: maven.runtime.classpath
+Adding reference: maven.test.classpath
+Adding reference: maven.plugin.classpath
+Adding reference: maven.project
+Adding reference: maven.project.helper
+Adding reference: maven.local.repository
+[DEBUG] Initialize Maven Ant Tasks
+parsing buildfile jar:file:/C:/Users/fad8pl/.m2/repository/org/apache/maven/plugins/maven-antrun-plugin/1.7/maven-antrun-plugin-1.7.jar!/org/apache/maven/ant/tasks/antlib.xml with URI = jar:file:/C:/Users/fad8pl/.m2/repository/org/apache/maven/plugins/maven-antrun-plugin/1.7/maven-antrun-plugin-1.7.jar!/org/apache/maven/ant/tasks/antlib.xml from a zip file
+parsing buildfile jar:file:/C:/Users/fad8pl/.m2/repository/org/apache/ant/ant/1.8.2/ant-1.8.2.jar!/org/apache/tools/ant/antlib.xml with URI = jar:file:/C:/Users/fad8pl/.m2/repository/org/apache/ant/ant/1.8.2/ant-1.8.2.jar!/org/apache/tools/ant/antlib.xml from a zip file
+Class org.apache.maven.ant.tasks.AttachArtifactTask loaded from parent loader (parentFirst)
+ +Datatype attachartifact org.apache.maven.ant.tasks.AttachArtifactTask
+Class org.apache.maven.ant.tasks.DependencyFilesetsTask loaded from parent loader (parentFirst)
+ +Datatype dependencyfilesets org.apache.maven.ant.tasks.DependencyFilesetsTask
+Setting project property: sonar.cpd.exclusions -> **/*.tests/**/*.java
+Setting project property: app4mc.version -> 1.1.0-SNAPSHOT
+Setting project property: qualifiedVersion -> 1.1.0.202104220626
+Setting project property: tycho.env.osgi.arch -> x86_64
+Setting project property: sonar.java.source -> 8
+Setting project property: org.jboss.tools.tycho-plugins.version -> 2.2.0
+Setting project property: tycho.env.osgi.ws -> win32
+Setting project property: jacoco.version -> 0.8.5
+Setting project property: tychoProject.build.outputDirectories -> 
+Setting project property: project.reporting.outputEncoding -> UTF-8
+Setting project property: tycho.env.osgi.os -> win32
+Setting project property: maven.build.timestamp.format -> yyyyMMdd-HHmmss
+Setting project property: unqualifiedVersion -> 1.1.0
+Setting project property: project.build.sourceEncoding -> UTF-8
+Setting project property: tycho.version -> 2.3.0
+Setting project property: sonar.coverage.jacoco.xmlReportPaths -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml
+Setting project property: buildQualifier -> 202104220626
+Setting project property: app4mc.baseline -> 1.0.0
+Setting project property: build-helper.version -> 1.9.1
+Setting project property: sonar.surefire.reportsPath -> ../../tests/org.eclipse.app4mc.amalthea.converters.help.tests/target/surefire-reports/
+Setting project property: sonar.coverage.exclusions -> **/*.tests/**/*.java
+Setting project property: ant.file -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml
+[DEBUG] Setting properties with prefix: 
+Setting project property: project.groupId -> org.eclipse.app4mc.migration
+Setting project property: project.artifactId -> org.eclipse.app4mc.amalthea.converters.help
+Setting project property: project.name -> org.eclipse.app4mc.amalthea.converters.help
+Setting project property: project.version -> 1.1.0-SNAPSHOT
+Setting project property: project.packaging -> eclipse-plugin
+Setting project property: project.build.directory -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\target
+Setting project property: project.build.outputDirectory -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\target\classes
+Setting project property: project.build.testOutputDirectory -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\target\test-classes
+Setting project property: project.build.sourceDirectory -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\src\main\java
+Setting project property: project.build.testSourceDirectory -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\src\test\java
+Setting project property: localRepository ->       id: local
+      url: file:///C:/Users/fad8pl/.m2/repository/
+   layout: default
+snapshots: [enabled => true, update => always]
+ releases: [enabled => true, update => always]
+
+Setting project property: settings.localRepository -> C:\Users\fad8pl\.m2\repository
+Setting project property: p2.eclipse-plugin:com.ibm.icu:jar -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\com.ibm.icu\64.2.0.v20190507-1337\com.ibm.icu-64.2.0.v20190507-1337.jar
+Setting project property: p2.eclipse-plugin:javax.annotation:jar -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\javax.annotation\1.2.0.v201602091430\javax.annotation-1.2.0.v201602091430.jar
+Setting project property: p2.eclipse-plugin:org.eclipse.osgi:jar -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi\3.15.100.v20191114-1701\org.eclipse.osgi-3.15.100.v20191114-1701.jar
+Setting project property: p2.eclipse-plugin:org.eclipse.help:jar -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.help\3.8.600.v20191123-0656\org.eclipse.help-3.8.600.v20191123-0656.jar
+Setting project property: p2.eclipse-plugin:org.eclipse.core.contenttype:jar -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.contenttype\3.7.500.v20190916-2125\org.eclipse.core.contenttype-3.7.500.v20190916-2125.jar
+Setting project property: p2.eclipse-plugin:org.eclipse.equinox.preferences:jar -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.preferences\3.7.600.v20191017-2055\org.eclipse.equinox.preferences-3.7.600.v20191017-2055.jar
+Setting project property: p2.eclipse-plugin:org.eclipse.equinox.registry:jar -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.registry\3.8.600.v20191017-2055\org.eclipse.equinox.registry-3.8.600.v20191017-2055.jar
+Setting project property: p2.eclipse-plugin:org.eclipse.equinox.common:jar -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.common\3.10.600.v20191004-1420\org.eclipse.equinox.common-3.10.600.v20191004-1420.jar
+Setting project property: p2.eclipse-plugin:org.eclipse.core.expressions:jar -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.expressions\3.6.600.v20191122-2104\org.eclipse.core.expressions-3.6.600.v20191122-2104.jar
+Setting project property: p2.eclipse-plugin:org.eclipse.core.runtime:jar -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.runtime\3.17.0.v20191122-2104\org.eclipse.core.runtime-3.17.0.v20191122-2104.jar
+Setting project property: p2.eclipse-plugin:org.eclipse.core.jobs:jar -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.jobs\3.10.600.v20191122-2104\org.eclipse.core.jobs-3.10.600.v20191122-2104.jar
+Setting project property: p2.eclipse-plugin:org.eclipse.equinox.app:jar -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.app\1.4.300.v20190815-1535\org.eclipse.equinox.app-1.4.300.v20190815-1535.jar
+Setting project property: maven.project.dependencies.versions -> 64.2.0.v20190507-1337;1.2.0.v201602091430;3.15.100.v20191114-1701;3.8.600.v20191123-0656;3.7.500.v20190916-2125;3.7.600.v20191017-2055;3.8.600.v20191017-2055;3.10.600.v20191004-1420;3.6.600.v20191122-2104;3.17.0.v20191122-2104;3.10.600.v20191122-2104;1.4.300.v20190815-1535;
+Setting project property: maven.dependency.p2.eclipse-plugin.com.ibm.icu.jar.path -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\com.ibm.icu\64.2.0.v20190507-1337\com.ibm.icu-64.2.0.v20190507-1337.jar
+Setting project property: maven.dependency.p2.eclipse-plugin.javax.annotation.jar.path -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\javax.annotation\1.2.0.v201602091430\javax.annotation-1.2.0.v201602091430.jar
+Setting project property: maven.dependency.p2.eclipse-plugin.org.eclipse.osgi.jar.path -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi\3.15.100.v20191114-1701\org.eclipse.osgi-3.15.100.v20191114-1701.jar
+Setting project property: maven.dependency.p2.eclipse-plugin.org.eclipse.help.jar.path -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.help\3.8.600.v20191123-0656\org.eclipse.help-3.8.600.v20191123-0656.jar
+Setting project property: maven.dependency.p2.eclipse-plugin.org.eclipse.core.contenttype.jar.path -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.contenttype\3.7.500.v20190916-2125\org.eclipse.core.contenttype-3.7.500.v20190916-2125.jar
+Setting project property: maven.dependency.p2.eclipse-plugin.org.eclipse.equinox.preferences.jar.path -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.preferences\3.7.600.v20191017-2055\org.eclipse.equinox.preferences-3.7.600.v20191017-2055.jar
+Setting project property: maven.dependency.p2.eclipse-plugin.org.eclipse.equinox.registry.jar.path -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.registry\3.8.600.v20191017-2055\org.eclipse.equinox.registry-3.8.600.v20191017-2055.jar
+Setting project property: maven.dependency.p2.eclipse-plugin.org.eclipse.equinox.common.jar.path -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.common\3.10.600.v20191004-1420\org.eclipse.equinox.common-3.10.600.v20191004-1420.jar
+Setting project property: maven.dependency.p2.eclipse-plugin.org.eclipse.core.expressions.jar.path -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.expressions\3.6.600.v20191122-2104\org.eclipse.core.expressions-3.6.600.v20191122-2104.jar
+Setting project property: maven.dependency.p2.eclipse-plugin.org.eclipse.core.runtime.jar.path -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.runtime\3.17.0.v20191122-2104\org.eclipse.core.runtime-3.17.0.v20191122-2104.jar
+Setting project property: maven.dependency.p2.eclipse-plugin.org.eclipse.core.jobs.jar.path -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.jobs\3.10.600.v20191122-2104\org.eclipse.core.jobs-3.10.600.v20191122-2104.jar
+Setting project property: maven.dependency.p2.eclipse-plugin.org.eclipse.equinox.app.jar.path -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.app\1.4.300.v20190815-1535\org.eclipse.equinox.app-1.4.300.v20190815-1535.jar
+[INFO] Executing tasks
+Build sequence for target(s) `main' is [main]
+Complete build sequence is [main, ]
+
+main:
+Attempting to create object of type org.apache.tools.ant.helper.DefaultExecutor
+Adding reference: ant.executor
+Setting ro project property: ant.project.default-target -> main
+Setting ro project property: ant.project.name -> maven-antrun-
+Setting ro project property: ant.file.maven-antrun- -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\target\antrun\build-main.xml
+Setting ro project property: ant.file.type.maven-antrun- -> file
+Setting project property: p2.eclipse-plugin:org.eclipse.equinox.app:jar -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.app\1.4.300.v20190815-1535\org.eclipse.equinox.app-1.4.300.v20190815-1535.jar
+Setting project property: project.version -> 1.1.0-SNAPSHOT
+Setting project property: java.library.path -> C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;.
+Setting project property: app4mc.baseline -> 1.0.0
+Setting project property: project.groupId -> org.eclipse.app4mc.migration
+Setting project property: user.home -> C:\Users\fad8pl
+Setting project property: sonar.surefire.reportsPath -> ../../tests/org.eclipse.app4mc.amalthea.converters.help.tests/target/surefire-reports/
+Setting project property: os.version -> 10.0
+Setting project property: sun.io.unicode.encoding -> UnicodeLittle
+Setting project property: p2.eclipse-plugin:org.eclipse.osgi:jar -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi\3.15.100.v20191114-1701\org.eclipse.osgi-3.15.100.v20191114-1701.jar
+Setting project property: user.name -> fad8pl
+Setting project property: java.vendor.url -> https://adoptopenjdk.net/
+Setting project property: maven.dependency.p2.eclipse-plugin.com.ibm.icu.jar.path -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\com.ibm.icu\64.2.0.v20190507-1337\com.ibm.icu-64.2.0.v20190507-1337.jar
+Setting project property: java.runtime.version -> 11.0.9.1+1
+Setting project property: project.name -> org.eclipse.app4mc.amalthea.converters.help
+Setting project property: user.script -> 
+Setting project property: sun.os.patch.level -> 
+Setting project property: sonar.coverage.jacoco.xmlReportPaths -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml
+Setting project property: app4mc.version -> 1.1.0-SNAPSHOT
+Setting project property: sun.java.command -> org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt
+Setting project property: tycho.env.osgi.arch -> x86_64
+Setting project property: project.build.sourceEncoding -> UTF-8
+Setting project property: line.separator -> 
+Setting project property: project.build.directory -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\target
+Setting project property: java.version.date -> 2020-11-04
+Setting project property: maven.dependency.p2.eclipse-plugin.org.eclipse.equinox.common.jar.path -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.common\3.10.600.v20191004-1420\org.eclipse.equinox.common-3.10.600.v20191004-1420.jar
+Setting project property: java.vm.info -> mixed mode
+Setting project property: https.proxyHost -> localhost
+Setting project property: systemProxySet -> false
+Setting project property: build-helper.version -> 1.9.1
+Setting project property: jacoco.version -> 0.8.5
+Setting project property: jdk.debug -> release
+Setting project property: user.variant -> 
+Setting project property: java.specification.version -> 11
+Setting project property: file.separator -> \
+Setting project property: http.proxyHost -> localhost
+Setting project property: java.vm.specification.vendor -> Oracle Corporation
+Setting project property: user.country -> US
+Setting project property: maven.multiModuleProjectDirectory -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration
+Setting project property: sun.jnu.encoding -> Cp1252
+Setting project property: sun.arch.data.model -> 64
+Setting project property: sun.cpu.endian -> little
+Setting project property: user.dir -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration
+Setting project property: p2.eclipse-plugin:org.eclipse.equinox.registry:jar -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.registry\3.8.600.v20191017-2055\org.eclipse.equinox.registry-3.8.600.v20191017-2055.jar
+Setting project property: https.nonProxyHosts -> localhost|127.0.0.1
+Setting project property: ant.version -> Apache Ant(TM) version 1.8.2 compiled on December 20 2010
+Setting project property: localRepository ->       id: local
+      url: file:///C:/Users/fad8pl/.m2/repository/
+   layout: default
+snapshots: [enabled => true, update => always]
+ releases: [enabled => true, update => always]
+
+Setting project property: os.name -> Windows 10
+Setting project property: http.proxySet -> true
+Setting project property: p2.userAgent -> tycho/2.3.0
+Setting project property: maven.home -> C:\Development\Maven\apache-maven-3.6.3\bin\..
+Setting project property: maven.build.timestamp.format -> yyyyMMdd-HHmmss
+Setting project property: eclipse.p2.atomic.composite.loading.default -> true
+Setting project property: org.jboss.tools.tycho-plugins.version -> 2.2.0
+Setting project property: maven.dependency.p2.eclipse-plugin.javax.annotation.jar.path -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\javax.annotation\1.2.0.v201602091430\javax.annotation-1.2.0.v201602091430.jar
+Setting project property: java.version -> 11.0.9.1
+Setting project property: java.vm.specification.version -> 11
+Setting project property: sun.management.compiler -> HotSpot 64-Bit Tiered Compilers
+Setting project property: java.vm.specification.name -> Java Virtual Machine Specification
+Setting project property: maven.project.dependencies.versions -> 64.2.0.v20190507-1337;1.2.0.v201602091430;3.15.100.v20191114-1701;3.8.600.v20191123-0656;3.7.500.v20190916-2125;3.7.600.v20191017-2055;3.8.600.v20191017-2055;3.10.600.v20191004-1420;3.6.600.v20191122-2104;3.17.0.v20191122-2104;3.10.600.v20191122-2104;1.4.300.v20190815-1535;
+Setting project property: user.language -> en
+Setting project property: project.build.testOutputDirectory -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\target\test-classes
+Setting project property: https.proxyPort -> 3128
+Setting project property: java.vendor.url.bug -> https://github.com/AdoptOpenJDK/openjdk-support/issues
+Setting project property: java.awt.printerjob -> sun.awt.windows.WPrinterJob
+Setting project property: java.vendor -> AdoptOpenJDK
+Setting project property: path.separator -> ;
+Setting project property: sonar.java.source -> 8
+Setting project property: proxySet -> true
+Setting project property: os.arch -> amd64
+Setting project property: http.proxyPort -> 3128
+Setting project property: qualifiedVersion -> 1.1.0.202104220626
+Setting project property: maven.dependency.p2.eclipse-plugin.org.eclipse.equinox.preferences.jar.path -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.preferences\3.7.600.v20191017-2055\org.eclipse.equinox.preferences-3.7.600.v20191017-2055.jar
+Setting project property: project.build.outputDirectory -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\target\classes
+Setting project property: maven.dependency.p2.eclipse-plugin.org.eclipse.osgi.jar.path -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi\3.15.100.v20191114-1701\org.eclipse.osgi-3.15.100.v20191114-1701.jar
+Setting project property: java.specification.name -> Java Platform API Specification
+Setting project property: java.vendor.version -> AdoptOpenJDK
+Setting project property: project.artifactId -> org.eclipse.app4mc.amalthea.converters.help
+Setting project property: library.jansi.path -> C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native
+Setting project property: p2.eclipse-plugin:org.eclipse.equinox.common:jar -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.common\3.10.600.v20191004-1420\org.eclipse.equinox.common-3.10.600.v20191004-1420.jar
+Setting project property: tycho.version -> 2.3.0
+Setting project property: p2.eclipse-plugin:com.ibm.icu:jar -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\com.ibm.icu\64.2.0.v20190507-1337\com.ibm.icu-64.2.0.v20190507-1337.jar
+Setting project property: tycho.env.osgi.os -> win32
+Setting project property: user.timezone -> Europe/Berlin
+Setting project property: sun.cpu.isalist -> amd64
+Setting project property: project.build.testSourceDirectory -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\src\test\java
+Setting project property: settings.localRepository -> C:\Users\fad8pl\.m2\repository
+Setting project property: http.nonProxyHosts -> localhost|127.0.0.1
+Setting project property: maven.dependency.p2.eclipse-plugin.org.eclipse.equinox.registry.jar.path -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.registry\3.8.600.v20191017-2055\org.eclipse.equinox.registry-3.8.600.v20191017-2055.jar
+Setting project property: sonar.cpd.exclusions -> **/*.tests/**/*.java
+Setting project property: guice.disable.misplaced.annotation.check -> true
+Setting project property: p2.eclipse-plugin:org.eclipse.equinox.preferences:jar -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.preferences\3.7.600.v20191017-2055\org.eclipse.equinox.preferences-3.7.600.v20191017-2055.jar
+Setting project property: p2.eclipse-plugin:org.eclipse.core.runtime:jar -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.runtime\3.17.0.v20191122-2104\org.eclipse.core.runtime-3.17.0.v20191122-2104.jar
+Setting project property: project.build.sourceDirectory -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\src\main\java
+Setting project property: p2.eclipse-plugin:org.eclipse.core.expressions:jar -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.expressions\3.6.600.v20191122-2104\org.eclipse.core.expressions-3.6.600.v20191122-2104.jar
+Setting project property: maven.dependency.p2.eclipse-plugin.org.eclipse.core.runtime.jar.path -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.runtime\3.17.0.v20191122-2104\org.eclipse.core.runtime-3.17.0.v20191122-2104.jar
+Setting project property: maven.dependency.p2.eclipse-plugin.org.eclipse.core.expressions.jar.path -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.expressions\3.6.600.v20191122-2104\org.eclipse.core.expressions-3.6.600.v20191122-2104.jar
+Setting project property: file.encoding -> Cp1252
+Setting project property: sun.stderr.encoding -> cp437
+Setting project property: classworlds.conf -> C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf
+Setting project property: tycho.env.osgi.ws -> win32
+Setting project property: sun.desktop -> windows
+Setting project property: maven.dependency.p2.eclipse-plugin.org.eclipse.equinox.app.jar.path -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.app\1.4.300.v20190815-1535\org.eclipse.equinox.app-1.4.300.v20190815-1535.jar
+Setting project property: p2.eclipse-plugin:org.eclipse.help:jar -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.help\3.8.600.v20191123-0656\org.eclipse.help-3.8.600.v20191123-0656.jar
+Setting project property: java.vm.compressedOopsMode -> Zero based
+Setting project property: user.country.format -> DE
+Setting project property: maven.dependency.p2.eclipse-plugin.org.eclipse.help.jar.path -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.help\3.8.600.v20191123-0656\org.eclipse.help-3.8.600.v20191123-0656.jar
+Setting project property: project.packaging -> eclipse-plugin
+Setting project property: unqualifiedVersion -> 1.1.0
+Setting project property: java.home -> C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot
+Setting project property: p2.eclipse-plugin:javax.annotation:jar -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\javax.annotation\1.2.0.v201602091430\javax.annotation-1.2.0.v201602091430.jar
+Setting project property: java.specification.vendor -> Oracle Corporation
+Setting project property: user.language.format -> de
+Setting project property: java.vm.vendor -> AdoptOpenJDK
+Setting project property: https.proxySet -> true
+Setting project property: java.awt.graphicsenv -> sun.awt.Win32GraphicsEnvironment
+Setting project property: java.runtime.name -> OpenJDK Runtime Environment
+Setting project property: maven.dependency.p2.eclipse-plugin.org.eclipse.core.contenttype.jar.path -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.contenttype\3.7.500.v20190916-2125\org.eclipse.core.contenttype-3.7.500.v20190916-2125.jar
+Setting project property: java.vm.name -> OpenJDK 64-Bit Server VM
+Setting project property: maven.conf -> C:\Development\Maven\apache-maven-3.6.3\bin\../conf
+Setting project property: osgi.framework.useSystemProperties -> false
+Setting project property: java.vm.version -> 11.0.9.1+1
+Setting project property: maven.dependency.p2.eclipse-plugin.org.eclipse.core.jobs.jar.path -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.jobs\3.10.600.v20191122-2104\org.eclipse.core.jobs-3.10.600.v20191122-2104.jar
+Setting project property: ant.core.lib -> C:\Users\fad8pl\.m2\repository\org\apache\ant\ant\1.8.2\ant-1.8.2.jar
+Setting project property: tychoProject.build.outputDirectories -> 
+Setting project property: p2.eclipse-plugin:org.eclipse.core.jobs:jar -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.jobs\3.10.600.v20191122-2104\org.eclipse.core.jobs-3.10.600.v20191122-2104.jar
+Setting project property: awt.toolkit -> sun.awt.windows.WToolkit
+Setting project property: org.slf4j.simpleLogger.defaultLogLevel -> debug
+Setting project property: sun.boot.library.path -> C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin
+Setting project property: sonar.coverage.exclusions -> **/*.tests/**/*.java
+Setting project property: sun.java.launcher -> SUN_STANDARD
+Setting project property: java.class.path -> C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar
+Setting project property: project.reporting.outputEncoding -> UTF-8
+Setting project property: java.io.tmpdir -> C:\Users\fad8pl\AppData\Local\Temp\
+Setting project property: sun.stdout.encoding -> cp437
+Setting project property: p2.eclipse-plugin:org.eclipse.core.contenttype:jar -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.contenttype\3.7.500.v20190916-2125\org.eclipse.core.contenttype-3.7.500.v20190916-2125.jar
+Setting project property: java.class.version -> 55.0
+Setting project property: buildQualifier -> 202104220626
+Project base dir set to: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help
+      [ant] calling target(s) [default] in build file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build-help.ant
+Setting ro project property: ant.file -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build-help.ant
+Adding reference: ant.projectHelper
+Adding reference: ant.parsing.context
+Adding reference: ant.targets
+parsing buildfile C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build-help.ant with URI = file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.help/build-help.ant
+Setting ro project property: ant.project.name -> Build Eclipse Help of current plugin.
+Adding reference: Build Eclipse Help of current plugin.
+Setting ro project property: ant.project.default-target -> default
+Setting ro project property: ant.file.Build Eclipse Help of current plugin. -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build-help.ant
+Setting ro project property: ant.file.type.Build Eclipse Help of current plugin. -> file
+Project base dir set to: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help
+ +Target: 
+ +Target: default
+Adding reference: ant.LocalProperties
+      [ant] Entering C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build-help.ant...
+Setting ro project property: ant.project.invoked-targets -> default
+Build sequence for target(s) `default' is [default]
+Complete build sequence is [default, ]
+
+default:
+Setting ro project property: ant.file -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build-help.ant
+Setting ro project property: ant.file.type.Build Eclipse Help of current plugin. -> file
+Setting ro project property: ant.project.name -> Build Eclipse Help of current plugin.
+Setting ro project property: ant.project.default-target -> default
+Setting ro project property: ant.project.invoked-targets -> default
+Setting ro project property: ant.file.maven-antrun- -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\target\antrun\build-main.xml
+Setting ro project property: ant.file.Build Eclipse Help of current plugin. -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build-help.ant
+Setting ro project property: ant.file.type.maven-antrun- -> file
+Setting project property: os.version -> 10.0
+Setting project property: user.script -> 
+Setting project property: os.name -> Windows 10
+Setting project property: user.country -> US
+Setting project property: p2.eclipse-plugin:org.eclipse.core.contenttype:jar -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.contenttype\3.7.500.v20190916-2125\org.eclipse.core.contenttype-3.7.500.v20190916-2125.jar
+Setting project property: sun.desktop -> windows
+Setting project property: http.proxyPort -> 3128
+Setting project property: awt.toolkit -> sun.awt.windows.WToolkit
+Setting project property: java.vm.version -> 11.0.9.1+1
+Setting project property: proxySet -> true
+Setting project property: sonar.surefire.reportsPath -> ../../tests/org.eclipse.app4mc.amalthea.converters.help.tests/target/surefire-reports/
+Setting project property: line.separator -> 
+Setting project property: java.io.tmpdir -> C:\Users\fad8pl\AppData\Local\Temp\
+Setting project property: jacoco.version -> 0.8.5
+Setting project property: tycho.version -> 2.3.0
+Setting project property: java.specification.vendor -> Oracle Corporation
+Setting project property: app4mc.version -> 1.1.0-SNAPSHOT
+Setting project property: maven.dependency.p2.eclipse-plugin.org.eclipse.core.jobs.jar.path -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.jobs\3.10.600.v20191122-2104\org.eclipse.core.jobs-3.10.600.v20191122-2104.jar
+Setting project property: http.proxyHost -> localhost
+Setting project property: project.packaging -> eclipse-plugin
+Setting project property: jdk.debug -> release
+Setting project property: file.encoding -> Cp1252
+Setting project property: maven.dependency.p2.eclipse-plugin.org.eclipse.core.runtime.jar.path -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.runtime\3.17.0.v20191122-2104\org.eclipse.core.runtime-3.17.0.v20191122-2104.jar
+Setting project property: http.proxySet -> true
+Setting project property: sonar.coverage.exclusions -> **/*.tests/**/*.java
+Setting project property: p2.eclipse-plugin:org.eclipse.help:jar -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.help\3.8.600.v20191123-0656\org.eclipse.help-3.8.600.v20191123-0656.jar
+Setting project property: user.name -> fad8pl
+Setting project property: project.build.testOutputDirectory -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\target\test-classes
+Setting project property: sonar.coverage.jacoco.xmlReportPaths -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml
+Setting project property: sonar.cpd.exclusions -> **/*.tests/**/*.java
+Setting project property: java.vm.specification.vendor -> Oracle Corporation
+Setting project property: java.vm.vendor -> AdoptOpenJDK
+Setting project property: java.home -> C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot
+Setting project property: user.country.format -> DE
+Setting project property: user.language.format -> de
+Setting project property: app4mc.baseline -> 1.0.0
+Setting project property: java.runtime.version -> 11.0.9.1+1
+Setting project property: java.class.version -> 55.0
+Setting project property: maven.dependency.p2.eclipse-plugin.org.eclipse.equinox.app.jar.path -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.app\1.4.300.v20190815-1535\org.eclipse.equinox.app-1.4.300.v20190815-1535.jar
+Setting project property: sun.cpu.endian -> little
+Setting project property: user.dir -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration
+Setting project property: java.vm.compressedOopsMode -> Zero based
+Setting project property: project.build.outputDirectory -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\target\classes
+Setting project property: java.library.path -> C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;.
+Setting project property: user.timezone -> Europe/Berlin
+Setting project property: tycho.env.osgi.os -> win32
+Setting project property: java.specification.name -> Java Platform API Specification
+Setting project property: project.reporting.outputEncoding -> UTF-8
+Setting project property: java.vm.info -> mixed mode
+Setting project property: maven.dependency.p2.eclipse-plugin.org.eclipse.osgi.jar.path -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi\3.15.100.v20191114-1701\org.eclipse.osgi-3.15.100.v20191114-1701.jar
+Setting project property: org.slf4j.simpleLogger.defaultLogLevel -> debug
+Setting project property: settings.localRepository -> C:\Users\fad8pl\.m2\repository
+Setting project property: os.arch -> amd64
+Setting project property: file.separator -> \
+Setting project property: user.language -> en
+Setting project property: p2.eclipse-plugin:org.eclipse.equinox.registry:jar -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.registry\3.8.600.v20191017-2055\org.eclipse.equinox.registry-3.8.600.v20191017-2055.jar
+Setting project property: sun.java.launcher -> SUN_STANDARD
+Setting project property: java.specification.version -> 11
+Setting project property: java.awt.graphicsenv -> sun.awt.Win32GraphicsEnvironment
+Setting project property: https.proxyPort -> 3128
+Setting project property: project.build.testSourceDirectory -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\src\test\java
+Setting project property: sun.boot.library.path -> C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin
+Setting project property: java.vendor.version -> AdoptOpenJDK
+Setting project property: maven.project.dependencies.versions -> 64.2.0.v20190507-1337;1.2.0.v201602091430;3.15.100.v20191114-1701;3.8.600.v20191123-0656;3.7.500.v20190916-2125;3.7.600.v20191017-2055;3.8.600.v20191017-2055;3.10.600.v20191004-1420;3.6.600.v20191122-2104;3.17.0.v20191122-2104;3.10.600.v20191122-2104;1.4.300.v20190815-1535;
+Setting project property: maven.dependency.p2.eclipse-plugin.org.eclipse.equinox.preferences.jar.path -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.preferences\3.7.600.v20191017-2055\org.eclipse.equinox.preferences-3.7.600.v20191017-2055.jar
+Setting project property: https.proxyHost -> localhost
+Setting project property: guice.disable.misplaced.annotation.check -> true
+Setting project property: sun.java.command -> org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt
+Setting project property: tychoProject.build.outputDirectories -> 
+Setting project property: sun.stderr.encoding -> cp437
+Setting project property: project.build.sourceDirectory -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\src\main\java
+Setting project property: maven.build.timestamp.format -> yyyyMMdd-HHmmss
+Setting project property: tycho.env.osgi.ws -> win32
+Setting project property: maven.dependency.p2.eclipse-plugin.org.eclipse.equinox.registry.jar.path -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.registry\3.8.600.v20191017-2055\org.eclipse.equinox.registry-3.8.600.v20191017-2055.jar
+Setting project property: p2.userAgent -> tycho/2.3.0
+Setting project property: qualifiedVersion -> 1.1.0.202104220626
+Setting project property: sun.arch.data.model -> 64
+Setting project property: project.version -> 1.1.0-SNAPSHOT
+Setting project property: project.artifactId -> org.eclipse.app4mc.amalthea.converters.help
+Setting project property: p2.eclipse-plugin:org.eclipse.equinox.common:jar -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.common\3.10.600.v20191004-1420\org.eclipse.equinox.common-3.10.600.v20191004-1420.jar
+Setting project property: sun.io.unicode.encoding -> UnicodeLittle
+Setting project property: p2.eclipse-plugin:com.ibm.icu:jar -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\com.ibm.icu\64.2.0.v20190507-1337\com.ibm.icu-64.2.0.v20190507-1337.jar
+Setting project property: sonar.java.source -> 8
+Setting project property: ant.core.lib -> C:\Users\fad8pl\.m2\repository\org\apache\ant\ant\1.8.2\ant-1.8.2.jar
+Setting project property: maven.home -> C:\Development\Maven\apache-maven-3.6.3\bin\..
+Setting project property: ant.version -> Apache Ant(TM) version 1.8.2 compiled on December 20 2010
+Setting project property: osgi.framework.useSystemProperties -> false
+Setting project property: java.vm.name -> OpenJDK 64-Bit Server VM
+Setting project property: buildQualifier -> 202104220626
+Setting project property: http.nonProxyHosts -> localhost|127.0.0.1
+Setting project property: sun.cpu.isalist -> amd64
+Setting project property: localRepository ->       id: local
+      url: file:///C:/Users/fad8pl/.m2/repository/
+   layout: default
+snapshots: [enabled => true, update => always]
+ releases: [enabled => true, update => always]
+
+Setting project property: user.home -> C:\Users\fad8pl
+Setting project property: maven.dependency.p2.eclipse-plugin.org.eclipse.core.contenttype.jar.path -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.contenttype\3.7.500.v20190916-2125\org.eclipse.core.contenttype-3.7.500.v20190916-2125.jar
+Setting project property: maven.dependency.p2.eclipse-plugin.javax.annotation.jar.path -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\javax.annotation\1.2.0.v201602091430\javax.annotation-1.2.0.v201602091430.jar
+Setting project property: unqualifiedVersion -> 1.1.0
+Setting project property: p2.eclipse-plugin:org.eclipse.core.expressions:jar -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.expressions\3.6.600.v20191122-2104\org.eclipse.core.expressions-3.6.600.v20191122-2104.jar
+Setting project property: sun.management.compiler -> HotSpot 64-Bit Tiered Compilers
+Setting project property: maven.conf -> C:\Development\Maven\apache-maven-3.6.3\bin\../conf
+Setting project property: org.jboss.tools.tycho-plugins.version -> 2.2.0
+Setting project property: p2.eclipse-plugin:org.eclipse.equinox.preferences:jar -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.preferences\3.7.600.v20191017-2055\org.eclipse.equinox.preferences-3.7.600.v20191017-2055.jar
+Setting project property: project.build.directory -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\target
+Setting project property: java.runtime.name -> OpenJDK Runtime Environment
+Setting project property: maven.dependency.p2.eclipse-plugin.org.eclipse.help.jar.path -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.help\3.8.600.v20191123-0656\org.eclipse.help-3.8.600.v20191123-0656.jar
+Setting project property: sun.jnu.encoding -> Cp1252
+Setting project property: classworlds.conf -> C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf
+Setting project property: java.version.date -> 2020-11-04
+Setting project property: java.version -> 11.0.9.1
+Setting project property: systemProxySet -> false
+Setting project property: p2.eclipse-plugin:org.eclipse.core.jobs:jar -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.jobs\3.10.600.v20191122-2104\org.eclipse.core.jobs-3.10.600.v20191122-2104.jar
+Setting project property: https.proxySet -> true
+Setting project property: java.vm.specification.version -> 11
+Setting project property: library.jansi.path -> C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native
+Setting project property: java.vm.specification.name -> Java Virtual Machine Specification
+Setting project property: p2.eclipse-plugin:javax.annotation:jar -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\javax.annotation\1.2.0.v201602091430\javax.annotation-1.2.0.v201602091430.jar
+Setting project property: java.vendor.url -> https://adoptopenjdk.net/
+Setting project property: maven.dependency.p2.eclipse-plugin.com.ibm.icu.jar.path -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\com.ibm.icu\64.2.0.v20190507-1337\com.ibm.icu-64.2.0.v20190507-1337.jar
+Setting project property: project.build.sourceEncoding -> UTF-8
+Setting project property: user.variant -> 
+Setting project property: java.awt.printerjob -> sun.awt.windows.WPrinterJob
+Setting project property: maven.multiModuleProjectDirectory -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration
+Setting project property: sun.os.patch.level -> 
+Setting project property: project.groupId -> org.eclipse.app4mc.migration
+Setting project property: maven.dependency.p2.eclipse-plugin.org.eclipse.equinox.common.jar.path -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.common\3.10.600.v20191004-1420\org.eclipse.equinox.common-3.10.600.v20191004-1420.jar
+Setting project property: p2.eclipse-plugin:org.eclipse.osgi:jar -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi\3.15.100.v20191114-1701\org.eclipse.osgi-3.15.100.v20191114-1701.jar
+Setting project property: java.class.path -> C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar
+Setting project property: java.vendor -> AdoptOpenJDK
+Setting project property: sun.stdout.encoding -> cp437
+Setting project property: java.vendor.url.bug -> https://github.com/AdoptOpenJDK/openjdk-support/issues
+Setting project property: build-helper.version -> 1.9.1
+Setting project property: p2.eclipse-plugin:org.eclipse.equinox.app:jar -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.app\1.4.300.v20190815-1535\org.eclipse.equinox.app-1.4.300.v20190815-1535.jar
+Setting project property: eclipse.p2.atomic.composite.loading.default -> true
+Setting project property: maven.dependency.p2.eclipse-plugin.org.eclipse.core.expressions.jar.path -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.expressions\3.6.600.v20191122-2104\org.eclipse.core.expressions-3.6.600.v20191122-2104.jar
+Setting project property: tycho.env.osgi.arch -> x86_64
+Setting project property: https.nonProxyHosts -> localhost|127.0.0.1
+Setting project property: path.separator -> ;
+Setting project property: project.name -> org.eclipse.app4mc.amalthea.converters.help
+Setting project property: p2.eclipse-plugin:org.eclipse.core.runtime:jar -> C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.runtime\3.17.0.v20191122-2104\org.eclipse.core.runtime-3.17.0.v20191122-2104.jar
+Project base dir set to: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help
+      [ant] calling target(s) [generate-help] in build file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\build-docu.xml
+Setting ro project property: ant.file -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\build-docu.xml
+Adding reference: ant.projectHelper
+Adding reference: ant.parsing.context
+Adding reference: ant.targets
+parsing buildfile C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\build-docu.xml with URI = file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/build_dependencies/build-docu.xml
+Setting ro project property: ant.project.name -> docuproject
+Adding reference: docuproject
+Setting ro project property: ant.project.default-target -> generate-help
+Setting ro project property: ant.file.docuproject -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\build-docu.xml
+Setting ro project property: ant.file.type.docuproject -> file
+Project base dir set to: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help
+ +Target: 
+ +Target: init
+ +Target: init-build
+ +Target: assemble
+ +Target: generate-help
+Adding reference: ant.LocalProperties
+Setting project property: lib.folder -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help/../../build_dependencies/docu-wikitext-lib
+Setting project property: styles.folder -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help/../../build_dependencies/docu-styles
+Setting project property: docu.folder -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help/docu
+Setting project property: build.folder -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help/build
+Setting project property: target.folder.help -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help/help
+Setting project property: target.folder.toc -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help/toc
+Setting project property: index.file -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help/docu/_index.txt
+Setting project property: dest.build.file -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help/build/documentation.textile
+Adding reference: wikitext.classpath
+fileset: Setup scanner in dir C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib with patternSet{ includes: [*.jar] excludes: [] }
+Finding class org.eclipse.mylyn.internal.wikitext.core.ant.HtmlToMarkupTask
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core.ant_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/core/ant/HtmlToMarkupTask.class
+Finding class org.eclipse.mylyn.internal.wikitext.core.ant.MarkupTask
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core.ant_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/core/ant/MarkupTask.class
+Class org.apache.tools.ant.Task loaded from parent loader (parentFirst)
+Class org.eclipse.mylyn.internal.wikitext.core.ant.MarkupTask loaded from ant loader (parentFirst)
+Class org.eclipse.mylyn.internal.wikitext.core.ant.HtmlToMarkupTask loaded from ant loader (parentFirst)
+Class java.lang.Throwable loaded from parent loader (parentFirst)
+Class java.io.IOException loaded from parent loader (parentFirst)
+Class java.io.InputStream loaded from parent loader (parentFirst)
+Class java.io.FileInputStream loaded from parent loader (parentFirst)
+Class java.io.BufferedInputStream loaded from parent loader (parentFirst)
+Class java.io.Reader loaded from parent loader (parentFirst)
+Class java.io.InputStreamReader loaded from parent loader (parentFirst)
+Class org.apache.tools.ant.BuildException loaded from parent loader (parentFirst)
+Class java.lang.IllegalStateException loaded from parent loader (parentFirst)
+Class java.lang.IllegalArgumentException loaded from parent loader (parentFirst)
+Class java.util.List loaded from parent loader (parentFirst)
+Class java.lang.Exception loaded from parent loader (parentFirst)
+Class java.io.OutputStream loaded from parent loader (parentFirst)
+Class java.io.FileOutputStream loaded from parent loader (parentFirst)
+Class java.io.BufferedOutputStream loaded from parent loader (parentFirst)
+Class java.io.Writer loaded from parent loader (parentFirst)
+Class java.io.OutputStreamWriter loaded from parent loader (parentFirst)
+Class java.lang.CharSequence loaded from parent loader (parentFirst)
+ +Datatype html-to-wikitext org.eclipse.mylyn.internal.wikitext.core.ant.HtmlToMarkupTask
+Finding class org.eclipse.mylyn.internal.wikitext.core.ant.MarkupToDitaTask
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core.ant_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/core/ant/MarkupToDitaTask.class
+Class org.eclipse.mylyn.internal.wikitext.core.ant.MarkupToDitaTask loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.util.XmlStreamWriter
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/util/XmlStreamWriter.class
+Class java.lang.Object loaded from parent loader (parentFirst)
+Class org.eclipse.mylyn.wikitext.core.util.XmlStreamWriter loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.util.DefaultXmlStreamWriter
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/util/DefaultXmlStreamWriter.class
+Class org.eclipse.mylyn.wikitext.core.util.DefaultXmlStreamWriter loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.DocumentBuilder
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/DocumentBuilder.class
+Class org.eclipse.mylyn.wikitext.core.parser.DocumentBuilder loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.core.parser.builder.DitaTopicDocumentBuilder
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/core/parser/builder/DitaTopicDocumentBuilder.class
+Finding class org.eclipse.mylyn.wikitext.core.parser.builder.AbstractXmlDocumentBuilder
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/builder/AbstractXmlDocumentBuilder.class
+Class org.eclipse.mylyn.wikitext.core.parser.builder.AbstractXmlDocumentBuilder loaded from ant loader (parentFirst)
+Class org.eclipse.mylyn.internal.wikitext.core.parser.builder.DitaTopicDocumentBuilder loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.util.FormattingXMLStreamWriter
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/util/FormattingXMLStreamWriter.class
+Class org.eclipse.mylyn.wikitext.core.util.FormattingXMLStreamWriter loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.builder.DitaBookMapDocumentBuilder
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/builder/DitaBookMapDocumentBuilder.class
+Class java.io.Closeable loaded from parent loader (parentFirst)
+Class org.eclipse.mylyn.wikitext.core.parser.builder.DitaBookMapDocumentBuilder loaded from ant loader (parentFirst)
+Class java.lang.NoSuchFieldError loaded from parent loader (parentFirst)
+ +Datatype wikitext-to-dita org.eclipse.mylyn.internal.wikitext.core.ant.MarkupToDitaTask
+Finding class org.eclipse.mylyn.internal.wikitext.core.ant.MarkupToDocbookTask
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core.ant_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/core/ant/MarkupToDocbookTask.class
+Class org.eclipse.mylyn.internal.wikitext.core.ant.MarkupToDocbookTask loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.core.ant.MarkupToDocbookTask$1
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core.ant_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/core/ant/MarkupToDocbookTask$1.class
+Finding class org.eclipse.mylyn.wikitext.core.parser.builder.DocBookDocumentBuilder
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/builder/DocBookDocumentBuilder.class
+Class org.eclipse.mylyn.wikitext.core.parser.builder.DocBookDocumentBuilder loaded from ant loader (parentFirst)
+Class org.eclipse.mylyn.internal.wikitext.core.ant.MarkupToDocbookTask$1 loaded from ant loader (parentFirst)
+ +Datatype wikitext-to-docbook org.eclipse.mylyn.internal.wikitext.core.ant.MarkupToDocbookTask
+Finding class org.eclipse.mylyn.internal.wikitext.core.ant.MarkupToEclipseHelpTask
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core.ant_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/core/ant/MarkupToEclipseHelpTask.class
+Finding class org.eclipse.mylyn.internal.wikitext.core.ant.MarkupToHtmlTask
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core.ant_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/core/ant/MarkupToHtmlTask.class
+Class org.eclipse.mylyn.internal.wikitext.core.ant.MarkupToHtmlTask loaded from ant loader (parentFirst)
+Class org.eclipse.mylyn.internal.wikitext.core.ant.MarkupToEclipseHelpTask loaded from ant loader (parentFirst)
+Class java.util.Set loaded from parent loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.core.parser.builder.SplittingStrategy
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/core/parser/builder/SplittingStrategy.class
+Class org.eclipse.mylyn.internal.wikitext.core.parser.builder.SplittingStrategy loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.core.parser.builder.DefaultSplittingStrategy
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/core/parser/builder/DefaultSplittingStrategy.class
+Class org.eclipse.mylyn.internal.wikitext.core.parser.builder.DefaultSplittingStrategy loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.core.parser.builder.NoSplittingStrategy
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/core/parser/builder/NoSplittingStrategy.class
+Class org.eclipse.mylyn.internal.wikitext.core.parser.builder.NoSplittingStrategy loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.core.parser.builder.SplittingHtmlDocumentBuilder
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/core/parser/builder/SplittingHtmlDocumentBuilder.class
+Class org.eclipse.mylyn.internal.wikitext.core.parser.builder.SplittingHtmlDocumentBuilder loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.util.MarkupToEclipseToc
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/util/MarkupToEclipseToc.class
+Class org.eclipse.mylyn.wikitext.core.parser.util.MarkupToEclipseToc loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.core.parser.builder.SplittingMarkupToEclipseToc
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/core/parser/builder/SplittingMarkupToEclipseToc.class
+Class org.eclipse.mylyn.internal.wikitext.core.parser.builder.SplittingMarkupToEclipseToc loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.outline.OutlineItem
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/outline/OutlineItem.class
+Class org.eclipse.mylyn.wikitext.core.parser.outline.OutlineItem loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.core.parser.builder.SplitOutlineItem
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/core/parser/builder/SplitOutlineItem.class
+Class org.eclipse.mylyn.internal.wikitext.core.parser.builder.SplitOutlineItem loaded from ant loader (parentFirst)
+ +Datatype wikitext-to-eclipse-help org.eclipse.mylyn.internal.wikitext.core.ant.MarkupToEclipseHelpTask
+ +Datatype wikitext-to-html org.eclipse.mylyn.internal.wikitext.core.ant.MarkupToHtmlTask
+Finding class org.eclipse.mylyn.internal.wikitext.core.ant.MarkupToXslfoTask
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core.ant_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/core/ant/MarkupToXslfoTask.class
+Class org.eclipse.mylyn.internal.wikitext.core.ant.MarkupToXslfoTask loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.builder.XslfoDocumentBuilder
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/builder/XslfoDocumentBuilder.class
+Class org.eclipse.mylyn.wikitext.core.parser.builder.XslfoDocumentBuilder loaded from ant loader (parentFirst)
+ +Datatype wikitext-to-xslfo org.eclipse.mylyn.internal.wikitext.core.ant.MarkupToXslfoTask
+      [ant] Entering C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\build-docu.xml...
+Setting ro project property: ant.project.invoked-targets -> generate-help
+Build sequence for target(s) `generate-help' is [init-build, generate-help]
+Complete build sequence is [init-build, generate-help, assemble, init, ]
+
+init-build:
+    [mkdir] Created dir: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build
+
+generate-help:
+fileset: Setup scanner in dir C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\docu with patternSet{ includes: [**/*.textile] excludes: [pdf-*.textile] }
+     [copy] additional_details.textile added as additional_details.textile doesn't exist.
+     [copy] developers_guide.textile added as developers_guide.textile doesn't exist.
+     [copy] how_to_invoke_model_migration.textile added as how_to_invoke_model_migration.textile doesn't exist.
+     [copy] meta_model_changes.textile added as meta_model_changes.textile doesn't exist.
+     [copy] model_migration.textile added as model_migration.textile doesn't exist.
+     [copy] prerequisites_for_model_migration.textile added as prerequisites_for_model_migration.textile doesn't exist.
+     [copy] supported_model_migrations.textile added as supported_model_migrations.textile doesn't exist.
+     [copy] No sources found.
+     [copy] Copying 7 files to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build
+     [copy] Copying C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\docu\additional_details.textile to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\additional_details.textile
+     [copy] Copying C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\docu\developers_guide.textile to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\developers_guide.textile
+     [copy] Copying C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\docu\how_to_invoke_model_migration.textile to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\how_to_invoke_model_migration.textile
+     [copy] Copying C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\docu\meta_model_changes.textile to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\meta_model_changes.textile
+     [copy] Copying C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\docu\model_migration.textile to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\model_migration.textile
+     [copy] Copying C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\docu\prerequisites_for_model_migration.textile to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\prerequisites_for_model_migration.textile
+     [copy] Copying C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\docu\supported_model_migrations.textile to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\supported_model_migrations.textile
+Class java.util.ArrayList loaded from parent loader (parentFirst)
+Class java.lang.String loaded from parent loader (parentFirst)
+Class java.io.File loaded from parent loader (parentFirst)
+Class org.apache.tools.ant.types.FileSet loaded from parent loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.core.ant.MarkupToHtmlTask$Stylesheet
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core.ant_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/core/ant/MarkupToHtmlTask$Stylesheet.class
+Class org.eclipse.mylyn.internal.wikitext.core.ant.MarkupToHtmlTask$Stylesheet loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.markup.MarkupLanguageConfiguration
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/markup/MarkupLanguageConfiguration.class
+Class java.lang.Cloneable loaded from parent loader (parentFirst)
+Class org.eclipse.mylyn.wikitext.core.parser.markup.MarkupLanguageConfiguration loaded from ant loader (parentFirst)
+Class java.util.Map loaded from parent loader (parentFirst)
+Class java.lang.CloneNotSupportedException loaded from parent loader (parentFirst)
+Class java.util.HashMap loaded from parent loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.core.ant.MarkupToHtmlTask$Attribute
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core.ant_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/core/ant/MarkupToHtmlTask$Attribute.class
+Class org.eclipse.mylyn.internal.wikitext.core.ant.MarkupToHtmlTask$Attribute loaded from ant loader (parentFirst)
+Class java.lang.Class loaded from parent loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.util.ServiceLocator
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/util/ServiceLocator.class
+Class org.eclipse.mylyn.wikitext.core.util.ServiceLocator loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.util.ServiceLocator$MarkupLanguageVisitor
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/util/ServiceLocator$MarkupLanguageVisitor.class
+Class org.eclipse.mylyn.wikitext.core.util.ServiceLocator$MarkupLanguageVisitor loaded from ant loader (parentFirst)
+Class java.util.Collection loaded from parent loader (parentFirst)
+Finding class com.google.common.collect.Multimap
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/Multimap.class
+Class com.google.common.collect.Multimap loaded from ant loader (parentFirst)
+Class java.util.regex.Pattern loaded from parent loader (parentFirst)
+Finding class com.google.common.base.Strings
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/base/Strings.class
+Class com.google.common.base.Strings loaded from ant loader (parentFirst)
+Class java.lang.ArrayIndexOutOfBoundsException loaded from parent loader (parentFirst)
+Finding class com.google.common.base.Preconditions
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/base/Preconditions.class
+Class com.google.common.base.Preconditions loaded from ant loader (parentFirst)
+Class java.lang.IndexOutOfBoundsException loaded from parent loader (parentFirst)
+Class java.lang.NullPointerException loaded from parent loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.markup.MarkupLanguage
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/markup/MarkupLanguage.class
+Class org.eclipse.mylyn.wikitext.core.parser.markup.MarkupLanguage loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.util.ServiceLocator$1
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/util/ServiceLocator$1.class
+Class org.eclipse.mylyn.wikitext.core.util.ServiceLocator$1 loaded from ant loader (parentFirst)
+Class java.lang.StringBuilder loaded from parent loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.markup.MarkupLanguageProvider
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/markup/MarkupLanguageProvider.class
+Class org.eclipse.mylyn.wikitext.core.parser.markup.MarkupLanguageProvider loaded from ant loader (parentFirst)
+Finding class com.google.common.collect.ImmutableList
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/ImmutableList.class
+Class java.util.RandomAccess loaded from parent loader (parentFirst)
+Finding class com.google.common.collect.ImmutableCollection
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/ImmutableCollection.class
+Class java.io.Serializable loaded from parent loader (parentFirst)
+Class java.util.AbstractCollection loaded from parent loader (parentFirst)
+Class com.google.common.collect.ImmutableCollection loaded from ant loader (parentFirst)
+Class com.google.common.collect.ImmutableList loaded from ant loader (parentFirst)
+Class java.lang.UnsupportedOperationException loaded from parent loader (parentFirst)
+Class java.util.Iterator loaded from parent loader (parentFirst)
+Finding class com.google.common.collect.RegularImmutableAsList
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/RegularImmutableAsList.class
+Finding class com.google.common.collect.ImmutableAsList
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/ImmutableAsList.class
+Class com.google.common.collect.ImmutableAsList loaded from ant loader (parentFirst)
+Class com.google.common.collect.RegularImmutableAsList loaded from ant loader (parentFirst)
+Finding class com.google.common.collect.RegularImmutableList
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/RegularImmutableList.class
+Class com.google.common.collect.RegularImmutableList loaded from ant loader (parentFirst)
+Finding class com.google.common.collect.SingletonImmutableList
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/SingletonImmutableList.class
+Class com.google.common.collect.SingletonImmutableList loaded from ant loader (parentFirst)
+Finding class com.google.common.collect.UnmodifiableIterator
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/UnmodifiableIterator.class
+Class com.google.common.collect.UnmodifiableIterator loaded from ant loader (parentFirst)
+Finding class com.google.common.collect.UnmodifiableListIterator
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/UnmodifiableListIterator.class
+Class java.util.ListIterator loaded from parent loader (parentFirst)
+Class com.google.common.collect.UnmodifiableListIterator loaded from ant loader (parentFirst)
+Class java.io.InvalidObjectException loaded from parent loader (parentFirst)
+Finding class com.google.common.collect.ImmutableList$ReverseImmutableList
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/ImmutableList$ReverseImmutableList.class
+Class com.google.common.collect.ImmutableList$ReverseImmutableList loaded from ant loader (parentFirst)
+Finding class com.google.common.collect.ImmutableList$1
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/ImmutableList$1.class
+Finding class com.google.common.collect.AbstractIndexedListIterator
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/AbstractIndexedListIterator.class
+Class com.google.common.collect.AbstractIndexedListIterator loaded from ant loader (parentFirst)
+Class com.google.common.collect.ImmutableList$1 loaded from ant loader (parentFirst)
+Finding class com.google.common.collect.ImmutableList$SubList
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/ImmutableList$SubList.class
+Class com.google.common.collect.ImmutableList$SubList loaded from ant loader (parentFirst)
+Finding class com.google.common.collect.ObjectArrays
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/ObjectArrays.class
+Class com.google.common.collect.ObjectArrays loaded from ant loader (parentFirst)
+Class java.lang.Iterable loaded from parent loader (parentFirst)
+Finding class com.google.common.collect.Iterators
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/Iterators.class
+Class com.google.common.collect.Iterators loaded from ant loader (parentFirst)
+Finding class com.google.common.collect.Iterators$1
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/Iterators$1.class
+Class com.google.common.collect.Iterators$1 loaded from ant loader (parentFirst)
+Finding class com.google.common.collect.Iterators$7
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/Iterators$7.class
+Finding class com.google.common.collect.AbstractIterator
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/AbstractIterator.class
+Class com.google.common.collect.AbstractIterator loaded from ant loader (parentFirst)
+Class com.google.common.collect.Iterators$7 loaded from ant loader (parentFirst)
+Finding class com.google.common.collect.Iterators$12
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/Iterators$12.class
+Class com.google.common.collect.Iterators$12 loaded from ant loader (parentFirst)
+Finding class com.google.common.collect.Iterators$13
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/Iterators$13.class
+Class com.google.common.collect.Iterators$13 loaded from ant loader (parentFirst)
+Finding class com.google.common.collect.Iterators$11
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/Iterators$11.class
+Class com.google.common.collect.Iterators$11 loaded from ant loader (parentFirst)
+Class java.util.Enumeration loaded from parent loader (parentFirst)
+Finding class com.google.common.collect.PeekingIterator
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/PeekingIterator.class
+Class com.google.common.collect.PeekingIterator loaded from ant loader (parentFirst)
+Finding class com.google.common.collect.Iterators$6
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/Iterators$6.class
+Class com.google.common.collect.Iterators$6 loaded from ant loader (parentFirst)
+Finding class com.google.common.collect.Iterators$MergingIterator
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/Iterators$MergingIterator.class
+Class com.google.common.collect.Iterators$MergingIterator loaded from ant loader (parentFirst)
+Finding class com.google.common.collect.Iterators$3
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/Iterators$3.class
+Class com.google.common.collect.Iterators$3 loaded from ant loader (parentFirst)
+Class java.util.NoSuchElementException loaded from parent loader (parentFirst)
+Finding class com.google.common.collect.Iterators$2
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/Iterators$2.class
+Class com.google.common.collect.Iterators$2 loaded from ant loader (parentFirst)
+Class java.lang.ClassLoader loaded from parent loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.util.ServiceLocator$ResourceDescriptor
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/util/ServiceLocator$ResourceDescriptor.class
+Class org.eclipse.mylyn.wikitext.core.util.ServiceLocator$ResourceDescriptor loaded from ant loader (parentFirst)
+Class java.net.URL loaded from parent loader (parentFirst)
+Class java.io.BufferedReader loaded from parent loader (parentFirst)
+Finding class com.google.common.base.Charsets
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/base/Charsets.class
+Class com.google.common.base.Charsets loaded from ant loader (parentFirst)
+Class java.nio.charset.Charset loaded from parent loader (parentFirst)
+Class java.util.regex.Matcher loaded from parent loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.confluence.core.ConfluenceLanguage
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.confluence.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/confluence/core/ConfluenceLanguage.class
+Finding class org.eclipse.mylyn.wikitext.core.parser.markup.AbstractMarkupLanguage
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/markup/AbstractMarkupLanguage.class
+Class org.eclipse.mylyn.wikitext.core.parser.markup.AbstractMarkupLanguage loaded from ant loader (parentFirst)
+Class org.eclipse.mylyn.wikitext.confluence.core.ConfluenceLanguage loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.markup.IdGenerationStrategy
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/markup/IdGenerationStrategy.class
+Class org.eclipse.mylyn.wikitext.core.parser.markup.IdGenerationStrategy loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.markup.DefaultIdGenerationStrategy
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/markup/DefaultIdGenerationStrategy.class
+Class org.eclipse.mylyn.wikitext.core.parser.markup.DefaultIdGenerationStrategy loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.Locator
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/Locator.class
+Class org.eclipse.mylyn.wikitext.core.parser.Locator loaded from ant loader (parentFirst)
+Class java.io.StringReader loaded from parent loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.confluence.core.ConfluenceDocumentBuilder
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.confluence.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/confluence/core/ConfluenceDocumentBuilder.class
+Finding class org.eclipse.mylyn.wikitext.core.parser.builder.AbstractMarkupDocumentBuilder
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/builder/AbstractMarkupDocumentBuilder.class
+Class org.eclipse.mylyn.wikitext.core.parser.builder.AbstractMarkupDocumentBuilder loaded from ant loader (parentFirst)
+Class org.eclipse.mylyn.internal.wikitext.confluence.core.ConfluenceDocumentBuilder loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.markup.Block
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/markup/Block.class
+Finding class org.eclipse.mylyn.wikitext.core.parser.markup.Processor
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/markup/Processor.class
+Class org.eclipse.mylyn.wikitext.core.parser.markup.Processor loaded from ant loader (parentFirst)
+Class org.eclipse.mylyn.wikitext.core.parser.markup.Block loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.confluence.core.block.ParagraphBlock
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.confluence.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/confluence/core/block/ParagraphBlock.class
+Class org.eclipse.mylyn.internal.wikitext.confluence.core.block.ParagraphBlock loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.markup.PatternBasedElement
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/markup/PatternBasedElement.class
+Class org.eclipse.mylyn.wikitext.core.parser.markup.PatternBasedElement loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.confluence.core.phrase.HyperlinkPhraseModifier
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.confluence.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/confluence/core/phrase/HyperlinkPhraseModifier.class
+Class org.eclipse.mylyn.internal.wikitext.confluence.core.phrase.HyperlinkPhraseModifier loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.confluence.core.phrase.SimplePhraseModifier
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.confluence.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/confluence/core/phrase/SimplePhraseModifier.class
+Finding class org.eclipse.mylyn.internal.wikitext.confluence.core.phrase.SimpleWrappedPhraseModifier
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.confluence.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/confluence/core/phrase/SimpleWrappedPhraseModifier.class
+Class org.eclipse.mylyn.internal.wikitext.confluence.core.phrase.SimpleWrappedPhraseModifier loaded from ant loader (parentFirst)
+Class org.eclipse.mylyn.internal.wikitext.confluence.core.phrase.SimplePhraseModifier loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.confluence.core.phrase.EmphasisPhraseModifier
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.confluence.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/confluence/core/phrase/EmphasisPhraseModifier.class
+Class org.eclipse.mylyn.internal.wikitext.confluence.core.phrase.EmphasisPhraseModifier loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.confluence.core.phrase.ConfluenceWrappedPhraseModifier
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.confluence.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/confluence/core/phrase/ConfluenceWrappedPhraseModifier.class
+Class org.eclipse.mylyn.internal.wikitext.confluence.core.phrase.ConfluenceWrappedPhraseModifier loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.confluence.core.phrase.ColorPhraseModifier
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.confluence.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/confluence/core/phrase/ColorPhraseModifier.class
+Class org.eclipse.mylyn.internal.wikitext.confluence.core.phrase.ColorPhraseModifier loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.confluence.core.phrase.ImagePhraseModifier
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.confluence.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/confluence/core/phrase/ImagePhraseModifier.class
+Class org.eclipse.mylyn.internal.wikitext.confluence.core.phrase.ImagePhraseModifier loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.markup.token.PatternLineBreakReplacementToken
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/markup/token/PatternLineBreakReplacementToken.class
+Class org.eclipse.mylyn.wikitext.core.parser.markup.token.PatternLineBreakReplacementToken loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.confluence.core.token.EscapedCharacterReplacementToken
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.confluence.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/confluence/core/token/EscapedCharacterReplacementToken.class
+Class org.eclipse.mylyn.internal.wikitext.confluence.core.token.EscapedCharacterReplacementToken loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.markup.token.EntityReferenceReplacementToken
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/markup/token/EntityReferenceReplacementToken.class
+Finding class org.eclipse.mylyn.wikitext.core.parser.markup.token.PatternEntityReferenceReplacementToken
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/markup/token/PatternEntityReferenceReplacementToken.class
+Class org.eclipse.mylyn.wikitext.core.parser.markup.token.PatternEntityReferenceReplacementToken loaded from ant loader (parentFirst)
+Class org.eclipse.mylyn.wikitext.core.parser.markup.token.EntityReferenceReplacementToken loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.confluence.core.token.HorizontalRuleToken
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.confluence.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/confluence/core/token/HorizontalRuleToken.class
+Class org.eclipse.mylyn.internal.wikitext.confluence.core.token.HorizontalRuleToken loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.markup.token.ImpliedHyperlinkReplacementToken
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/markup/token/ImpliedHyperlinkReplacementToken.class
+Class org.eclipse.mylyn.wikitext.core.parser.markup.token.ImpliedHyperlinkReplacementToken loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.confluence.core.token.AnchorReplacementToken
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.confluence.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/confluence/core/token/AnchorReplacementToken.class
+Class org.eclipse.mylyn.internal.wikitext.confluence.core.token.AnchorReplacementToken loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.markup.AbstractMarkupLanguage$PatternBasedSyntax
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/markup/AbstractMarkupLanguage$PatternBasedSyntax.class
+Class org.eclipse.mylyn.wikitext.core.parser.markup.AbstractMarkupLanguage$PatternBasedSyntax loaded from ant loader (parentFirst)
+Class java.util.Stack loaded from parent loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.markup.AbstractMarkupLanguage$Group
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/markup/AbstractMarkupLanguage$Group.class
+Class org.eclipse.mylyn.wikitext.core.parser.markup.AbstractMarkupLanguage$Group loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.html.core.HtmlLanguage
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.html.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/html/core/HtmlLanguage.class
+Class org.eclipse.mylyn.wikitext.html.core.HtmlLanguage loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.builder.HtmlDocumentBuilder
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/builder/HtmlDocumentBuilder.class
+Class org.eclipse.mylyn.wikitext.core.parser.builder.HtmlDocumentBuilder loaded from ant loader (parentFirst)
+Class org.xml.sax.SAXException loaded from parent loader (parentFirst)
+Class java.lang.RuntimeException loaded from parent loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.markdown.core.MarkdownLanguage
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.markdown.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/markdown/core/MarkdownLanguage.class
+Class org.eclipse.mylyn.wikitext.markdown.core.MarkdownLanguage loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.markup.ContentState
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/markup/ContentState.class
+Class org.eclipse.mylyn.wikitext.core.parser.markup.ContentState loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.markdown.core.MarkdownContentState
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.markdown.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/markdown/core/MarkdownContentState.class
+Class org.eclipse.mylyn.internal.wikitext.markdown.core.MarkdownContentState loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.markdown.core.MarkdownDocumentBuilder
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.markdown.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/markdown/core/MarkdownDocumentBuilder.class
+Class org.eclipse.mylyn.internal.wikitext.markdown.core.MarkdownDocumentBuilder loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.markdown.core.GfmIdGenerationStrategy
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.markdown.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/markdown/core/GfmIdGenerationStrategy.class
+Class org.eclipse.mylyn.internal.wikitext.markdown.core.GfmIdGenerationStrategy loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.markdown.core.util.ReadAheadDispatcher
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.markdown.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/markdown/core/util/ReadAheadDispatcher.class
+Finding class org.eclipse.mylyn.internal.wikitext.markdown.core.block.NestableBlock
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.markdown.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/markdown/core/block/NestableBlock.class
+Class org.eclipse.mylyn.internal.wikitext.markdown.core.block.NestableBlock loaded from ant loader (parentFirst)
+Class org.eclipse.mylyn.internal.wikitext.markdown.core.util.ReadAheadDispatcher loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.markup.phrase.HtmlEndTagPhraseModifier
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/markup/phrase/HtmlEndTagPhraseModifier.class
+Class org.eclipse.mylyn.wikitext.core.parser.markup.phrase.HtmlEndTagPhraseModifier loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.markup.phrase.HtmlStartTagPhraseModifier
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/markup/phrase/HtmlStartTagPhraseModifier.class
+Class org.eclipse.mylyn.wikitext.core.parser.markup.phrase.HtmlStartTagPhraseModifier loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.markdown.core.token.InlineImageReplacementToken
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.markdown.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/markdown/core/token/InlineImageReplacementToken.class
+Class org.eclipse.mylyn.internal.wikitext.markdown.core.token.InlineImageReplacementToken loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.markdown.core.token.ReferenceStyleImageReplacementToken
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.markdown.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/markdown/core/token/ReferenceStyleImageReplacementToken.class
+Class org.eclipse.mylyn.internal.wikitext.markdown.core.token.ReferenceStyleImageReplacementToken loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.markdown.core.token.InlineLinkReplacementToken
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.markdown.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/markdown/core/token/InlineLinkReplacementToken.class
+Class org.eclipse.mylyn.internal.wikitext.markdown.core.token.InlineLinkReplacementToken loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.markdown.core.token.ReferenceStyleLinkReplacementToken
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.markdown.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/markdown/core/token/ReferenceStyleLinkReplacementToken.class
+Class org.eclipse.mylyn.internal.wikitext.markdown.core.token.ReferenceStyleLinkReplacementToken loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.markdown.core.token.AutomaticLinkReplacementToken
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.markdown.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/markdown/core/token/AutomaticLinkReplacementToken.class
+Class org.eclipse.mylyn.internal.wikitext.markdown.core.token.AutomaticLinkReplacementToken loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.markdown.core.phrase.BackslashEscapePhraseModifier
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.markdown.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/markdown/core/phrase/BackslashEscapePhraseModifier.class
+Finding class org.eclipse.mylyn.wikitext.core.parser.markup.token.PatternLiteralReplacementToken
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/markup/token/PatternLiteralReplacementToken.class
+Class org.eclipse.mylyn.wikitext.core.parser.markup.token.PatternLiteralReplacementToken loaded from ant loader (parentFirst)
+Class org.eclipse.mylyn.internal.wikitext.markdown.core.phrase.BackslashEscapePhraseModifier loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.markdown.core.phrase.SimplePhraseModifier
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.markdown.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/markdown/core/phrase/SimplePhraseModifier.class
+Class org.eclipse.mylyn.internal.wikitext.markdown.core.phrase.SimplePhraseModifier loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.markdown.core.token.PreserverHtmlEntityToken
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.markdown.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/markdown/core/token/PreserverHtmlEntityToken.class
+Class org.eclipse.mylyn.internal.wikitext.markdown.core.token.PreserverHtmlEntityToken loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.mediawiki.core.MediaWikiLanguage
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.mediawiki.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/mediawiki/core/MediaWikiLanguage.class
+Finding class org.eclipse.mylyn.internal.wikitext.mediawiki.core.AbstractMediaWikiLanguage
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.mediawiki.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/mediawiki/core/AbstractMediaWikiLanguage.class
+Class org.eclipse.mylyn.internal.wikitext.mediawiki.core.AbstractMediaWikiLanguage loaded from ant loader (parentFirst)
+Class org.eclipse.mylyn.wikitext.mediawiki.core.MediaWikiLanguage loaded from ant loader (parentFirst)
+Class java.io.UnsupportedEncodingException loaded from parent loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.mediawiki.core.MediaWikiIdGenerationStrategy
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.mediawiki.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/mediawiki/core/MediaWikiIdGenerationStrategy.class
+Class org.eclipse.mylyn.internal.wikitext.mediawiki.core.MediaWikiIdGenerationStrategy loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.mediawiki.core.block.ParagraphBlock
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.mediawiki.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/mediawiki/core/block/ParagraphBlock.class
+Class org.eclipse.mylyn.internal.wikitext.mediawiki.core.block.ParagraphBlock loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.mediawiki.core.phrase.EscapePhraseModifier
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.mediawiki.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/mediawiki/core/phrase/EscapePhraseModifier.class
+Class org.eclipse.mylyn.internal.wikitext.mediawiki.core.phrase.EscapePhraseModifier loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.mediawiki.core.phrase.SimplePhraseModifier
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.mediawiki.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/mediawiki/core/phrase/SimplePhraseModifier.class
+Finding class org.eclipse.mylyn.internal.wikitext.mediawiki.core.phrase.SimpleWrappedPhraseModifier
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.mediawiki.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/mediawiki/core/phrase/SimpleWrappedPhraseModifier.class
+Class org.eclipse.mylyn.internal.wikitext.mediawiki.core.phrase.SimpleWrappedPhraseModifier loaded from ant loader (parentFirst)
+Class org.eclipse.mylyn.internal.wikitext.mediawiki.core.phrase.SimplePhraseModifier loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.markup.phrase.LimitedHtmlEndTagPhraseModifier
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/markup/phrase/LimitedHtmlEndTagPhraseModifier.class
+Class org.eclipse.mylyn.wikitext.core.parser.markup.phrase.LimitedHtmlEndTagPhraseModifier loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.markup.phrase.LimitedHtmlStartTagPhraseModifier
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/markup/phrase/LimitedHtmlStartTagPhraseModifier.class
+Class org.eclipse.mylyn.wikitext.core.parser.markup.phrase.LimitedHtmlStartTagPhraseModifier loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.markup.phrase.HtmlCommentPhraseModifier
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/markup/phrase/HtmlCommentPhraseModifier.class
+Class org.eclipse.mylyn.wikitext.core.parser.markup.phrase.HtmlCommentPhraseModifier loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.mediawiki.core.token.LineBreakToken
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.mediawiki.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/mediawiki/core/token/LineBreakToken.class
+Class org.eclipse.mylyn.internal.wikitext.mediawiki.core.token.LineBreakToken loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.mediawiki.core.token.ImageReplacementToken
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.mediawiki.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/mediawiki/core/token/ImageReplacementToken.class
+Class org.eclipse.mylyn.internal.wikitext.mediawiki.core.token.ImageReplacementToken loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.mediawiki.core.token.HyperlinkInternalReplacementToken
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.mediawiki.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/mediawiki/core/token/HyperlinkInternalReplacementToken.class
+Class org.eclipse.mylyn.internal.wikitext.mediawiki.core.token.HyperlinkInternalReplacementToken loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.mediawiki.core.token.HyperlinkExternalReplacementToken
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.mediawiki.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/mediawiki/core/token/HyperlinkExternalReplacementToken.class
+Class org.eclipse.mylyn.internal.wikitext.mediawiki.core.token.HyperlinkExternalReplacementToken loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.mediawiki.core.token.EntityReferenceReplacementToken
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.mediawiki.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/mediawiki/core/token/EntityReferenceReplacementToken.class
+Class org.eclipse.mylyn.internal.wikitext.mediawiki.core.token.EntityReferenceReplacementToken loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.mediawiki.core.BuiltInTemplateResolver
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.mediawiki.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/mediawiki/core/BuiltInTemplateResolver.class
+Finding class org.eclipse.mylyn.wikitext.mediawiki.core.TemplateResolver
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.mediawiki.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/mediawiki/core/TemplateResolver.class
+Class org.eclipse.mylyn.wikitext.mediawiki.core.TemplateResolver loaded from ant loader (parentFirst)
+Class org.eclipse.mylyn.internal.wikitext.mediawiki.core.BuiltInTemplateResolver loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.mediawiki.core.Template
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.mediawiki.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/mediawiki/core/Template.class
+Class org.eclipse.mylyn.wikitext.mediawiki.core.Template loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.mediawiki.core.DateTimeTemplate
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.mediawiki.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/mediawiki/core/DateTimeTemplate.class
+Class org.eclipse.mylyn.internal.wikitext.mediawiki.core.DateTimeTemplate loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.textile.core.TextileLanguage
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.textile.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/textile/core/TextileLanguage.class
+Class org.eclipse.mylyn.wikitext.textile.core.TextileLanguage loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.textile.core.TextileContentState
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.textile.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/textile/core/TextileContentState.class
+Class org.eclipse.mylyn.internal.wikitext.textile.core.TextileContentState loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.textile.core.TextileDocumentBuilder
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.textile.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/textile/core/TextileDocumentBuilder.class
+Class org.eclipse.mylyn.internal.wikitext.textile.core.TextileDocumentBuilder loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.textile.core.block.ParagraphBlock
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.textile.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/textile/core/block/ParagraphBlock.class
+Class org.eclipse.mylyn.internal.wikitext.textile.core.block.ParagraphBlock loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.textile.core.phrase.TagEscapeTextilePhraseModifier
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.textile.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/textile/core/phrase/TagEscapeTextilePhraseModifier.class
+Class org.eclipse.mylyn.internal.wikitext.textile.core.phrase.TagEscapeTextilePhraseModifier loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.textile.core.phrase.EscapeTextilePhraseModifier
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.textile.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/textile/core/phrase/EscapeTextilePhraseModifier.class
+Class org.eclipse.mylyn.internal.wikitext.textile.core.phrase.EscapeTextilePhraseModifier loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.textile.core.phrase.SimpleTextilePhraseModifier
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.textile.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/textile/core/phrase/SimpleTextilePhraseModifier.class
+Class org.eclipse.mylyn.internal.wikitext.textile.core.phrase.SimpleTextilePhraseModifier loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.textile.core.phrase.ImageTextilePhraseModifier
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.textile.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/textile/core/phrase/ImageTextilePhraseModifier.class
+Class org.eclipse.mylyn.internal.wikitext.textile.core.phrase.ImageTextilePhraseModifier loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.textile.core.phrase.HyperlinkPhraseModifier
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.textile.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/textile/core/phrase/HyperlinkPhraseModifier.class
+Class org.eclipse.mylyn.internal.wikitext.textile.core.phrase.HyperlinkPhraseModifier loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.builder.NoOpDocumentBuilder
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/builder/NoOpDocumentBuilder.class
+Class org.eclipse.mylyn.wikitext.core.parser.builder.NoOpDocumentBuilder loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.textile.core.token.FootnoteReferenceReplacementToken
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.textile.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/textile/core/token/FootnoteReferenceReplacementToken.class
+Class org.eclipse.mylyn.internal.wikitext.textile.core.token.FootnoteReferenceReplacementToken loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.markup.token.EntityWrappingReplacementToken
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/markup/token/EntityWrappingReplacementToken.class
+Class org.eclipse.mylyn.wikitext.core.parser.markup.token.EntityWrappingReplacementToken loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.markup.token.AcronymReplacementToken
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/markup/token/AcronymReplacementToken.class
+Class org.eclipse.mylyn.wikitext.core.parser.markup.token.AcronymReplacementToken loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.textile.core.token.EntityReplacementToken
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.textile.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/textile/core/token/EntityReplacementToken.class
+Class org.eclipse.mylyn.internal.wikitext.textile.core.token.EntityReplacementToken loaded from ant loader (parentFirst)
+Class java.util.HashSet loaded from parent loader (parentFirst)
+fileset: Setup scanner in dir C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build with patternSet{ includes: [**/*.textile] excludes: [] }
+Class org.apache.tools.ant.DirectoryScanner loaded from parent loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.core.ant.Messages
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core.ant_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/core/ant/Messages.class
+Class org.eclipse.mylyn.internal.wikitext.core.ant.Messages loaded from ant loader (parentFirst)
+Class java.util.MissingResourceException loaded from parent loader (parentFirst)
+Class java.util.ResourceBundle loaded from parent loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.core.ant.messages
+Resource org/eclipse/mylyn/internal/wikitext/core/ant/messages.properties loaded from ant loader
+Finding class org.eclipse.mylyn.internal.wikitext.core.ant.messages_en
+Couldn't load Resource org/eclipse/mylyn/internal/wikitext/core/ant/messages_en.properties
+Finding class org.eclipse.mylyn.internal.wikitext.core.ant.messages_en_US
+Couldn't load Resource org/eclipse/mylyn/internal/wikitext/core/ant/messages_en_US.properties
+Class java.text.MessageFormat loaded from parent loader (parentFirst)
+[wikitext-to-eclipse-help] Processing file 'C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\additional_details.textile'
+[wikitext-to-eclipse-help] Validating C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\additional_details.textile
+Finding class org.eclipse.mylyn.internal.wikitext.core.validation.StandaloneMarkupValidator
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/core/validation/StandaloneMarkupValidator.class
+Class org.eclipse.mylyn.internal.wikitext.core.validation.StandaloneMarkupValidator loaded from ant loader (parentFirst)
+Class java.lang.SecurityException loaded from parent loader (parentFirst)
+Class javax.xml.parsers.ParserConfigurationException loaded from parent loader (parentFirst)
+Class java.util.WeakHashMap loaded from parent loader (parentFirst)
+Class java.lang.Thread loaded from parent loader (parentFirst)
+Class java.util.Collections loaded from parent loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.Attributes
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/Attributes.class
+Class org.eclipse.mylyn.wikitext.core.parser.Attributes loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.LinkAttributes
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/LinkAttributes.class
+Class org.eclipse.mylyn.wikitext.core.parser.LinkAttributes loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.ImageAttributes
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/ImageAttributes.class
+Class org.eclipse.mylyn.wikitext.core.parser.ImageAttributes loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.builder.HtmlDocumentHandler
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/builder/HtmlDocumentHandler.class
+Class org.eclipse.mylyn.wikitext.core.parser.builder.HtmlDocumentHandler loaded from ant loader (parentFirst)
+Class java.io.FileReader loaded from parent loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.builder.HtmlDocumentBuilder$1
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/builder/HtmlDocumentBuilder$1.class
+Class org.eclipse.mylyn.wikitext.core.parser.builder.HtmlDocumentBuilder$1 loaded from ant loader (parentFirst)
+Finding class com.google.common.collect.ImmutableMap
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/ImmutableMap.class
+Class com.google.common.collect.ImmutableMap loaded from ant loader (parentFirst)
+Finding class com.google.common.collect.ImmutableMapValues
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/ImmutableMapValues.class
+Class com.google.common.collect.ImmutableMapValues loaded from ant loader (parentFirst)
+Finding class com.google.common.collect.RegularImmutableMap
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/RegularImmutableMap.class
+Class com.google.common.collect.RegularImmutableMap loaded from ant loader (parentFirst)
+Finding class com.google.common.collect.ImmutableBiMap
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/ImmutableBiMap.class
+Finding class com.google.common.collect.BiMap
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/BiMap.class
+Class com.google.common.collect.BiMap loaded from ant loader (parentFirst)
+Class com.google.common.collect.ImmutableBiMap loaded from ant loader (parentFirst)
+Finding class com.google.common.collect.ImmutableSet
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/ImmutableSet.class
+Class com.google.common.collect.ImmutableSet loaded from ant loader (parentFirst)
+Finding class com.google.common.collect.ImmutableMapKeySet
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/ImmutableMapKeySet.class
+Class com.google.common.collect.ImmutableMapKeySet loaded from ant loader (parentFirst)
+Finding class com.google.common.collect.ImmutableMap$MapViewOfValuesAsSingletonSets
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/ImmutableMap$MapViewOfValuesAsSingletonSets.class
+Class com.google.common.collect.ImmutableMap$MapViewOfValuesAsSingletonSets loaded from ant loader (parentFirst)
+Class java.util.Map$Entry loaded from parent loader (parentFirst)
+Finding class com.google.common.collect.ImmutableMap$Builder
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/ImmutableMap$Builder.class
+Class com.google.common.collect.ImmutableMap$Builder loaded from ant loader (parentFirst)
+Finding class com.google.common.collect.ImmutableMapEntry$TerminalEntry
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/ImmutableMapEntry$TerminalEntry.class
+Finding class com.google.common.collect.ImmutableMapEntry
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/ImmutableMapEntry.class
+Finding class com.google.common.collect.ImmutableEntry
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/ImmutableEntry.class
+Finding class com.google.common.collect.AbstractMapEntry
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/AbstractMapEntry.class
+Class com.google.common.collect.AbstractMapEntry loaded from ant loader (parentFirst)
+Class com.google.common.collect.ImmutableEntry loaded from ant loader (parentFirst)
+Class com.google.common.collect.ImmutableMapEntry loaded from ant loader (parentFirst)
+Class com.google.common.collect.ImmutableMapEntry$TerminalEntry loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.DocumentBuilder$SpanType
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/DocumentBuilder$SpanType.class
+Class java.lang.Enum loaded from parent loader (parentFirst)
+Class org.eclipse.mylyn.wikitext.core.parser.DocumentBuilder$SpanType loaded from ant loader (parentFirst)
+Finding class com.google.common.collect.CollectPreconditions
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/CollectPreconditions.class
+Class com.google.common.collect.CollectPreconditions loaded from ant loader (parentFirst)
+Finding class com.google.common.collect.ImmutableCollection$Builder
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/ImmutableCollection$Builder.class
+Class com.google.common.collect.ImmutableCollection$Builder loaded from ant loader (parentFirst)
+Class java.lang.AssertionError loaded from parent loader (parentFirst)
+Finding class com.google.common.collect.Platform
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/Platform.class
+Class com.google.common.collect.Platform loaded from ant loader (parentFirst)
+Class java.util.SortedMap loaded from parent loader (parentFirst)
+Class java.util.SortedSet loaded from parent loader (parentFirst)
+Class java.lang.reflect.Array loaded from parent loader (parentFirst)
+Class java.lang.Math loaded from parent loader (parentFirst)
+Class java.lang.System loaded from parent loader (parentFirst)
+Finding class com.google.common.collect.RegularImmutableMap$NonTerminalMapEntry
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/RegularImmutableMap$NonTerminalMapEntry.class
+Class com.google.common.collect.RegularImmutableMap$NonTerminalMapEntry loaded from ant loader (parentFirst)
+Finding class com.google.common.collect.RegularImmutableMap$EntrySet
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/RegularImmutableMap$EntrySet.class
+Finding class com.google.common.collect.ImmutableMapEntrySet
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/ImmutableMapEntrySet.class
+Class com.google.common.collect.ImmutableMapEntrySet loaded from ant loader (parentFirst)
+Class com.google.common.collect.RegularImmutableMap$EntrySet loaded from ant loader (parentFirst)
+Finding class com.google.common.collect.Hashing
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/Hashing.class
+Class com.google.common.collect.Hashing loaded from ant loader (parentFirst)
+Class java.lang.Integer loaded from parent loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.DocumentBuilder$BlockType
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/DocumentBuilder$BlockType.class
+Class org.eclipse.mylyn.wikitext.core.parser.DocumentBuilder$BlockType loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.builder.HtmlDocumentBuilder$ElementInfo
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/builder/HtmlDocumentBuilder$ElementInfo.class
+Class org.eclipse.mylyn.wikitext.core.parser.builder.HtmlDocumentBuilder$ElementInfo loaded from ant loader (parentFirst)
+Class javax.xml.stream.XMLStreamWriter loaded from parent loader (parentFirst)
+Finding class com.google.common.xml.XmlEscapers
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/xml/XmlEscapers.class
+Class com.google.common.xml.XmlEscapers loaded from ant loader (parentFirst)
+Finding class com.google.common.escape.Escapers
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/escape/Escapers.class
+Class com.google.common.escape.Escapers loaded from ant loader (parentFirst)
+Finding class com.google.common.escape.Escaper
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/escape/Escaper.class
+Class com.google.common.escape.Escaper loaded from ant loader (parentFirst)
+Finding class com.google.common.escape.Escapers$1
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/escape/Escapers$1.class
+Finding class com.google.common.escape.CharEscaper
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/escape/CharEscaper.class
+Class com.google.common.escape.CharEscaper loaded from ant loader (parentFirst)
+Class com.google.common.escape.Escapers$1 loaded from ant loader (parentFirst)
+Finding class com.google.common.escape.UnicodeEscaper
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/escape/UnicodeEscaper.class
+Class com.google.common.escape.UnicodeEscaper loaded from ant loader (parentFirst)
+Finding class com.google.common.escape.Escapers$2
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/escape/Escapers$2.class
+Class com.google.common.escape.Escapers$2 loaded from ant loader (parentFirst)
+Finding class com.google.common.base.Function
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/base/Function.class
+Class com.google.common.base.Function loaded from ant loader (parentFirst)
+Finding class com.google.common.escape.Escaper$1
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/escape/Escaper$1.class
+Class com.google.common.escape.Escaper$1 loaded from ant loader (parentFirst)
+Finding class com.google.common.escape.Escapers$Builder
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/escape/Escapers$Builder.class
+Class com.google.common.escape.Escapers$Builder loaded from ant loader (parentFirst)
+Finding class com.google.common.escape.Escapers$Builder$1
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/escape/Escapers$Builder$1.class
+Finding class com.google.common.escape.ArrayBasedCharEscaper
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/escape/ArrayBasedCharEscaper.class
+Class com.google.common.escape.ArrayBasedCharEscaper loaded from ant loader (parentFirst)
+Class com.google.common.escape.Escapers$Builder$1 loaded from ant loader (parentFirst)
+Class java.lang.Character loaded from parent loader (parentFirst)
+Finding class com.google.common.escape.ArrayBasedEscaperMap
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/escape/ArrayBasedEscaperMap.class
+Class com.google.common.escape.ArrayBasedEscaperMap loaded from ant loader (parentFirst)
+Class java.io.PrintWriter loaded from parent loader (parentFirst)
+Finding class com.google.common.collect.ImmutableSortedMap
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/ImmutableSortedMap.class
+Class java.util.NavigableMap loaded from parent loader (parentFirst)
+Finding class com.google.common.collect.ImmutableSortedMapFauxverideShim
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/collect/ImmutableSortedMapFauxverideShim.class
+Class com.google.common.collect.ImmutableSortedMapFauxverideShim loaded from ant loader (parentFirst)
+Class com.google.common.collect.ImmutableSortedMap loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.builder.HtmlDocumentBuilder$DefaultDocumentHandler
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/builder/HtmlDocumentBuilder$DefaultDocumentHandler.class
+Class org.eclipse.mylyn.wikitext.core.parser.builder.HtmlDocumentBuilder$DefaultDocumentHandler loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.builder.HtmlDocumentBuilder$Stylesheet
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/builder/HtmlDocumentBuilder$Stylesheet.class
+Class org.eclipse.mylyn.wikitext.core.parser.builder.HtmlDocumentBuilder$Stylesheet loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.core.parser.builder.SplittingOutlineParser
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/core/parser/builder/SplittingOutlineParser.class
+Finding class org.eclipse.mylyn.wikitext.core.parser.outline.OutlineParser
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/outline/OutlineParser.class
+Class org.eclipse.mylyn.wikitext.core.parser.outline.OutlineParser loaded from ant loader (parentFirst)
+Class org.eclipse.mylyn.internal.wikitext.core.parser.builder.SplittingOutlineParser loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.outline.OutlineParser$OutlineBuilder
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/outline/OutlineParser$OutlineBuilder.class
+Class org.eclipse.mylyn.wikitext.core.parser.outline.OutlineParser$OutlineBuilder loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.outline.OutlineItem$Visitor
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/outline/OutlineItem$Visitor.class
+Class org.eclipse.mylyn.wikitext.core.parser.outline.OutlineItem$Visitor loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.IdGenerator
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/IdGenerator.class
+Class org.eclipse.mylyn.wikitext.core.parser.IdGenerator loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.MarkupParser
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/MarkupParser.class
+Class org.eclipse.mylyn.wikitext.core.parser.MarkupParser loaded from ant loader (parentFirst)
+Class java.io.StringWriter loaded from parent loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.textile.core.block.HeadingBlock
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.textile.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/textile/core/block/HeadingBlock.class
+Class org.eclipse.mylyn.internal.wikitext.textile.core.block.HeadingBlock loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.textile.core.block.ListBlock
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.textile.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/textile/core/block/ListBlock.class
+Class org.eclipse.mylyn.internal.wikitext.textile.core.block.ListBlock loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.textile.core.block.DefinitionListBlock
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.textile.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/textile/core/block/DefinitionListBlock.class
+Class org.eclipse.mylyn.internal.wikitext.textile.core.block.DefinitionListBlock loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.ListAttributes
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/ListAttributes.class
+Class org.eclipse.mylyn.wikitext.core.parser.ListAttributes loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.textile.core.block.PreformattedBlock
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.textile.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/textile/core/block/PreformattedBlock.class
+Class org.eclipse.mylyn.internal.wikitext.textile.core.block.PreformattedBlock loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.textile.core.block.QuoteBlock
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.textile.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/textile/core/block/QuoteBlock.class
+Class org.eclipse.mylyn.internal.wikitext.textile.core.block.QuoteBlock loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.QuoteAttributes
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/QuoteAttributes.class
+Class org.eclipse.mylyn.wikitext.core.parser.QuoteAttributes loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.textile.core.block.CodeBlock
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.textile.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/textile/core/block/CodeBlock.class
+Class org.eclipse.mylyn.internal.wikitext.textile.core.block.CodeBlock loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.textile.core.block.FootnoteBlock
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.textile.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/textile/core/block/FootnoteBlock.class
+Class org.eclipse.mylyn.internal.wikitext.textile.core.block.FootnoteBlock loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.textile.core.block.NotextileBlock
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.textile.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/textile/core/block/NotextileBlock.class
+Class org.eclipse.mylyn.internal.wikitext.textile.core.block.NotextileBlock loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.textile.core.block.NotextileTagBlock
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.textile.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/textile/core/block/NotextileTagBlock.class
+Class org.eclipse.mylyn.internal.wikitext.textile.core.block.NotextileTagBlock loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.textile.core.block.TableBlock
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.textile.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/textile/core/block/TableBlock.class
+Class org.eclipse.mylyn.internal.wikitext.textile.core.block.TableBlock loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.TableAttributes
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/TableAttributes.class
+Class org.eclipse.mylyn.wikitext.core.parser.TableAttributes loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.TableRowAttributes
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/TableRowAttributes.class
+Class org.eclipse.mylyn.wikitext.core.parser.TableRowAttributes loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.TableCellAttributes
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/TableCellAttributes.class
+Class org.eclipse.mylyn.wikitext.core.parser.TableCellAttributes loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.textile.core.block.CommentBlock
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.textile.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/textile/core/block/CommentBlock.class
+Class org.eclipse.mylyn.internal.wikitext.textile.core.block.CommentBlock loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.textile.core.block.TextileGlossaryBlock
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.textile.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/textile/core/block/TextileGlossaryBlock.class
+Finding class org.eclipse.mylyn.wikitext.core.parser.markup.block.GlossaryBlock
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/markup/block/GlossaryBlock.class
+Class org.eclipse.mylyn.wikitext.core.parser.markup.block.GlossaryBlock loaded from ant loader (parentFirst)
+Class org.eclipse.mylyn.internal.wikitext.textile.core.block.TextileGlossaryBlock loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.textile.core.block.TableOfContentsBlock
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.textile.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/textile/core/block/TableOfContentsBlock.class
+Finding class org.eclipse.mylyn.internal.wikitext.textile.core.block.AbstractTableOfContentsBlock
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.textile.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/textile/core/block/AbstractTableOfContentsBlock.class
+Class org.eclipse.mylyn.internal.wikitext.textile.core.block.AbstractTableOfContentsBlock loaded from ant loader (parentFirst)
+Class org.eclipse.mylyn.internal.wikitext.textile.core.block.TableOfContentsBlock loaded from ant loader (parentFirst)
+Class java.lang.NumberFormatException loaded from parent loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.markup.PatternBasedElementProcessor
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/markup/PatternBasedElementProcessor.class
+Finding class org.eclipse.mylyn.wikitext.core.parser.util.Matcher
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/util/Matcher.class
+Class org.eclipse.mylyn.wikitext.core.parser.util.Matcher loaded from ant loader (parentFirst)
+Class org.eclipse.mylyn.wikitext.core.parser.markup.PatternBasedElementProcessor loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.markup.phrase.LiteralPhraseModifierProcessor
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/markup/phrase/LiteralPhraseModifierProcessor.class
+Class org.eclipse.mylyn.wikitext.core.parser.markup.phrase.LiteralPhraseModifierProcessor loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.textile.core.phrase.SimpleTextilePhraseModifier$SimplePhraseModifierProcessor
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.textile.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/textile/core/phrase/SimpleTextilePhraseModifier$SimplePhraseModifierProcessor.class
+Class org.eclipse.mylyn.internal.wikitext.textile.core.phrase.SimpleTextilePhraseModifier$SimplePhraseModifierProcessor loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.textile.core.phrase.SimpleTextilePhraseModifier$Mode
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.textile.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/textile/core/phrase/SimpleTextilePhraseModifier$Mode.class
+Class org.eclipse.mylyn.internal.wikitext.textile.core.phrase.SimpleTextilePhraseModifier$Mode loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.textile.core.phrase.ImageTextilePhraseModifier$ImagePhraseModifierProcessor
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.textile.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/textile/core/phrase/ImageTextilePhraseModifier$ImagePhraseModifierProcessor.class
+Class org.eclipse.mylyn.internal.wikitext.textile.core.phrase.ImageTextilePhraseModifier$ImagePhraseModifierProcessor loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.textile.core.phrase.HyperlinkPhraseModifier$HyperlinkProcessor
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.textile.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/textile/core/phrase/HyperlinkPhraseModifier$HyperlinkProcessor.class
+Class org.eclipse.mylyn.internal.wikitext.textile.core.phrase.HyperlinkPhraseModifier$HyperlinkProcessor loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.markup.token.EntityReplacementTokenProcessor
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/markup/token/EntityReplacementTokenProcessor.class
+Class org.eclipse.mylyn.wikitext.core.parser.markup.token.EntityReplacementTokenProcessor loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.textile.core.token.FootnoteReferenceReplacementToken$FootnoteReferenceReplacementTokenProcessor
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.textile.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/textile/core/token/FootnoteReferenceReplacementToken$FootnoteReferenceReplacementTokenProcessor.class
+Class org.eclipse.mylyn.internal.wikitext.textile.core.token.FootnoteReferenceReplacementToken$FootnoteReferenceReplacementTokenProcessor loaded from ant loader (parentFirst)
+Class java.util.Locale loaded from parent loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.textile.core.language
+Resource org/eclipse/mylyn/wikitext/textile/core/language.properties loaded from ant loader
+Finding class org.eclipse.mylyn.wikitext.textile.core.language_en
+Couldn't load Resource org/eclipse/mylyn/wikitext/textile/core/language_en.properties
+Finding class org.eclipse.mylyn.wikitext.textile.core.language_en_US
+Couldn't load Resource org/eclipse/mylyn/wikitext/textile/core/language_en_US.properties
+Finding class org.eclipse.mylyn.wikitext.core.parser.markup.token.EntityWrappingReplacementToken$EntityWrappingReplacementTokenProcessor
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/markup/token/EntityWrappingReplacementToken$EntityWrappingReplacementTokenProcessor.class
+Class org.eclipse.mylyn.wikitext.core.parser.markup.token.EntityWrappingReplacementToken$EntityWrappingReplacementTokenProcessor loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.markup.token.AcronymReplacementToken$AcronymReplacementTokenProcessor
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/markup/token/AcronymReplacementToken$AcronymReplacementTokenProcessor.class
+Class org.eclipse.mylyn.wikitext.core.parser.markup.token.AcronymReplacementToken$AcronymReplacementTokenProcessor loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.textile.core.token.EntityReplacementToken$1
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.textile.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/textile/core/token/EntityReplacementToken$1.class
+Class org.eclipse.mylyn.internal.wikitext.textile.core.token.EntityReplacementToken$1 loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.util.LocationTrackingReader
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/util/LocationTrackingReader.class
+Class org.eclipse.mylyn.wikitext.core.util.LocationTrackingReader loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.textile.core.Textile
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.textile.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/textile/core/Textile.class
+Class org.eclipse.mylyn.internal.wikitext.textile.core.Textile loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.util.MatcherAdaper
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/util/MatcherAdaper.class
+Class org.eclipse.mylyn.wikitext.core.parser.util.MatcherAdaper loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.HeadingAttributes
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/HeadingAttributes.class
+Class org.eclipse.mylyn.wikitext.core.parser.HeadingAttributes loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.textile.core.block.ListBlock$ListState
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.textile.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/textile/core/block/ListBlock$ListState.class
+Class org.eclipse.mylyn.internal.wikitext.textile.core.block.ListBlock$ListState loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.core.parser.builder.SplitOutlineItem$1
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/core/parser/builder/SplitOutlineItem$1.class
+Class org.eclipse.mylyn.internal.wikitext.core.parser.builder.SplitOutlineItem$1 loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.internal.wikitext.core.parser.builder.SplitOutlineItem$2
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/internal/wikitext/core/parser/builder/SplitOutlineItem$2.class
+Class org.eclipse.mylyn.internal.wikitext.core.parser.builder.SplitOutlineItem$2 loaded from ant loader (parentFirst)
+Finding class org.eclipse.mylyn.wikitext.core.parser.markup.PatternBasedElementProcessor$Group
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\org.eclipse.mylyn.wikitext.core_2.9.0.v20160513-1433.jar org/eclipse/mylyn/wikitext/core/parser/markup/PatternBasedElementProcessor$Group.class
+Class org.eclipse.mylyn.wikitext.core.parser.markup.PatternBasedElementProcessor$Group loaded from ant loader (parentFirst)
+Class java.io.PrintStream loaded from parent loader (parentFirst)
+Help: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\additional_details.html
+[wikitext-to-eclipse-help] multipleOutputFiles have already been created in folder 'C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build'
+[wikitext-to-eclipse-help] Processing file 'C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\developers_guide.textile'
+[wikitext-to-eclipse-help] Validating C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\developers_guide.textile
+Help: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\developers_guide.html
+[wikitext-to-eclipse-help] multipleOutputFiles have already been created in folder 'C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build'
+[wikitext-to-eclipse-help] Processing file 'C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\how_to_invoke_model_migration.textile'
+[wikitext-to-eclipse-help] Validating C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\how_to_invoke_model_migration.textile
+Help: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\how_to_invoke_model_migration.html
+[wikitext-to-eclipse-help] multipleOutputFiles have already been created in folder 'C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build'
+[wikitext-to-eclipse-help] Processing file 'C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\meta_model_changes.textile'
+[wikitext-to-eclipse-help] Validating C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\meta_model_changes.textile
+Finding class com.google.common.base.CharMatcher
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/base/CharMatcher.class
+Finding class com.google.common.base.Predicate
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/base/Predicate.class
+Class com.google.common.base.Predicate loaded from ant loader (parentFirst)
+Class com.google.common.base.CharMatcher loaded from ant loader (parentFirst)
+Finding class com.google.common.base.CharMatcher$1
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/base/CharMatcher$1.class
+Class com.google.common.base.CharMatcher$1 loaded from ant loader (parentFirst)
+Finding class com.google.common.base.CharMatcher$RangesMatcher
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/base/CharMatcher$RangesMatcher.class
+Class com.google.common.base.CharMatcher$RangesMatcher loaded from ant loader (parentFirst)
+Finding class com.google.common.base.CharMatcher$2
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/base/CharMatcher$2.class
+Class com.google.common.base.CharMatcher$2 loaded from ant loader (parentFirst)
+Finding class com.google.common.base.CharMatcher$3
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/base/CharMatcher$3.class
+Class com.google.common.base.CharMatcher$3 loaded from ant loader (parentFirst)
+Finding class com.google.common.base.CharMatcher$4
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/base/CharMatcher$4.class
+Class com.google.common.base.CharMatcher$4 loaded from ant loader (parentFirst)
+Finding class com.google.common.base.CharMatcher$5
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/base/CharMatcher$5.class
+Class com.google.common.base.CharMatcher$5 loaded from ant loader (parentFirst)
+Finding class com.google.common.base.CharMatcher$6
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/base/CharMatcher$6.class
+Class com.google.common.base.CharMatcher$6 loaded from ant loader (parentFirst)
+Finding class com.google.common.base.CharMatcher$7
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/base/CharMatcher$7.class
+Finding class com.google.common.base.CharMatcher$FastMatcher
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/base/CharMatcher$FastMatcher.class
+Class com.google.common.base.CharMatcher$FastMatcher loaded from ant loader (parentFirst)
+Class com.google.common.base.CharMatcher$7 loaded from ant loader (parentFirst)
+Finding class com.google.common.base.CharMatcher$8
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/base/CharMatcher$8.class
+Class com.google.common.base.CharMatcher$8 loaded from ant loader (parentFirst)
+Finding class com.google.common.base.CharMatcher$15
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/base/CharMatcher$15.class
+Class com.google.common.base.CharMatcher$15 loaded from ant loader (parentFirst)
+Finding class com.google.common.base.CharMatcher$9
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/base/CharMatcher$9.class
+Class com.google.common.base.CharMatcher$9 loaded from ant loader (parentFirst)
+Finding class com.google.common.base.CharMatcher$Or
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/base/CharMatcher$Or.class
+Class com.google.common.base.CharMatcher$Or loaded from ant loader (parentFirst)
+Finding class com.google.common.base.CharMatcher$13
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/base/CharMatcher$13.class
+Class com.google.common.base.CharMatcher$13 loaded from ant loader (parentFirst)
+Finding class com.google.common.base.CharMatcher$NegatedMatcher
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/base/CharMatcher$NegatedMatcher.class
+Class com.google.common.base.CharMatcher$NegatedMatcher loaded from ant loader (parentFirst)
+Finding class com.google.common.base.CharMatcher$And
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/base/CharMatcher$And.class
+Class com.google.common.base.CharMatcher$And loaded from ant loader (parentFirst)
+Finding class com.google.common.base.CharMatcher$NegatedFastMatcher
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/base/CharMatcher$NegatedFastMatcher.class
+Class com.google.common.base.CharMatcher$NegatedFastMatcher loaded from ant loader (parentFirst)
+Finding class com.google.common.base.CharMatcher$11
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/base/CharMatcher$11.class
+Class com.google.common.base.CharMatcher$11 loaded from ant loader (parentFirst)
+Finding class com.google.common.base.CharMatcher$10
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/base/CharMatcher$10.class
+Class com.google.common.base.CharMatcher$10 loaded from ant loader (parentFirst)
+Finding class com.google.common.base.CharMatcher$12
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/base/CharMatcher$12.class
+Class com.google.common.base.CharMatcher$12 loaded from ant loader (parentFirst)
+Finding class com.google.common.base.CharMatcher$14
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/base/CharMatcher$14.class
+Class com.google.common.base.CharMatcher$14 loaded from ant loader (parentFirst)
+Finding class com.google.common.base.CharMatcher$BitSetMatcher
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/base/CharMatcher$BitSetMatcher.class
+Class com.google.common.base.CharMatcher$BitSetMatcher loaded from ant loader (parentFirst)
+Finding class com.google.common.escape.Platform
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/escape/Platform.class
+Class com.google.common.escape.Platform loaded from ant loader (parentFirst)
+Class java.lang.ThreadLocal loaded from parent loader (parentFirst)
+Finding class com.google.common.escape.Platform$1
+Loaded from C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-wikitext-lib\com.google.guava_15.0.0.v201403281430.jar com/google/common/escape/Platform$1.class
+Class com.google.common.escape.Platform$1 loaded from ant loader (parentFirst)
+Help: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\meta_model_changes.html
+[wikitext-to-eclipse-help] multipleOutputFiles have already been created in folder 'C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build'
+[wikitext-to-eclipse-help] Processing file 'C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\model_migration.textile'
+[wikitext-to-eclipse-help] Validating C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\model_migration.textile
+Help: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\model_migration.html
+[wikitext-to-eclipse-help] multipleOutputFiles have already been created in folder 'C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build'
+[wikitext-to-eclipse-help] Processing file 'C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\prerequisites_for_model_migration.textile'
+[wikitext-to-eclipse-help] Validating C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\prerequisites_for_model_migration.textile
+Help: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\prerequisites_for_model_migration.html
+[wikitext-to-eclipse-help] multipleOutputFiles have already been created in folder 'C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build'
+[wikitext-to-eclipse-help] Processing file 'C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\supported_model_migrations.textile'
+[wikitext-to-eclipse-help] Validating C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\supported_model_migrations.textile
+Help: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\supported_model_migrations.html
+fileset: Setup scanner in dir C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build with patternSet{ includes: [**/*.html] excludes: [] }
+     [copy] additional_details.html added as additional_details.html is outdated.
+     [copy] developers_guide.html added as developers_guide.html is outdated.
+     [copy] how_to_invoke_model_migration.html added as how_to_invoke_model_migration.html is outdated.
+     [copy] meta_model_changes.html added as meta_model_changes.html is outdated.
+     [copy] model_migration.html added as model_migration.html is outdated.
+     [copy] prerequisites_for_model_migration.html added as prerequisites_for_model_migration.html is outdated.
+     [copy] supported_model_migrations.html added as supported_model_migrations.html is outdated.
+     [copy] No sources found.
+     [copy] Copying 7 files to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\help
+     [copy] Copying C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\additional_details.html to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\help\additional_details.html
+     [copy] Copying C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\developers_guide.html to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\help\developers_guide.html
+     [copy] Copying C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\how_to_invoke_model_migration.html to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\help\how_to_invoke_model_migration.html
+     [copy] Copying C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\meta_model_changes.html to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\help\meta_model_changes.html
+     [copy] Copying C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\model_migration.html to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\help\model_migration.html
+     [copy] Copying C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\prerequisites_for_model_migration.html to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\help\prerequisites_for_model_migration.html
+     [copy] Copying C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\supported_model_migrations.html to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\help\supported_model_migrations.html
+fileset: Setup scanner in dir C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\docu-styles with patternSet{ includes: [] excludes: [] }
+     [copy] help.css omitted as C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\help\help.css is up to date.
+     [copy]  added as  is outdated.
+fileset: Setup scanner in dir C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build with patternSet{ includes: [**/*-toc.xml] excludes: [] }
+     [copy] additional_details-toc.xml added as additional_details-toc.xml is outdated.
+     [copy] developers_guide-toc.xml added as developers_guide-toc.xml is outdated.
+     [copy] how_to_invoke_model_migration-toc.xml added as how_to_invoke_model_migration-toc.xml is outdated.
+     [copy] meta_model_changes-toc.xml added as meta_model_changes-toc.xml is outdated.
+     [copy] model_migration-toc.xml added as model_migration-toc.xml is outdated.
+     [copy] prerequisites_for_model_migration-toc.xml added as prerequisites_for_model_migration-toc.xml is outdated.
+     [copy] supported_model_migrations-toc.xml added as supported_model_migrations-toc.xml is outdated.
+     [copy] No sources found.
+     [copy] Copying 7 files to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\toc
+     [copy] Copying C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\additional_details-toc.xml to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\toc\additional_details-toc.xml
+     [copy] Copying C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\developers_guide-toc.xml to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\toc\developers_guide-toc.xml
+     [copy] Copying C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\how_to_invoke_model_migration-toc.xml to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\toc\how_to_invoke_model_migration-toc.xml
+     [copy] Copying C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\meta_model_changes-toc.xml to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\toc\meta_model_changes-toc.xml
+     [copy] Copying C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\model_migration-toc.xml to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\toc\model_migration-toc.xml
+     [copy] Copying C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\prerequisites_for_model_migration-toc.xml to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\toc\prerequisites_for_model_migration-toc.xml
+     [copy] Copying C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\supported_model_migrations-toc.xml to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\toc\supported_model_migrations-toc.xml
+   [delete] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build
+   [delete] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\additional_details-toc.xml
+   [delete] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\additional_details.html
+   [delete] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\additional_details.textile
+   [delete] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\developers_guide-toc.xml
+   [delete] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\developers_guide.html
+   [delete] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\developers_guide.textile
+   [delete] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\how_to_invoke_model_migration-toc.xml
+   [delete] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\how_to_invoke_model_migration.html
+   [delete] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\how_to_invoke_model_migration.textile
+   [delete] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\meta_model_changes-toc.xml
+   [delete] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\meta_model_changes.html
+   [delete] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\meta_model_changes.textile
+   [delete] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\model_migration-toc.xml
+   [delete] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\model_migration.html
+   [delete] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\model_migration.textile
+   [delete] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\prerequisites_for_model_migration-toc.xml
+   [delete] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\prerequisites_for_model_migration.html
+   [delete] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\prerequisites_for_model_migration.textile
+   [delete] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\supported_model_migrations-toc.xml
+   [delete] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\supported_model_migrations.html
+   [delete] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build\supported_model_migrations.textile
+   [delete] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build
+      [ant] Exiting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\build_dependencies\build-docu.xml.
+      [ant] Exiting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\build-help.ant.
+[INFO] Executed tasks
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ org.eclipse.app4mc.amalthea.converters.help ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\target\classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.help.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\src\main\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\src\main\resources
+[INFO] 
+[INFO] --- tycho-compiler-plugin:2.3.0:compile (default-compile) @ org.eclipse.app4mc.amalthea.converters.help ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-compiler-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile' with basic configurator -->
+[DEBUG]   (f) basedir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\target
+[DEBUG]   (f) compilerId = jdt
+[DEBUG]   (f) copyResources = true
+[DEBUG]   (f) debug = true
+[DEBUG]   (f) deriveReleaseCompilerArgumentFromTargetLevel = true
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) failOnWarning = false
+[DEBUG]   (f) fork = false
+[DEBUG]   (f) generatedSourcesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\target\generated-sources\annotations
+[DEBUG]   (f) logDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\target\compile-logs
+[DEBUG]   (f) optimize = false
+[DEBUG]   (f) outputFileName = org.eclipse.app4mc.amalthea.converters.help-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml
+[DEBUG]   (f) requireJREPackageImports = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showDeprecation = false
+[DEBUG]   (f) showWarnings = false
+[DEBUG]   (f) staleMillis = 0
+[DEBUG]   (f) strictCompilerTarget = false
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useProjectSettings = true
+[DEBUG]   (f) verbose = false
+[DEBUG] -- end configuration --
+[DEBUG] Manifest BREEs: []
+[DEBUG] Target Platform EE: OSGi profile 'JavaSE-11' { source level: 11, target level: 11}
+[DEBUG] Effective source/target: 11/11
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ org.eclipse.app4mc.amalthea.converters.help ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\target\test-classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\src\test\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.help.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\src\test\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\src\test\resources
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ org.eclipse.app4mc.amalthea.converters.help ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.help-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- target-platform-configuration:2.3.0:target-platform (default-target-platform) @ org.eclipse.app4mc.amalthea.converters.help ---
+[DEBUG] Configuring mojo org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform from plugin realm ClassRealm[plugin>org.eclipse.tycho:target-platform-configuration:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin) @ org.eclipse.app4mc.amalthea.converters.help ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin' with basic configurator -->
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\target
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.help-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) strictBinIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\target\org.eclipse.app4mc.amalthea.converters.help-1.1.0-SNAPSHOT.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory help/
+[DEBUG] adding directory pictures/
+[DEBUG] adding directory pictures/dev_guide/
+[DEBUG] adding directory pictures/ui/
+[DEBUG] adding directory pictures/utility/
+[DEBUG] adding directory sequence_diagram/
+[DEBUG] adding directory toc/
+[DEBUG] adding directory util_plugins/
+[DEBUG] adding entry about.html
+[DEBUG] adding entry epl-2.0.html
+[DEBUG] adding entry help/additional_details.html
+[DEBUG] adding entry help/developers_guide.html
+[DEBUG] adding entry help/help.css
+[DEBUG] adding entry help/how_to_invoke_model_migration.html
+[DEBUG] adding entry help/meta_model_changes.html
+[DEBUG] adding entry help/model_migration.html
+[DEBUG] adding entry help/prerequisites_for_model_migration.html
+[DEBUG] adding entry help/supported_model_migrations.html
+[DEBUG] adding entry pictures/class_name_changes_itea1.1.0_0.7.0.png
+[DEBUG] adding entry pictures/converters_content.png
+[DEBUG] adding entry pictures/dev_guide/cache_builder.png
+[DEBUG] adding entry pictures/dev_guide/converters_content.png
+[DEBUG] adding entry pictures/dev_guide/converters_dependencies.png
+[DEBUG] adding entry pictures/dev_guide/converters_dependencies_details.png
+[DEBUG] adding entry pictures/dev_guide/converters_extension_points.png
+[DEBUG] adding entry pictures/dev_guide/post_processor.png
+[DEBUG] adding entry pictures/dev_guide/pre_processor.png
+[DEBUG] adding entry pictures/hwmodel_attributes_features.png
+[DEBUG] adding entry pictures/labelswitch_migration.png
+[DEBUG] adding entry pictures/labelvalueentry_stimuli_migration.png
+[DEBUG] adding entry pictures/mappingmodel_processallocations.png
+[DEBUG] adding entry pictures/migration_flow.png
+[DEBUG] adding entry pictures/OSBuffering_migration_071_072.png
+[DEBUG] adding entry pictures/ui/file-open-dialog.png
+[DEBUG] adding entry pictures/ui/generated_model_file_names.png
+[DEBUG] adding entry pictures/ui/linked_files_creation.png
+[DEBUG] adding entry pictures/ui/migration-menu-dialog.png
+[DEBUG] adding entry pictures/ui/migration-result.png
+[DEBUG] adding entry pictures/ui/vm_arguments_configuration.png
+[DEBUG] adding entry pictures/utility/configuring_models_mwe2.png
+[DEBUG] adding entry pictures/utility/copy_models.png
+[DEBUG] adding entry pictures/utility/execute_workflow.png
+[DEBUG] adding entry pictures/utility/franca_interface_handling.png
+[DEBUG] adding entry pictures/utility/import.png
+[DEBUG] adding entry pictures/utility/import_existing_projects.png
+[DEBUG] adding entry pictures/utility/select_project_to_import.png
+[DEBUG] adding entry plugin.xml
+[DEBUG] adding entry root-dev_migration-toc.xml
+[DEBUG] adding entry root-user_migration-toc.xml
+[DEBUG] adding entry sequence_diagram/model_migration_sequence_diagram.png
+[DEBUG] adding entry toc/additional_details-toc.xml
+[DEBUG] adding entry toc/developers_guide-toc.xml
+[DEBUG] adding entry toc/how_to_invoke_model_migration-toc.xml
+[DEBUG] adding entry toc/meta_model_changes-toc.xml
+[DEBUG] adding entry toc/model_migration-toc.xml
+[DEBUG] adding entry toc/prerequisites_for_model_migration-toc.xml
+[DEBUG] adding entry toc/supported_model_migrations-toc.xml
+[DEBUG] adding entry util_plugins/1.0.3_org.itea2.amalthea.urifragments.converter.zip
+[DEBUG] adding entry util_plugins/1.1.0_org.itea2.amalthea.urifragments.converter.zip
+[DEBUG] adding directory META-INF/maven/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.help/
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.help/pom.xml
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.help/pom.properties
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default) @ org.eclipse.app4mc.amalthea.converters.help ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default' with basic configurator -->
+[DEBUG]   (f) attachP2Metadata = true
+[DEBUG]   (f) baselineMode = warn
+[DEBUG]   (f) baselineReplace = none
+[DEBUG]   (f) url = https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/
+[DEBUG]   (f) baselineRepositories = [org.eclipse.tycho.plugins.p2.Repository@7a49293f]
+[DEBUG]   (f) defaultP2Metadata = true
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default {execution: default-p2-metadata-default}
+[DEBUG]   (f) generateDownloadStatsProperty = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml
+[DEBUG] -- end configuration --
+[INFO] No baseline version MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml
+[INFO] 
+[INFO] --< org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui >--
+[INFO] Building [bundle] APP4MC Amalthea Converters UI 1.1.0-SNAPSHOT   [21/47]
+[INFO] ---------------------------[ eclipse-plugin ]---------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): [compile]
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <baseDir>${project.basedir}</baseDir>
+  <execution>${mojoExecution}</execution>
+  <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
+  <format default-value="yyyyMMddHHmm"/>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id (default-validate-id)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version (default-validate-version)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <strictVersions default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources (default-resources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources default-value="${project.resources}"/>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile (default-compile)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <basedir>${basedir}</basedir>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <compilerId default-value="jdt">${maven.compiler.compilerId}</compilerId>
+  <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
+  <copyResources default-value="true"/>
+  <debug default-value="true">${maven.compiler.debug}</debug>
+  <deriveReleaseCompilerArgumentFromTargetLevel default-value="true"/>
+  <encoding>${project.build.sourceEncoding}</encoding>
+  <executable>${maven.compiler.executable}</executable>
+  <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
+  <fork default-value="false"/>
+  <generatedSourcesDirectory default-value="${project.build.directory}/generated-sources/annotations"/>
+  <logDirectory default-value="${project.build.directory}/compile-logs"/>
+  <mavenCompilerEncoding>${maven.compiler.encoding}</mavenCompilerEncoding>
+  <maxmem>${maven.compiler.maxmem}</maxmem>
+  <meminitial>${maven.compiler.meminitial}</meminitial>
+  <optimize default-value="false">${maven.compiler.optimize}</optimize>
+  <outputFileName>${project.build.finalName}</outputFileName>
+  <project>${project}</project>
+  <release>${maven.compiler.release}</release>
+  <requireJREPackageImports default-value="false"/>
+  <session>${session}</session>
+  <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
+  <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
+  <source>${maven.compiler.source}</source>
+  <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
+  <strictCompilerTarget default-value="false"/>
+  <target>${maven.compiler.target}</target>
+  <useJDK default-value="SYSTEM"/>
+  <useProjectSettings default-value="true"/>
+  <verbose default-value="false">${maven.compiler.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources (default-testResources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources>${project.testResources}</resources>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform (default-target-platform)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <finalName>${project.build.finalName}</finalName>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <strictBinIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attachP2Metadata default-value="true"/>
+  <baselineMode default-value="warn">${tycho.baseline}</baselineMode>
+  <baselineReplace default-value="all">none</baselineReplace>
+  <baselineRepositories>
+    <repository>
+      <url>https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/</url>
+    </repository>
+  </baselineRepositories>
+  <defaultP2Metadata default-value="true"/>
+  <execution>${mojoExecution}</execution>
+  <generateDownloadStatsProperty default-value="false">${tycho.generateDownloadStatsProperty}</generateDownloadStatsProperty>
+  <project>${project}</project>
+</configuration>
+[DEBUG] =======================================================================
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=19999, ConflictMarker.markTime=16500, ConflictMarker.nodeCount=45, ConflictIdSorter.graphTime=21801, ConflictIdSorter.topsortTime=13400, ConflictIdSorter.conflictIdCount=35, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=146700, ConflictResolver.conflictItemCount=44, DefaultDependencyCollector.collectTime=461801, DefaultDependencyCollector.transformTime=235600}
+[DEBUG] org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:eclipse-plugin:1.1.0-SNAPSHOT
+[DEBUG]    p2.eclipse-plugin:javax.annotation:jar:1.2.0.v201602091430:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi:jar:3.15.100.v20191114-1701:system
+[DEBUG]    p2.eclipse-plugin:org.apache.felix.scr:jar:2.1.14.v20190123-1619:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.services:jar:3.8.0.v20190206-2147:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.util:jar:3.5.300.v20190708-1141:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.common:jar:3.10.600.v20191004-1420:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.app4mc.util.sessionlog:jar:1.1.0.202104211257:system
+[DEBUG]    p2.eclipse-plugin:org.jdom2:jar:2.0.6.v20191125-0928:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.runtime:jar:3.17.0.v20191122-2104:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.resources:jar:3.13.600.v20191122-2104:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.expressions:jar:3.6.600.v20191122-2104:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.e4.core.services:jar:2.2.100.v20191122-2104:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.jface:jar:3.18.0.v20191122-2109:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.e4.core.di:jar:1.7.500.v20190916-2125:system
+[DEBUG]    p2.eclipse-plugin:javax.inject:jar:1.0.0.v20091030:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.e4.core.contexts:jar:1.8.300.v20191017-1404:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.e4.core.di.annotations:jar:1.6.500.v20190925-0538:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.e4.core.di.extensions:jar:0.15.400.v20191122-2104:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.e4.ui.di:jar:1.2.700.v20191114-0830:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.e4.ui.services:jar:1.3.700.v20190930-1643:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.commands:jar:3.9.600.v20191122-2109:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.contenttype:jar:3.7.500.v20190916-2125:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.preferences:jar:3.7.600.v20191017-2055:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.registry:jar:3.8.600.v20191017-2055:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.filesystem:jar:1.7.600.v20191122-2104:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.jobs:jar:3.10.600.v20191122-2104:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.app:jar:1.4.300.v20190815-1535:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.e4.core.di.extensions.supplier:jar:0.15.400.v20190709-0707:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.event:jar:1.5.300.v20191001-1333:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.swt:jar:3.113.0.v20191204-0601:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.swt.win32.win32.x86_64:jar:3.113.0.v20191204-0601:system
+[DEBUG]    p2.eclipse-plugin:org.jaxen:jar:1.1.6.v20191106-1554:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.swt.gtk.linux.x86_64:jar:3.113.0.v20191204-0601:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.swt.cocoa.macosx.x86_64:jar:3.113.0.v20191204-0601:system
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ org.eclipse.app4mc.amalthea.converters.ui ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\test-classes
+[DEBUG] -- end configuration --
+[INFO] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\sourcebundle-l10n-gen\OSGI-INF\l10n\bundle-src.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\sourcebundle-l10n-gen\OSGI-INF\l10n
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\sourcebundle-l10n-gen\OSGI-INF
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\sourcebundle-l10n-gen
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\p2content.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\p2artifacts.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\org.eclipse.app4mc.amalthea.converters.ui-1.1.0-SNAPSHOT.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\org.eclipse.app4mc.amalthea.converters.ui-1.1.0-SNAPSHOT-sources.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\maven-archiver\pom.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\maven-archiver
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\MANIFEST.MF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\local-artifacts.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\generated-sources\annotations
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\generated-sources
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\classes\org\eclipse\app4mc\amalthea\converters\ui\jobs\ModelMigrationJob.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\classes\org\eclipse\app4mc\amalthea\converters\ui\jobs\IMigrationJobConstants.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\classes\org\eclipse\app4mc\amalthea\converters\ui\jobs
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\classes\org\eclipse\app4mc\amalthea\converters\ui\handlers\AmaltheaResourceExpression.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\classes\org\eclipse\app4mc\amalthea\converters\ui\handlers\AmaltheaModelMigrationHandler.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\classes\org\eclipse\app4mc\amalthea\converters\ui\handlers
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\classes\org\eclipse\app4mc\amalthea\converters\ui\dialog\ModelMigrationDialog.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\classes\org\eclipse\app4mc\amalthea\converters\ui\dialog\ModelMigrationDialog$6.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\classes\org\eclipse\app4mc\amalthea\converters\ui\dialog\ModelMigrationDialog$5.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\classes\org\eclipse\app4mc\amalthea\converters\ui\dialog\ModelMigrationDialog$4.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\classes\org\eclipse\app4mc\amalthea\converters\ui\dialog\ModelMigrationDialog$3.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\classes\org\eclipse\app4mc\amalthea\converters\ui\dialog\ModelMigrationDialog$2.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\classes\org\eclipse\app4mc\amalthea\converters\ui\dialog\ModelMigrationDialog$1.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\classes\org\eclipse\app4mc\amalthea\converters\ui\dialog\MigrationResultDialog.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\classes\org\eclipse\app4mc\amalthea\converters\ui\dialog\MigrationResultDialog$2.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\classes\org\eclipse\app4mc\amalthea\converters\ui\dialog\MigrationResultDialog$1.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\classes\org\eclipse\app4mc\amalthea\converters\ui\dialog
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\classes\org\eclipse\app4mc\amalthea\converters\ui\addons\ConverterUIAddon.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\classes\org\eclipse\app4mc\amalthea\converters\ui\addons
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\classes\org\eclipse\app4mc\amalthea\converters\ui
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\classes\org\eclipse\app4mc\amalthea\converters
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\classes\org\eclipse\app4mc\amalthea
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\classes\org\eclipse\app4mc
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\classes\org\eclipse
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\classes\org
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\classes
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\site
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier) @ org.eclipse.app4mc.amalthea.converters.ui ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier' with basic configurator -->
+[DEBUG]   (f) baseDir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier {execution: default-build-qualifier}
+[DEBUG]   (s) format = yyyyMMddHHmm
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] The project's OSGi version is 1.1.0.202104220626
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-id (default-validate-id) @ org.eclipse.app4mc.amalthea.converters.ui ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-version (default-validate-version) @ org.eclipse.app4mc.amalthea.converters.ui ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF
+[DEBUG]   (f) strictVersions = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ org.eclipse.app4mc.amalthea.converters.ui ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.ui.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\src\main\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\src\main\resources
+[INFO] 
+[INFO] --- tycho-compiler-plugin:2.3.0:compile (default-compile) @ org.eclipse.app4mc.amalthea.converters.ui ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-compiler-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile' with basic configurator -->
+[DEBUG]   (f) basedir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target
+[DEBUG]   (f) compilerId = jdt
+[DEBUG]   (f) copyResources = true
+[DEBUG]   (f) debug = true
+[DEBUG]   (f) deriveReleaseCompilerArgumentFromTargetLevel = true
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) failOnWarning = false
+[DEBUG]   (f) fork = false
+[DEBUG]   (f) generatedSourcesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\generated-sources\annotations
+[DEBUG]   (f) logDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\compile-logs
+[DEBUG]   (f) optimize = false
+[DEBUG]   (f) outputFileName = org.eclipse.app4mc.amalthea.converters.ui-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF
+[DEBUG]   (f) requireJREPackageImports = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showDeprecation = false
+[DEBUG]   (f) showWarnings = false
+[DEBUG]   (f) staleMillis = 0
+[DEBUG]   (f) strictCompilerTarget = false
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useProjectSettings = true
+[DEBUG]   (f) verbose = false
+[DEBUG] -- end configuration --
+[DEBUG] Manifest BREEs: [OSGi profile 'JavaSE-1.8' { source level: 1.8, target level: 1.8}]
+[DEBUG] Target Platform EE: OSGi profile 'JavaSE-11' { source level: 11, target level: 11}
+[DEBUG] Effective source/target: 1.8/1.8
+[DEBUG] Using compiler 'jdt'.
+[DEBUG] Source directories: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\src]
+[DEBUG] Classpath: [C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.runtime\3.17.0.v20191122-2104\org.eclipse.core.runtime-3.17.0.v20191122-2104.jar[~org/eclipse/core/internal/preferences/legacy/*;~org/eclipse/core/internal/runtime/*;+org/eclipse/core/runtime/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi\3.15.100.v20191114-1701\org.eclipse.osgi-3.15.100.v20191114-1701.jar[+com/sun/jarsigner/*;+com/sun/java/accessibility/util/*;+com/sun/javadoc/*;+com/sun/jdi/*;+com/sun/jdi/connect/*;+com/sun/jdi/connect/spi/*;+com/sun/jdi/event/*;+com/sun/jdi/request/*;+com/sun/jndi/ldap/spi/*;+com/sun/management/*;+com/sun/net/httpserver/*;+com/sun/net/httpserver/spi/*;+com/sun/nio/file/*;+com/sun/nio/sctp/*;+com/sun/security/auth/*;+com/sun/security/auth/callback/*;+com/sun/security/auth/login/*;+com/sun/security/auth/module/*;+com/sun/security/jgss/*;+com/sun/source/doctree/*;+com/sun/source/tree/*;+com/sun/source/util/*;+com/sun/tools/attach/*;+com/sun/tools/attach/spi/*;+com/sun/tools/javac/*;+com/sun/tools/javadoc/*;+com/sun/tools/jconsole/*;+java/applet/*;+java/awt/*;+java/awt/color/*;+java/awt/datatransfer/*;+java/awt/desktop/*;+java/awt/dnd/*;+java/awt/event/*;+java/awt/font/*;+java/awt/geom/*;+java/awt/im/*;+java/awt/im/spi/*;+java/awt/image/*;+java/awt/image/renderable/*;+java/awt/print/*;+java/beans/*;+java/beans/beancontext/*;+java/io/*;+java/lang/*;+java/lang/annotation/*;+java/lang/instrument/*;+java/lang/invoke/*;+java/lang/management/*;+java/lang/module/*;+java/lang/ref/*;+java/lang/reflect/*;+java/math/*;+java/net/*;+java/net/http/*;+java/net/spi/*;+java/nio/*;+java/nio/channels/*;+java/nio/channels/spi/*;+java/nio/charset/*;+java/nio/charset/spi/*;+java/nio/file/*;+java/nio/file/attribute/*;+java/nio/file/spi/*;+java/rmi/*;+java/rmi/activation/*;+java/rmi/dgc/*;+java/rmi/registry/*;+java/rmi/server/*;+java/security/*;+java/security/acl/*;+java/security/cert/*;+java/security/interfaces/*;+java/security/spec/*;+java/sql/*;+java/text/*;+java/text/spi/*;+java/time/*;+java/time/chrono/*;+java/time/format/*;+java/time/temporal/*;+java/time/zone/*;+java/util/*;+java/util/concurrent/*;+java/util/concurrent/atomic/*;+java/util/concurrent/locks/*;+java/util/function/*;+java/util/jar/*;+java/util/logging/*;+java/util/prefs/*;+java/util/regex/*;+java/util/spi/*;+java/util/stream/*;+java/util/zip/*;+javax/accessibility/*;+javax/annotation/processing/*;+javax/crypto/*;+javax/crypto/interfaces/*;+javax/crypto/spec/*;+javax/imageio/*;+javax/imageio/event/*;+javax/imageio/metadata/*;+javax/imageio/plugins/bmp/*;+javax/imageio/plugins/jpeg/*;+javax/imageio/plugins/tiff/*;+javax/imageio/spi/*;+javax/imageio/stream/*;+javax/lang/model/*;+javax/lang/model/element/*;+javax/lang/model/type/*;+javax/lang/model/util/*;+javax/management/*;+javax/management/loading/*;+javax/management/modelmbean/*;+javax/management/monitor/*;+javax/management/openmbean/*;+javax/management/relation/*;+javax/management/remote/*;+javax/management/remote/rmi/*;+javax/management/timer/*;+javax/naming/*;+javax/naming/directory/*;+javax/naming/event/*;+javax/naming/ldap/*;+javax/naming/spi/*;+javax/net/*;+javax/net/ssl/*;+javax/print/*;+javax/print/attribute/*;+javax/print/attribute/standard/*;+javax/print/event/*;+javax/rmi/ssl/*;+javax/script/*;+javax/security/auth/*;+javax/security/auth/callback/*;+javax/security/auth/kerberos/*;+javax/security/auth/login/*;+javax/security/auth/spi/*;+javax/security/auth/x500/*;+javax/security/cert/*;+javax/security/sasl/*;+javax/smartcardio/*;+javax/sound/midi/*;+javax/sound/midi/spi/*;+javax/sound/sampled/*;+javax/sound/sampled/spi/*;+javax/sql/*;+javax/sql/rowset/*;+javax/sql/rowset/serial/*;+javax/sql/rowset/spi/*;+javax/swing/*;+javax/swing/border/*;+javax/swing/colorchooser/*;+javax/swing/event/*;+javax/swing/filechooser/*;+javax/swing/plaf/*;+javax/swing/plaf/basic/*;+javax/swing/plaf/metal/*;+javax/swing/plaf/multi/*;+javax/swing/plaf/nimbus/*;+javax/swing/plaf/synth/*;+javax/swing/table/*;+javax/swing/text/*;+javax/swing/text/html/*;+javax/swing/text/html/parser/*;+javax/swing/text/rtf/*;+javax/swing/tree/*;+javax/swing/undo/*;+javax/tools/*;+javax/transaction/xa/*;+javax/xml/*;+javax/xml/catalog/*;+javax/xml/crypto/*;+javax/xml/crypto/dom/*;+javax/xml/crypto/dsig/*;+javax/xml/crypto/dsig/dom/*;+javax/xml/crypto/dsig/keyinfo/*;+javax/xml/crypto/dsig/spec/*;+javax/xml/datatype/*;+javax/xml/namespace/*;+javax/xml/parsers/*;+javax/xml/stream/*;+javax/xml/stream/events/*;+javax/xml/stream/util/*;+javax/xml/transform/*;+javax/xml/transform/dom/*;+javax/xml/transform/sax/*;+javax/xml/transform/stax/*;+javax/xml/transform/stream/*;+javax/xml/validation/*;+javax/xml/xpath/*;+jdk/dynalink/*;+jdk/dynalink/beans/*;+jdk/dynalink/linker/*;+jdk/dynalink/linker/support/*;+jdk/dynalink/support/*;+jdk/javadoc/doclet/*;+jdk/jfr/*;+jdk/jfr/consumer/*;+jdk/jshell/*;+jdk/jshell/execution/*;+jdk/jshell/spi/*;+jdk/jshell/tool/*;+jdk/management/jfr/*;+jdk/nashorn/api/scripting/*;+jdk/nashorn/api/tree/*;+jdk/net/*;+jdk/nio/*;+jdk/security/jarsigner/*;+jdk/swing/interop/*;+netscape/javascript/*;~org/eclipse/core/runtime/adaptor/*;~org/eclipse/core/runtime/internal/adaptor/*;+org/eclipse/equinox/log/*;+org/eclipse/osgi/container/*;+org/eclipse/osgi/container/builders/*;+org/eclipse/osgi/container/namespaces/*;+org/eclipse/osgi/framework/console/*;+org/eclipse/osgi/framework/eventmgr/*;~org/eclipse/osgi/framework/internal/reliablefile/*;+org/eclipse/osgi/framework/log/*;~org/eclipse/osgi/framework/util/*;~org/eclipse/osgi/internal/debug/*;~org/eclipse/osgi/internal/framework/*;~org/eclipse/osgi/internal/hookregistry/*;~org/eclipse/osgi/internal/loader/*;~org/eclipse/osgi/internal/loader/buddy/*;~org/eclipse/osgi/internal/loader/classpath/*;~org/eclipse/osgi/internal/loader/sources/*;~org/eclipse/osgi/internal/location/*;~org/eclipse/osgi/internal/messages/*;~org/eclipse/osgi/internal/provisional/service/security/*;~org/eclipse/osgi/internal/provisional/verifier/*;~org/eclipse/osgi/internal/service/security/*;~org/eclipse/osgi/internal/serviceregistry/*;~org/eclipse/osgi/internal/signedcontent/*;~org/eclipse/osgi/internal/url/*;+org/eclipse/osgi/launch/*;+org/eclipse/osgi/report/resolution/*;+org/eclipse/osgi/service/datalocation/*;+org/eclipse/osgi/service/debug/*;+org/eclipse/osgi/service/environment/*;+org/eclipse/osgi/service/localization/*;+org/eclipse/osgi/service/pluginconversion/*;+org/eclipse/osgi/service/resolver/*;+org/eclipse/osgi/service/runnable/*;+org/eclipse/osgi/service/security/*;+org/eclipse/osgi/service/urlconversion/*;+org/eclipse/osgi/signedcontent/*;~org/eclipse/osgi/storage/*;~org/eclipse/osgi/storage/bundlefile/*;~org/eclipse/osgi/storage/url/reference/*;+org/eclipse/osgi/storagemanager/*;+org/eclipse/osgi/util/*;+org/ietf/jgss/*;+org/osgi/dto/*;+org/osgi/framework/*;+org/osgi/framework/dto/*;+org/osgi/framework/hooks/bundle/*;+org/osgi/framework/hooks/resolver/*;+org/osgi/framework/hooks/service/*;+org/osgi/framework/hooks/weaving/*;+org/osgi/framework/launch/*;+org/osgi/framework/namespace/*;+org/osgi/framework/startlevel/*;+org/osgi/framework/startlevel/dto/*;+org/osgi/framework/wiring/*;+org/osgi/framework/wiring/dto/*;+org/osgi/resource/*;+org/osgi/resource/dto/*;+org/osgi/service/condpermadmin/*;+org/osgi/service/log/*;+org/osgi/service/log/admin/*;+org/osgi/service/packageadmin/*;+org/osgi/service/permissionadmin/*;+org/osgi/service/resolver/*;+org/osgi/service/startlevel/*;+org/osgi/service/url/*;+org/osgi/util/tracker/*;+org/w3c/dom/*;+org/w3c/dom/bootstrap/*;+org/w3c/dom/css/*;+org/w3c/dom/events/*;+org/w3c/dom/html/*;+org/w3c/dom/ls/*;+org/w3c/dom/ranges/*;+org/w3c/dom/stylesheets/*;+org/w3c/dom/traversal/*;+org/w3c/dom/views/*;+org/w3c/dom/xpath/*;+org/xml/sax/*;+org/xml/sax/ext/*;+org/xml/sax/helpers/*;+sun/misc/*;+sun/reflect/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.common\3.10.600.v20191004-1420\org.eclipse.equinox.common-3.10.600.v20191004-1420.jar[~org/eclipse/core/internal/boot/*;~org/eclipse/core/internal/runtime/*;+org/eclipse/core/runtime/*;+org/eclipse/equinox/events/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.jobs\3.10.600.v20191122-2104\org.eclipse.core.jobs-3.10.600.v20191122-2104.jar[~org/eclipse/core/internal/jobs/*;+org/eclipse/core/runtime/jobs/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.registry\3.8.600.v20191017-2055\org.eclipse.equinox.registry-3.8.600.v20191017-2055.jar[~org/eclipse/core/internal/adapter/*;~org/eclipse/core/internal/registry/*;~org/eclipse/core/internal/registry/osgi/*;~org/eclipse/core/internal/registry/spi/*;+org/eclipse/core/runtime/*;+org/eclipse/core/runtime/dynamichelpers/*;+org/eclipse/core/runtime/spi/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.preferences\3.7.600.v20191017-2055\org.eclipse.equinox.preferences-3.7.600.v20191017-2055.jar[~org/eclipse/core/internal/preferences/*;~org/eclipse/core/internal/preferences/exchange/*;+org/eclipse/core/runtime/preferences/*;+org/osgi/service/prefs/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.contenttype\3.7.500.v20190916-2125\org.eclipse.core.contenttype-3.7.500.v20190916-2125.jar[~org/eclipse/core/internal/content/*;+org/eclipse/core/runtime/content/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.app\1.4.300.v20190815-1535\org.eclipse.equinox.app-1.4.300.v20190815-1535.jar[+org/eclipse/equinox/app/*;~org/eclipse/equinox/internal/app/*;+org/osgi/service/application/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.resources\3.13.600.v20191122-2104\org.eclipse.core.resources-3.13.600.v20191122-2104.jar[~org/eclipse/core/internal/dtree/*;~org/eclipse/core/internal/events/*;~org/eclipse/core/internal/localstore/*;~org/eclipse/core/internal/properties/*;~org/eclipse/core/internal/propertytester/*;~org/eclipse/core/internal/refresh/*;~org/eclipse/core/internal/resources/*;~org/eclipse/core/internal/resources/mapping/*;~org/eclipse/core/internal/resources/projectvariables/*;~org/eclipse/core/internal/resources/refresh/win32/*;~org/eclipse/core/internal/utils/*;~org/eclipse/core/internal/watson/*;+org/eclipse/core/resources/*;+org/eclipse/core/resources/filtermatchers/*;+org/eclipse/core/resources/mapping/*;+org/eclipse/core/resources/refresh/*;+org/eclipse/core/resources/team/*;+org/eclipse/core/resources/variableresolvers/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.expressions\3.6.600.v20191122-2104\org.eclipse.core.expressions-3.6.600.v20191122-2104.jar[+org/eclipse/core/expressions/*;~org/eclipse/core/internal/expressions/*;~org/eclipse/core/internal/expressions/propertytester/*;~org/eclipse/core/internal/expressions/util/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.filesystem\1.7.600.v20191122-2104\org.eclipse.core.filesystem-1.7.600.v20191122-2104.jar[?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.e4.core.services\2.2.100.v20191122-2104\org.eclipse.e4.core.services-2.2.100.v20191122-2104.jar[~org/eclipse/e4/core/internal/services/*;~org/eclipse/e4/core/internal/services/about/*;+org/eclipse/e4/core/services/about/*;~org/eclipse/e4/core/services/adapter/*;~org/eclipse/e4/core/services/contributions/*;+org/eclipse/e4/core/services/events/*;~org/eclipse/e4/core/services/log/*;+org/eclipse/e4/core/services/nls/*;~org/eclipse/e4/core/services/statusreporter/*;+org/eclipse/e4/core/services/translation/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.e4.core.di\1.7.500.v20190916-2125\org.eclipse.e4.core.di-1.7.500.v20190916-2125.jar[+org/eclipse/e4/core/di/*;+org/eclipse/e4/core/di/suppliers/*;~org/eclipse/e4/core/internal/di/*;~org/eclipse/e4/core/internal/di/osgi/*;~org/eclipse/e4/core/internal/di/shared/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.e4.core.di.annotations\1.6.500.v20190925-0538\org.eclipse.e4.core.di.annotations-1.6.500.v20190925-0538.jar[+org/eclipse/e4/core/di/annotations/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.e4.core.contexts\1.8.300.v20191017-1404\org.eclipse.e4.core.contexts-1.8.300.v20191017-1404.jar[+org/eclipse/e4/core/contexts/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.jface\3.18.0.v20191122-2109\org.eclipse.jface-3.18.0.v20191122-2109.jar[+org/eclipse/jface/*;+org/eclipse/jface/action/*;+org/eclipse/jface/action/images/*;+org/eclipse/jface/bindings/*;+org/eclipse/jface/bindings/keys/*;+org/eclipse/jface/bindings/keys/formatting/*;+org/eclipse/jface/commands/*;+org/eclipse/jface/contexts/*;+org/eclipse/jface/dialogs/*;+org/eclipse/jface/dialogs/images/*;+org/eclipse/jface/fieldassist/*;+org/eclipse/jface/fieldassist/images/*;+org/eclipse/jface/images/*;~org/eclipse/jface/internal/*;~org/eclipse/jface/internal/provisional/action/*;+org/eclipse/jface/layout/*;+org/eclipse/jface/menus/*;+org/eclipse/jface/operation/*;+org/eclipse/jface/preference/*;+org/eclipse/jface/preference/images/*;+org/eclipse/jface/resource/*;+org/eclipse/jface/util/*;+org/eclipse/jface/viewers/*;+org/eclipse/jface/viewers/deferred/*;+org/eclipse/jface/widgets/*;+org/eclipse/jface/window/*;+org/eclipse/jface/wizard/*;+org/eclipse/jface/wizard/images/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.swt\3.113.0.v20191204-0601\org.eclipse.swt-3.113.0.v20191204-0601.jar[+org/eclipse/swt/*;+org/eclipse/swt/accessibility/*;+org/eclipse/swt/awt/*;+org/eclipse/swt/browser/*;+org/eclipse/swt/custom/*;+org/eclipse/swt/dnd/*;+org/eclipse/swt/events/*;+org/eclipse/swt/graphics/*;~org/eclipse/swt/internal/*;~org/eclipse/swt/internal/image/*;+org/eclipse/swt/layout/*;+org/eclipse/swt/opengl/*;+org/eclipse/swt/printing/*;+org/eclipse/swt/program/*;+org/eclipse/swt/widgets/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.swt.win32.win32.x86_64\3.113.0.v20191204-0601\org.eclipse.swt.win32.win32.x86_64-3.113.0.v20191204-0601.jar[+org/eclipse/swt/*;+org/eclipse/swt/accessibility/*;+org/eclipse/swt/awt/*;+org/eclipse/swt/browser/*;+org/eclipse/swt/custom/*;+org/eclipse/swt/dnd/*;+org/eclipse/swt/events/*;+org/eclipse/swt/graphics/*;~org/eclipse/swt/internal/*;~org/eclipse/swt/internal/gdip/*;~org/eclipse/swt/internal/image/*;~org/eclipse/swt/internal/ole/win32/*;~org/eclipse/swt/internal/opengl/win32/*;~org/eclipse/swt/internal/win32/*;+org/eclipse/swt/layout/*;+org/eclipse/swt/ole/win32/*;+org/eclipse/swt/opengl/*;+org/eclipse/swt/printing/*;+org/eclipse/swt/program/*;+org/eclipse/swt/widgets/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.commands\3.9.600.v20191122-2109\org.eclipse.core.commands-3.9.600.v20191122-2109.jar[+org/eclipse/core/commands/*;+org/eclipse/core/commands/common/*;+org/eclipse/core/commands/contexts/*;~org/eclipse/core/commands/internal/util/*;+org/eclipse/core/commands/operations/*;+org/eclipse/core/commands/util/*;~org/eclipse/core/internal/commands/operations/*;~org/eclipse/core/internal/commands/util/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/cm/*;+org/osgi/service/component/*;+org/osgi/service/component/annotations/*;+org/osgi/service/component/runtime/*;+org/osgi/service/component/runtime/dto/*;+org/osgi/service/device/*;+org/osgi/service/event/*;+org/osgi/service/http/*;+org/osgi/service/http/context/*;+org/osgi/service/http/runtime/*;+org/osgi/service/http/runtime/dto/*;+org/osgi/service/http/whiteboard/*;+org/osgi/service/metatype/*;+org/osgi/service/provisioning/*;+org/osgi/service/upnp/*;+org/osgi/service/useradmin/*;+org/osgi/service/wireadmin/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\javax.inject\1.0.0.v20091030\javax.inject-1.0.0.v20091030.jar[+javax/inject/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.e4.core.di.extensions\0.15.400.v20191122-2104\org.eclipse.e4.core.di.extensions-0.15.400.v20191122-2104.jar[~org/eclipse/e4/core/di/extensions/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.e4.ui.di\1.2.700.v20191114-0830\org.eclipse.e4.ui.di-1.2.700.v20191114-0830.jar[+org/eclipse/e4/ui/di/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.e4.ui.services\1.3.700.v20190930-1643\org.eclipse.e4.ui.services-1.3.700.v20190930-1643.jar[+org/eclipse/e4/ui/services/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\classes]
+[DEBUG] Output directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\classes
+[DEBUG] Classpath:
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.runtime\3.17.0.v20191122-2104\org.eclipse.core.runtime-3.17.0.v20191122-2104.jar[~org/eclipse/core/internal/preferences/legacy/*;~org/eclipse/core/internal/runtime/*;+org/eclipse/core/runtime/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi\3.15.100.v20191114-1701\org.eclipse.osgi-3.15.100.v20191114-1701.jar[+com/sun/jarsigner/*;+com/sun/java/accessibility/util/*;+com/sun/javadoc/*;+com/sun/jdi/*;+com/sun/jdi/connect/*;+com/sun/jdi/connect/spi/*;+com/sun/jdi/event/*;+com/sun/jdi/request/*;+com/sun/jndi/ldap/spi/*;+com/sun/management/*;+com/sun/net/httpserver/*;+com/sun/net/httpserver/spi/*;+com/sun/nio/file/*;+com/sun/nio/sctp/*;+com/sun/security/auth/*;+com/sun/security/auth/callback/*;+com/sun/security/auth/login/*;+com/sun/security/auth/module/*;+com/sun/security/jgss/*;+com/sun/source/doctree/*;+com/sun/source/tree/*;+com/sun/source/util/*;+com/sun/tools/attach/*;+com/sun/tools/attach/spi/*;+com/sun/tools/javac/*;+com/sun/tools/javadoc/*;+com/sun/tools/jconsole/*;+java/applet/*;+java/awt/*;+java/awt/color/*;+java/awt/datatransfer/*;+java/awt/desktop/*;+java/awt/dnd/*;+java/awt/event/*;+java/awt/font/*;+java/awt/geom/*;+java/awt/im/*;+java/awt/im/spi/*;+java/awt/image/*;+java/awt/image/renderable/*;+java/awt/print/*;+java/beans/*;+java/beans/beancontext/*;+java/io/*;+java/lang/*;+java/lang/annotation/*;+java/lang/instrument/*;+java/lang/invoke/*;+java/lang/management/*;+java/lang/module/*;+java/lang/ref/*;+java/lang/reflect/*;+java/math/*;+java/net/*;+java/net/http/*;+java/net/spi/*;+java/nio/*;+java/nio/channels/*;+java/nio/channels/spi/*;+java/nio/charset/*;+java/nio/charset/spi/*;+java/nio/file/*;+java/nio/file/attribute/*;+java/nio/file/spi/*;+java/rmi/*;+java/rmi/activation/*;+java/rmi/dgc/*;+java/rmi/registry/*;+java/rmi/server/*;+java/security/*;+java/security/acl/*;+java/security/cert/*;+java/security/interfaces/*;+java/security/spec/*;+java/sql/*;+java/text/*;+java/text/spi/*;+java/time/*;+java/time/chrono/*;+java/time/format/*;+java/time/temporal/*;+java/time/zone/*;+java/util/*;+java/util/concurrent/*;+java/util/concurrent/atomic/*;+java/util/concurrent/locks/*;+java/util/function/*;+java/util/jar/*;+java/util/logging/*;+java/util/prefs/*;+java/util/regex/*;+java/util/spi/*;+java/util/stream/*;+java/util/zip/*;+javax/accessibility/*;+javax/annotation/processing/*;+javax/crypto/*;+javax/crypto/interfaces/*;+javax/crypto/spec/*;+javax/imageio/*;+javax/imageio/event/*;+javax/imageio/metadata/*;+javax/imageio/plugins/bmp/*;+javax/imageio/plugins/jpeg/*;+javax/imageio/plugins/tiff/*;+javax/imageio/spi/*;+javax/imageio/stream/*;+javax/lang/model/*;+javax/lang/model/element/*;+javax/lang/model/type/*;+javax/lang/model/util/*;+javax/management/*;+javax/management/loading/*;+javax/management/modelmbean/*;+javax/management/monitor/*;+javax/management/openmbean/*;+javax/management/relation/*;+javax/management/remote/*;+javax/management/remote/rmi/*;+javax/management/timer/*;+javax/naming/*;+javax/naming/directory/*;+javax/naming/event/*;+javax/naming/ldap/*;+javax/naming/spi/*;+javax/net/*;+javax/net/ssl/*;+javax/print/*;+javax/print/attribute/*;+javax/print/attribute/standard/*;+javax/print/event/*;+javax/rmi/ssl/*;+javax/script/*;+javax/security/auth/*;+javax/security/auth/callback/*;+javax/security/auth/kerberos/*;+javax/security/auth/login/*;+javax/security/auth/spi/*;+javax/security/auth/x500/*;+javax/security/cert/*;+javax/security/sasl/*;+javax/smartcardio/*;+javax/sound/midi/*;+javax/sound/midi/spi/*;+javax/sound/sampled/*;+javax/sound/sampled/spi/*;+javax/sql/*;+javax/sql/rowset/*;+javax/sql/rowset/serial/*;+javax/sql/rowset/spi/*;+javax/swing/*;+javax/swing/border/*;+javax/swing/colorchooser/*;+javax/swing/event/*;+javax/swing/filechooser/*;+javax/swing/plaf/*;+javax/swing/plaf/basic/*;+javax/swing/plaf/metal/*;+javax/swing/plaf/multi/*;+javax/swing/plaf/nimbus/*;+javax/swing/plaf/synth/*;+javax/swing/table/*;+javax/swing/text/*;+javax/swing/text/html/*;+javax/swing/text/html/parser/*;+javax/swing/text/rtf/*;+javax/swing/tree/*;+javax/swing/undo/*;+javax/tools/*;+javax/transaction/xa/*;+javax/xml/*;+javax/xml/catalog/*;+javax/xml/crypto/*;+javax/xml/crypto/dom/*;+javax/xml/crypto/dsig/*;+javax/xml/crypto/dsig/dom/*;+javax/xml/crypto/dsig/keyinfo/*;+javax/xml/crypto/dsig/spec/*;+javax/xml/datatype/*;+javax/xml/namespace/*;+javax/xml/parsers/*;+javax/xml/stream/*;+javax/xml/stream/events/*;+javax/xml/stream/util/*;+javax/xml/transform/*;+javax/xml/transform/dom/*;+javax/xml/transform/sax/*;+javax/xml/transform/stax/*;+javax/xml/transform/stream/*;+javax/xml/validation/*;+javax/xml/xpath/*;+jdk/dynalink/*;+jdk/dynalink/beans/*;+jdk/dynalink/linker/*;+jdk/dynalink/linker/support/*;+jdk/dynalink/support/*;+jdk/javadoc/doclet/*;+jdk/jfr/*;+jdk/jfr/consumer/*;+jdk/jshell/*;+jdk/jshell/execution/*;+jdk/jshell/spi/*;+jdk/jshell/tool/*;+jdk/management/jfr/*;+jdk/nashorn/api/scripting/*;+jdk/nashorn/api/tree/*;+jdk/net/*;+jdk/nio/*;+jdk/security/jarsigner/*;+jdk/swing/interop/*;+netscape/javascript/*;~org/eclipse/core/runtime/adaptor/*;~org/eclipse/core/runtime/internal/adaptor/*;+org/eclipse/equinox/log/*;+org/eclipse/osgi/container/*;+org/eclipse/osgi/container/builders/*;+org/eclipse/osgi/container/namespaces/*;+org/eclipse/osgi/framework/console/*;+org/eclipse/osgi/framework/eventmgr/*;~org/eclipse/osgi/framework/internal/reliablefile/*;+org/eclipse/osgi/framework/log/*;~org/eclipse/osgi/framework/util/*;~org/eclipse/osgi/internal/debug/*;~org/eclipse/osgi/internal/framework/*;~org/eclipse/osgi/internal/hookregistry/*;~org/eclipse/osgi/internal/loader/*;~org/eclipse/osgi/internal/loader/buddy/*;~org/eclipse/osgi/internal/loader/classpath/*;~org/eclipse/osgi/internal/loader/sources/*;~org/eclipse/osgi/internal/location/*;~org/eclipse/osgi/internal/messages/*;~org/eclipse/osgi/internal/provisional/service/security/*;~org/eclipse/osgi/internal/provisional/verifier/*;~org/eclipse/osgi/internal/service/security/*;~org/eclipse/osgi/internal/serviceregistry/*;~org/eclipse/osgi/internal/signedcontent/*;~org/eclipse/osgi/internal/url/*;+org/eclipse/osgi/launch/*;+org/eclipse/osgi/report/resolution/*;+org/eclipse/osgi/service/datalocation/*;+org/eclipse/osgi/service/debug/*;+org/eclipse/osgi/service/environment/*;+org/eclipse/osgi/service/localization/*;+org/eclipse/osgi/service/pluginconversion/*;+org/eclipse/osgi/service/resolver/*;+org/eclipse/osgi/service/runnable/*;+org/eclipse/osgi/service/security/*;+org/eclipse/osgi/service/urlconversion/*;+org/eclipse/osgi/signedcontent/*;~org/eclipse/osgi/storage/*;~org/eclipse/osgi/storage/bundlefile/*;~org/eclipse/osgi/storage/url/reference/*;+org/eclipse/osgi/storagemanager/*;+org/eclipse/osgi/util/*;+org/ietf/jgss/*;+org/osgi/dto/*;+org/osgi/framework/*;+org/osgi/framework/dto/*;+org/osgi/framework/hooks/bundle/*;+org/osgi/framework/hooks/resolver/*;+org/osgi/framework/hooks/service/*;+org/osgi/framework/hooks/weaving/*;+org/osgi/framework/launch/*;+org/osgi/framework/namespace/*;+org/osgi/framework/startlevel/*;+org/osgi/framework/startlevel/dto/*;+org/osgi/framework/wiring/*;+org/osgi/framework/wiring/dto/*;+org/osgi/resource/*;+org/osgi/resource/dto/*;+org/osgi/service/condpermadmin/*;+org/osgi/service/log/*;+org/osgi/service/log/admin/*;+org/osgi/service/packageadmin/*;+org/osgi/service/permissionadmin/*;+org/osgi/service/resolver/*;+org/osgi/service/startlevel/*;+org/osgi/service/url/*;+org/osgi/util/tracker/*;+org/w3c/dom/*;+org/w3c/dom/bootstrap/*;+org/w3c/dom/css/*;+org/w3c/dom/events/*;+org/w3c/dom/html/*;+org/w3c/dom/ls/*;+org/w3c/dom/ranges/*;+org/w3c/dom/stylesheets/*;+org/w3c/dom/traversal/*;+org/w3c/dom/views/*;+org/w3c/dom/xpath/*;+org/xml/sax/*;+org/xml/sax/ext/*;+org/xml/sax/helpers/*;+sun/misc/*;+sun/reflect/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.common\3.10.600.v20191004-1420\org.eclipse.equinox.common-3.10.600.v20191004-1420.jar[~org/eclipse/core/internal/boot/*;~org/eclipse/core/internal/runtime/*;+org/eclipse/core/runtime/*;+org/eclipse/equinox/events/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.jobs\3.10.600.v20191122-2104\org.eclipse.core.jobs-3.10.600.v20191122-2104.jar[~org/eclipse/core/internal/jobs/*;+org/eclipse/core/runtime/jobs/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.registry\3.8.600.v20191017-2055\org.eclipse.equinox.registry-3.8.600.v20191017-2055.jar[~org/eclipse/core/internal/adapter/*;~org/eclipse/core/internal/registry/*;~org/eclipse/core/internal/registry/osgi/*;~org/eclipse/core/internal/registry/spi/*;+org/eclipse/core/runtime/*;+org/eclipse/core/runtime/dynamichelpers/*;+org/eclipse/core/runtime/spi/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.preferences\3.7.600.v20191017-2055\org.eclipse.equinox.preferences-3.7.600.v20191017-2055.jar[~org/eclipse/core/internal/preferences/*;~org/eclipse/core/internal/preferences/exchange/*;+org/eclipse/core/runtime/preferences/*;+org/osgi/service/prefs/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.contenttype\3.7.500.v20190916-2125\org.eclipse.core.contenttype-3.7.500.v20190916-2125.jar[~org/eclipse/core/internal/content/*;+org/eclipse/core/runtime/content/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.app\1.4.300.v20190815-1535\org.eclipse.equinox.app-1.4.300.v20190815-1535.jar[+org/eclipse/equinox/app/*;~org/eclipse/equinox/internal/app/*;+org/osgi/service/application/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.resources\3.13.600.v20191122-2104\org.eclipse.core.resources-3.13.600.v20191122-2104.jar[~org/eclipse/core/internal/dtree/*;~org/eclipse/core/internal/events/*;~org/eclipse/core/internal/localstore/*;~org/eclipse/core/internal/properties/*;~org/eclipse/core/internal/propertytester/*;~org/eclipse/core/internal/refresh/*;~org/eclipse/core/internal/resources/*;~org/eclipse/core/internal/resources/mapping/*;~org/eclipse/core/internal/resources/projectvariables/*;~org/eclipse/core/internal/resources/refresh/win32/*;~org/eclipse/core/internal/utils/*;~org/eclipse/core/internal/watson/*;+org/eclipse/core/resources/*;+org/eclipse/core/resources/filtermatchers/*;+org/eclipse/core/resources/mapping/*;+org/eclipse/core/resources/refresh/*;+org/eclipse/core/resources/team/*;+org/eclipse/core/resources/variableresolvers/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.expressions\3.6.600.v20191122-2104\org.eclipse.core.expressions-3.6.600.v20191122-2104.jar[+org/eclipse/core/expressions/*;~org/eclipse/core/internal/expressions/*;~org/eclipse/core/internal/expressions/propertytester/*;~org/eclipse/core/internal/expressions/util/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.filesystem\1.7.600.v20191122-2104\org.eclipse.core.filesystem-1.7.600.v20191122-2104.jar[?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.e4.core.services\2.2.100.v20191122-2104\org.eclipse.e4.core.services-2.2.100.v20191122-2104.jar[~org/eclipse/e4/core/internal/services/*;~org/eclipse/e4/core/internal/services/about/*;+org/eclipse/e4/core/services/about/*;~org/eclipse/e4/core/services/adapter/*;~org/eclipse/e4/core/services/contributions/*;+org/eclipse/e4/core/services/events/*;~org/eclipse/e4/core/services/log/*;+org/eclipse/e4/core/services/nls/*;~org/eclipse/e4/core/services/statusreporter/*;+org/eclipse/e4/core/services/translation/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.e4.core.di\1.7.500.v20190916-2125\org.eclipse.e4.core.di-1.7.500.v20190916-2125.jar[+org/eclipse/e4/core/di/*;+org/eclipse/e4/core/di/suppliers/*;~org/eclipse/e4/core/internal/di/*;~org/eclipse/e4/core/internal/di/osgi/*;~org/eclipse/e4/core/internal/di/shared/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.e4.core.di.annotations\1.6.500.v20190925-0538\org.eclipse.e4.core.di.annotations-1.6.500.v20190925-0538.jar[+org/eclipse/e4/core/di/annotations/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.e4.core.contexts\1.8.300.v20191017-1404\org.eclipse.e4.core.contexts-1.8.300.v20191017-1404.jar[+org/eclipse/e4/core/contexts/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.jface\3.18.0.v20191122-2109\org.eclipse.jface-3.18.0.v20191122-2109.jar[+org/eclipse/jface/*;+org/eclipse/jface/action/*;+org/eclipse/jface/action/images/*;+org/eclipse/jface/bindings/*;+org/eclipse/jface/bindings/keys/*;+org/eclipse/jface/bindings/keys/formatting/*;+org/eclipse/jface/commands/*;+org/eclipse/jface/contexts/*;+org/eclipse/jface/dialogs/*;+org/eclipse/jface/dialogs/images/*;+org/eclipse/jface/fieldassist/*;+org/eclipse/jface/fieldassist/images/*;+org/eclipse/jface/images/*;~org/eclipse/jface/internal/*;~org/eclipse/jface/internal/provisional/action/*;+org/eclipse/jface/layout/*;+org/eclipse/jface/menus/*;+org/eclipse/jface/operation/*;+org/eclipse/jface/preference/*;+org/eclipse/jface/preference/images/*;+org/eclipse/jface/resource/*;+org/eclipse/jface/util/*;+org/eclipse/jface/viewers/*;+org/eclipse/jface/viewers/deferred/*;+org/eclipse/jface/widgets/*;+org/eclipse/jface/window/*;+org/eclipse/jface/wizard/*;+org/eclipse/jface/wizard/images/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.swt\3.113.0.v20191204-0601\org.eclipse.swt-3.113.0.v20191204-0601.jar[+org/eclipse/swt/*;+org/eclipse/swt/accessibility/*;+org/eclipse/swt/awt/*;+org/eclipse/swt/browser/*;+org/eclipse/swt/custom/*;+org/eclipse/swt/dnd/*;+org/eclipse/swt/events/*;+org/eclipse/swt/graphics/*;~org/eclipse/swt/internal/*;~org/eclipse/swt/internal/image/*;+org/eclipse/swt/layout/*;+org/eclipse/swt/opengl/*;+org/eclipse/swt/printing/*;+org/eclipse/swt/program/*;+org/eclipse/swt/widgets/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.swt.win32.win32.x86_64\3.113.0.v20191204-0601\org.eclipse.swt.win32.win32.x86_64-3.113.0.v20191204-0601.jar[+org/eclipse/swt/*;+org/eclipse/swt/accessibility/*;+org/eclipse/swt/awt/*;+org/eclipse/swt/browser/*;+org/eclipse/swt/custom/*;+org/eclipse/swt/dnd/*;+org/eclipse/swt/events/*;+org/eclipse/swt/graphics/*;~org/eclipse/swt/internal/*;~org/eclipse/swt/internal/gdip/*;~org/eclipse/swt/internal/image/*;~org/eclipse/swt/internal/ole/win32/*;~org/eclipse/swt/internal/opengl/win32/*;~org/eclipse/swt/internal/win32/*;+org/eclipse/swt/layout/*;+org/eclipse/swt/ole/win32/*;+org/eclipse/swt/opengl/*;+org/eclipse/swt/printing/*;+org/eclipse/swt/program/*;+org/eclipse/swt/widgets/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.commands\3.9.600.v20191122-2109\org.eclipse.core.commands-3.9.600.v20191122-2109.jar[+org/eclipse/core/commands/*;+org/eclipse/core/commands/common/*;+org/eclipse/core/commands/contexts/*;~org/eclipse/core/commands/internal/util/*;+org/eclipse/core/commands/operations/*;+org/eclipse/core/commands/util/*;~org/eclipse/core/internal/commands/operations/*;~org/eclipse/core/internal/commands/util/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/cm/*;+org/osgi/service/component/*;+org/osgi/service/component/annotations/*;+org/osgi/service/component/runtime/*;+org/osgi/service/component/runtime/dto/*;+org/osgi/service/device/*;+org/osgi/service/event/*;+org/osgi/service/http/*;+org/osgi/service/http/context/*;+org/osgi/service/http/runtime/*;+org/osgi/service/http/runtime/dto/*;+org/osgi/service/http/whiteboard/*;+org/osgi/service/metatype/*;+org/osgi/service/provisioning/*;+org/osgi/service/upnp/*;+org/osgi/service/useradmin/*;+org/osgi/service/wireadmin/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\javax.inject\1.0.0.v20091030\javax.inject-1.0.0.v20091030.jar[+javax/inject/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.e4.core.di.extensions\0.15.400.v20191122-2104\org.eclipse.e4.core.di.extensions-0.15.400.v20191122-2104.jar[~org/eclipse/e4/core/di/extensions/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.e4.ui.di\1.2.700.v20191114-0830\org.eclipse.e4.ui.di-1.2.700.v20191114-0830.jar[+org/eclipse/e4/ui/di/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.e4.ui.services\1.3.700.v20190930-1643\org.eclipse.e4.ui.services-1.3.700.v20190930-1643.jar[+org/eclipse/e4/ui/services/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\classes
+[DEBUG] Source roots:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\src
+[INFO] Compiling 7 source files to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\classes
+[DEBUG] JDT compiler args: [-properties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.settings\org.eclipse.jdt.core.prefs, -s, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\generated-sources\annotations, -d, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\classes, -classpath, C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.runtime\3.17.0.v20191122-2104\org.eclipse.core.runtime-3.17.0.v20191122-2104.jar[~org/eclipse/core/internal/preferences/legacy/*;~org/eclipse/core/internal/runtime/*;+org/eclipse/core/runtime/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi\3.15.100.v20191114-1701\org.eclipse.osgi-3.15.100.v20191114-1701.jar[+com/sun/jarsigner/*;+com/sun/java/accessibility/util/*;+com/sun/javadoc/*;+com/sun/jdi/*;+com/sun/jdi/connect/*;+com/sun/jdi/connect/spi/*;+com/sun/jdi/event/*;+com/sun/jdi/request/*;+com/sun/jndi/ldap/spi/*;+com/sun/management/*;+com/sun/net/httpserver/*;+com/sun/net/httpserver/spi/*;+com/sun/nio/file/*;+com/sun/nio/sctp/*;+com/sun/security/auth/*;+com/sun/security/auth/callback/*;+com/sun/security/auth/login/*;+com/sun/security/auth/module/*;+com/sun/security/jgss/*;+com/sun/source/doctree/*;+com/sun/source/tree/*;+com/sun/source/util/*;+com/sun/tools/attach/*;+com/sun/tools/attach/spi/*;+com/sun/tools/javac/*;+com/sun/tools/javadoc/*;+com/sun/tools/jconsole/*;+java/applet/*;+java/awt/*;+java/awt/color/*;+java/awt/datatransfer/*;+java/awt/desktop/*;+java/awt/dnd/*;+java/awt/event/*;+java/awt/font/*;+java/awt/geom/*;+java/awt/im/*;+java/awt/im/spi/*;+java/awt/image/*;+java/awt/image/renderable/*;+java/awt/print/*;+java/beans/*;+java/beans/beancontext/*;+java/io/*;+java/lang/*;+java/lang/annotation/*;+java/lang/instrument/*;+java/lang/invoke/*;+java/lang/management/*;+java/lang/module/*;+java/lang/ref/*;+java/lang/reflect/*;+java/math/*;+java/net/*;+java/net/http/*;+java/net/spi/*;+java/nio/*;+java/nio/channels/*;+java/nio/channels/spi/*;+java/nio/charset/*;+java/nio/charset/spi/*;+java/nio/file/*;+java/nio/file/attribute/*;+java/nio/file/spi/*;+java/rmi/*;+java/rmi/activation/*;+java/rmi/dgc/*;+java/rmi/registry/*;+java/rmi/server/*;+java/security/*;+java/security/acl/*;+java/security/cert/*;+java/security/interfaces/*;+java/security/spec/*;+java/sql/*;+java/text/*;+java/text/spi/*;+java/time/*;+java/time/chrono/*;+java/time/format/*;+java/time/temporal/*;+java/time/zone/*;+java/util/*;+java/util/concurrent/*;+java/util/concurrent/atomic/*;+java/util/concurrent/locks/*;+java/util/function/*;+java/util/jar/*;+java/util/logging/*;+java/util/prefs/*;+java/util/regex/*;+java/util/spi/*;+java/util/stream/*;+java/util/zip/*;+javax/accessibility/*;+javax/annotation/processing/*;+javax/crypto/*;+javax/crypto/interfaces/*;+javax/crypto/spec/*;+javax/imageio/*;+javax/imageio/event/*;+javax/imageio/metadata/*;+javax/imageio/plugins/bmp/*;+javax/imageio/plugins/jpeg/*;+javax/imageio/plugins/tiff/*;+javax/imageio/spi/*;+javax/imageio/stream/*;+javax/lang/model/*;+javax/lang/model/element/*;+javax/lang/model/type/*;+javax/lang/model/util/*;+javax/management/*;+javax/management/loading/*;+javax/management/modelmbean/*;+javax/management/monitor/*;+javax/management/openmbean/*;+javax/management/relation/*;+javax/management/remote/*;+javax/management/remote/rmi/*;+javax/management/timer/*;+javax/naming/*;+javax/naming/directory/*;+javax/naming/event/*;+javax/naming/ldap/*;+javax/naming/spi/*;+javax/net/*;+javax/net/ssl/*;+javax/print/*;+javax/print/attribute/*;+javax/print/attribute/standard/*;+javax/print/event/*;+javax/rmi/ssl/*;+javax/script/*;+javax/security/auth/*;+javax/security/auth/callback/*;+javax/security/auth/kerberos/*;+javax/security/auth/login/*;+javax/security/auth/spi/*;+javax/security/auth/x500/*;+javax/security/cert/*;+javax/security/sasl/*;+javax/smartcardio/*;+javax/sound/midi/*;+javax/sound/midi/spi/*;+javax/sound/sampled/*;+javax/sound/sampled/spi/*;+javax/sql/*;+javax/sql/rowset/*;+javax/sql/rowset/serial/*;+javax/sql/rowset/spi/*;+javax/swing/*;+javax/swing/border/*;+javax/swing/colorchooser/*;+javax/swing/event/*;+javax/swing/filechooser/*;+javax/swing/plaf/*;+javax/swing/plaf/basic/*;+javax/swing/plaf/metal/*;+javax/swing/plaf/multi/*;+javax/swing/plaf/nimbus/*;+javax/swing/plaf/synth/*;+javax/swing/table/*;+javax/swing/text/*;+javax/swing/text/html/*;+javax/swing/text/html/parser/*;+javax/swing/text/rtf/*;+javax/swing/tree/*;+javax/swing/undo/*;+javax/tools/*;+javax/transaction/xa/*;+javax/xml/*;+javax/xml/catalog/*;+javax/xml/crypto/*;+javax/xml/crypto/dom/*;+javax/xml/crypto/dsig/*;+javax/xml/crypto/dsig/dom/*;+javax/xml/crypto/dsig/keyinfo/*;+javax/xml/crypto/dsig/spec/*;+javax/xml/datatype/*;+javax/xml/namespace/*;+javax/xml/parsers/*;+javax/xml/stream/*;+javax/xml/stream/events/*;+javax/xml/stream/util/*;+javax/xml/transform/*;+javax/xml/transform/dom/*;+javax/xml/transform/sax/*;+javax/xml/transform/stax/*;+javax/xml/transform/stream/*;+javax/xml/validation/*;+javax/xml/xpath/*;+jdk/dynalink/*;+jdk/dynalink/beans/*;+jdk/dynalink/linker/*;+jdk/dynalink/linker/support/*;+jdk/dynalink/support/*;+jdk/javadoc/doclet/*;+jdk/jfr/*;+jdk/jfr/consumer/*;+jdk/jshell/*;+jdk/jshell/execution/*;+jdk/jshell/spi/*;+jdk/jshell/tool/*;+jdk/management/jfr/*;+jdk/nashorn/api/scripting/*;+jdk/nashorn/api/tree/*;+jdk/net/*;+jdk/nio/*;+jdk/security/jarsigner/*;+jdk/swing/interop/*;+netscape/javascript/*;~org/eclipse/core/runtime/adaptor/*;~org/eclipse/core/runtime/internal/adaptor/*;+org/eclipse/equinox/log/*;+org/eclipse/osgi/container/*;+org/eclipse/osgi/container/builders/*;+org/eclipse/osgi/container/namespaces/*;+org/eclipse/osgi/framework/console/*;+org/eclipse/osgi/framework/eventmgr/*;~org/eclipse/osgi/framework/internal/reliablefile/*;+org/eclipse/osgi/framework/log/*;~org/eclipse/osgi/framework/util/*;~org/eclipse/osgi/internal/debug/*;~org/eclipse/osgi/internal/framework/*;~org/eclipse/osgi/internal/hookregistry/*;~org/eclipse/osgi/internal/loader/*;~org/eclipse/osgi/internal/loader/buddy/*;~org/eclipse/osgi/internal/loader/classpath/*;~org/eclipse/osgi/internal/loader/sources/*;~org/eclipse/osgi/internal/location/*;~org/eclipse/osgi/internal/messages/*;~org/eclipse/osgi/internal/provisional/service/security/*;~org/eclipse/osgi/internal/provisional/verifier/*;~org/eclipse/osgi/internal/service/security/*;~org/eclipse/osgi/internal/serviceregistry/*;~org/eclipse/osgi/internal/signedcontent/*;~org/eclipse/osgi/internal/url/*;+org/eclipse/osgi/launch/*;+org/eclipse/osgi/report/resolution/*;+org/eclipse/osgi/service/datalocation/*;+org/eclipse/osgi/service/debug/*;+org/eclipse/osgi/service/environment/*;+org/eclipse/osgi/service/localization/*;+org/eclipse/osgi/service/pluginconversion/*;+org/eclipse/osgi/service/resolver/*;+org/eclipse/osgi/service/runnable/*;+org/eclipse/osgi/service/security/*;+org/eclipse/osgi/service/urlconversion/*;+org/eclipse/osgi/signedcontent/*;~org/eclipse/osgi/storage/*;~org/eclipse/osgi/storage/bundlefile/*;~org/eclipse/osgi/storage/url/reference/*;+org/eclipse/osgi/storagemanager/*;+org/eclipse/osgi/util/*;+org/ietf/jgss/*;+org/osgi/dto/*;+org/osgi/framework/*;+org/osgi/framework/dto/*;+org/osgi/framework/hooks/bundle/*;+org/osgi/framework/hooks/resolver/*;+org/osgi/framework/hooks/service/*;+org/osgi/framework/hooks/weaving/*;+org/osgi/framework/launch/*;+org/osgi/framework/namespace/*;+org/osgi/framework/startlevel/*;+org/osgi/framework/startlevel/dto/*;+org/osgi/framework/wiring/*;+org/osgi/framework/wiring/dto/*;+org/osgi/resource/*;+org/osgi/resource/dto/*;+org/osgi/service/condpermadmin/*;+org/osgi/service/log/*;+org/osgi/service/log/admin/*;+org/osgi/service/packageadmin/*;+org/osgi/service/permissionadmin/*;+org/osgi/service/resolver/*;+org/osgi/service/startlevel/*;+org/osgi/service/url/*;+org/osgi/util/tracker/*;+org/w3c/dom/*;+org/w3c/dom/bootstrap/*;+org/w3c/dom/css/*;+org/w3c/dom/events/*;+org/w3c/dom/html/*;+org/w3c/dom/ls/*;+org/w3c/dom/ranges/*;+org/w3c/dom/stylesheets/*;+org/w3c/dom/traversal/*;+org/w3c/dom/views/*;+org/w3c/dom/xpath/*;+org/xml/sax/*;+org/xml/sax/ext/*;+org/xml/sax/helpers/*;+sun/misc/*;+sun/reflect/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.common\3.10.600.v20191004-1420\org.eclipse.equinox.common-3.10.600.v20191004-1420.jar[~org/eclipse/core/internal/boot/*;~org/eclipse/core/internal/runtime/*;+org/eclipse/core/runtime/*;+org/eclipse/equinox/events/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.jobs\3.10.600.v20191122-2104\org.eclipse.core.jobs-3.10.600.v20191122-2104.jar[~org/eclipse/core/internal/jobs/*;+org/eclipse/core/runtime/jobs/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.registry\3.8.600.v20191017-2055\org.eclipse.equinox.registry-3.8.600.v20191017-2055.jar[~org/eclipse/core/internal/adapter/*;~org/eclipse/core/internal/registry/*;~org/eclipse/core/internal/registry/osgi/*;~org/eclipse/core/internal/registry/spi/*;+org/eclipse/core/runtime/*;+org/eclipse/core/runtime/dynamichelpers/*;+org/eclipse/core/runtime/spi/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.preferences\3.7.600.v20191017-2055\org.eclipse.equinox.preferences-3.7.600.v20191017-2055.jar[~org/eclipse/core/internal/preferences/*;~org/eclipse/core/internal/preferences/exchange/*;+org/eclipse/core/runtime/preferences/*;+org/osgi/service/prefs/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.contenttype\3.7.500.v20190916-2125\org.eclipse.core.contenttype-3.7.500.v20190916-2125.jar[~org/eclipse/core/internal/content/*;+org/eclipse/core/runtime/content/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.app\1.4.300.v20190815-1535\org.eclipse.equinox.app-1.4.300.v20190815-1535.jar[+org/eclipse/equinox/app/*;~org/eclipse/equinox/internal/app/*;+org/osgi/service/application/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.resources\3.13.600.v20191122-2104\org.eclipse.core.resources-3.13.600.v20191122-2104.jar[~org/eclipse/core/internal/dtree/*;~org/eclipse/core/internal/events/*;~org/eclipse/core/internal/localstore/*;~org/eclipse/core/internal/properties/*;~org/eclipse/core/internal/propertytester/*;~org/eclipse/core/internal/refresh/*;~org/eclipse/core/internal/resources/*;~org/eclipse/core/internal/resources/mapping/*;~org/eclipse/core/internal/resources/projectvariables/*;~org/eclipse/core/internal/resources/refresh/win32/*;~org/eclipse/core/internal/utils/*;~org/eclipse/core/internal/watson/*;+org/eclipse/core/resources/*;+org/eclipse/core/resources/filtermatchers/*;+org/eclipse/core/resources/mapping/*;+org/eclipse/core/resources/refresh/*;+org/eclipse/core/resources/team/*;+org/eclipse/core/resources/variableresolvers/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.expressions\3.6.600.v20191122-2104\org.eclipse.core.expressions-3.6.600.v20191122-2104.jar[+org/eclipse/core/expressions/*;~org/eclipse/core/internal/expressions/*;~org/eclipse/core/internal/expressions/propertytester/*;~org/eclipse/core/internal/expressions/util/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.filesystem\1.7.600.v20191122-2104\org.eclipse.core.filesystem-1.7.600.v20191122-2104.jar[?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.e4.core.services\2.2.100.v20191122-2104\org.eclipse.e4.core.services-2.2.100.v20191122-2104.jar[~org/eclipse/e4/core/internal/services/*;~org/eclipse/e4/core/internal/services/about/*;+org/eclipse/e4/core/services/about/*;~org/eclipse/e4/core/services/adapter/*;~org/eclipse/e4/core/services/contributions/*;+org/eclipse/e4/core/services/events/*;~org/eclipse/e4/core/services/log/*;+org/eclipse/e4/core/services/nls/*;~org/eclipse/e4/core/services/statusreporter/*;+org/eclipse/e4/core/services/translation/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.e4.core.di\1.7.500.v20190916-2125\org.eclipse.e4.core.di-1.7.500.v20190916-2125.jar[+org/eclipse/e4/core/di/*;+org/eclipse/e4/core/di/suppliers/*;~org/eclipse/e4/core/internal/di/*;~org/eclipse/e4/core/internal/di/osgi/*;~org/eclipse/e4/core/internal/di/shared/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.e4.core.di.annotations\1.6.500.v20190925-0538\org.eclipse.e4.core.di.annotations-1.6.500.v20190925-0538.jar[+org/eclipse/e4/core/di/annotations/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.e4.core.contexts\1.8.300.v20191017-1404\org.eclipse.e4.core.contexts-1.8.300.v20191017-1404.jar[+org/eclipse/e4/core/contexts/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.jface\3.18.0.v20191122-2109\org.eclipse.jface-3.18.0.v20191122-2109.jar[+org/eclipse/jface/*;+org/eclipse/jface/action/*;+org/eclipse/jface/action/images/*;+org/eclipse/jface/bindings/*;+org/eclipse/jface/bindings/keys/*;+org/eclipse/jface/bindings/keys/formatting/*;+org/eclipse/jface/commands/*;+org/eclipse/jface/contexts/*;+org/eclipse/jface/dialogs/*;+org/eclipse/jface/dialogs/images/*;+org/eclipse/jface/fieldassist/*;+org/eclipse/jface/fieldassist/images/*;+org/eclipse/jface/images/*;~org/eclipse/jface/internal/*;~org/eclipse/jface/internal/provisional/action/*;+org/eclipse/jface/layout/*;+org/eclipse/jface/menus/*;+org/eclipse/jface/operation/*;+org/eclipse/jface/preference/*;+org/eclipse/jface/preference/images/*;+org/eclipse/jface/resource/*;+org/eclipse/jface/util/*;+org/eclipse/jface/viewers/*;+org/eclipse/jface/viewers/deferred/*;+org/eclipse/jface/widgets/*;+org/eclipse/jface/window/*;+org/eclipse/jface/wizard/*;+org/eclipse/jface/wizard/images/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.swt\3.113.0.v20191204-0601\org.eclipse.swt-3.113.0.v20191204-0601.jar[+org/eclipse/swt/*;+org/eclipse/swt/accessibility/*;+org/eclipse/swt/awt/*;+org/eclipse/swt/browser/*;+org/eclipse/swt/custom/*;+org/eclipse/swt/dnd/*;+org/eclipse/swt/events/*;+org/eclipse/swt/graphics/*;~org/eclipse/swt/internal/*;~org/eclipse/swt/internal/image/*;+org/eclipse/swt/layout/*;+org/eclipse/swt/opengl/*;+org/eclipse/swt/printing/*;+org/eclipse/swt/program/*;+org/eclipse/swt/widgets/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.swt.win32.win32.x86_64\3.113.0.v20191204-0601\org.eclipse.swt.win32.win32.x86_64-3.113.0.v20191204-0601.jar[+org/eclipse/swt/*;+org/eclipse/swt/accessibility/*;+org/eclipse/swt/awt/*;+org/eclipse/swt/browser/*;+org/eclipse/swt/custom/*;+org/eclipse/swt/dnd/*;+org/eclipse/swt/events/*;+org/eclipse/swt/graphics/*;~org/eclipse/swt/internal/*;~org/eclipse/swt/internal/gdip/*;~org/eclipse/swt/internal/image/*;~org/eclipse/swt/internal/ole/win32/*;~org/eclipse/swt/internal/opengl/win32/*;~org/eclipse/swt/internal/win32/*;+org/eclipse/swt/layout/*;+org/eclipse/swt/ole/win32/*;+org/eclipse/swt/opengl/*;+org/eclipse/swt/printing/*;+org/eclipse/swt/program/*;+org/eclipse/swt/widgets/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.core.commands\3.9.600.v20191122-2109\org.eclipse.core.commands-3.9.600.v20191122-2109.jar[+org/eclipse/core/commands/*;+org/eclipse/core/commands/common/*;+org/eclipse/core/commands/contexts/*;~org/eclipse/core/commands/internal/util/*;+org/eclipse/core/commands/operations/*;+org/eclipse/core/commands/util/*;~org/eclipse/core/internal/commands/operations/*;~org/eclipse/core/internal/commands/util/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/cm/*;+org/osgi/service/component/*;+org/osgi/service/component/annotations/*;+org/osgi/service/component/runtime/*;+org/osgi/service/component/runtime/dto/*;+org/osgi/service/device/*;+org/osgi/service/event/*;+org/osgi/service/http/*;+org/osgi/service/http/context/*;+org/osgi/service/http/runtime/*;+org/osgi/service/http/runtime/dto/*;+org/osgi/service/http/whiteboard/*;+org/osgi/service/metatype/*;+org/osgi/service/provisioning/*;+org/osgi/service/upnp/*;+org/osgi/service/useradmin/*;+org/osgi/service/wireadmin/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\javax.inject\1.0.0.v20091030\javax.inject-1.0.0.v20091030.jar[+javax/inject/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.e4.core.di.extensions\0.15.400.v20191122-2104\org.eclipse.e4.core.di.extensions-0.15.400.v20191122-2104.jar[~org/eclipse/e4/core/di/extensions/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.e4.ui.di\1.2.700.v20191114-0830\org.eclipse.e4.ui.di-1.2.700.v20191114-0830.jar[+org/eclipse/e4/ui/di/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.e4.ui.services\1.3.700.v20190930-1643\org.eclipse.e4.ui.services-1.3.700.v20190930-1643.jar[+org/eclipse/e4/ui/services/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\classes, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\src\org\eclipse\app4mc\amalthea\converters\ui\jobs\IMigrationJobConstants.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\src\org\eclipse\app4mc\amalthea\converters\ui\handlers\AmaltheaModelMigrationHandler.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\src\org\eclipse\app4mc\amalthea\converters\ui\handlers\AmaltheaResourceExpression.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\src\org\eclipse\app4mc\amalthea\converters\ui\dialog\ModelMigrationDialog.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\src\org\eclipse\app4mc\amalthea\converters\ui\addons\ConverterUIAddon.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\src\org\eclipse\app4mc\amalthea\converters\ui\dialog\MigrationResultDialog.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\src\org\eclipse\app4mc\amalthea\converters\ui\jobs\ModelMigrationJob.java, -g, -nowarn, -target, 1.8, -source, 1.8, --release, 8, -encoding, UTF-8]
+[DEBUG] Original compiler output: 
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ org.eclipse.app4mc.amalthea.converters.ui ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\test-classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\src\test\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.ui.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\src\test\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\src\test\resources
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ org.eclipse.app4mc.amalthea.converters.ui ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.ui-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\org.eclipse.app4mc.amalthea.converters.ui-1.1.0-SNAPSHOT-sources.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters/ui/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters/ui/addons/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters/ui/dialog/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters/ui/handlers/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters/ui/jobs/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/ui/addons/ConverterUIAddon.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/ui/dialog/MigrationResultDialog.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/ui/dialog/ModelMigrationDialog.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/ui/handlers/AmaltheaModelMigrationHandler.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/ui/handlers/AmaltheaResourceExpression.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/ui/jobs/IMigrationJobConstants.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/ui/jobs/ModelMigrationJob.java
+[DEBUG] adding entry about.html
+[DEBUG] adding entry epl-2.0.html
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding directory OSGI-INF/l10n/
+[DEBUG] adding entry OSGI-INF/l10n/bundle-src.properties
+[INFO] 
+[INFO] --- target-platform-configuration:2.3.0:target-platform (default-target-platform) @ org.eclipse.app4mc.amalthea.converters.ui ---
+[DEBUG] Configuring mojo org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform from plugin realm ClassRealm[plugin>org.eclipse.tycho:target-platform-configuration:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin) @ org.eclipse.app4mc.amalthea.converters.ui ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin' with basic configurator -->
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.ui-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) strictBinIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\target\org.eclipse.app4mc.amalthea.converters.ui-1.1.0-SNAPSHOT.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters/ui/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters/ui/addons/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters/ui/dialog/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters/ui/handlers/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters/ui/jobs/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/ui/addons/ConverterUIAddon.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/ui/dialog/MigrationResultDialog$1.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/ui/dialog/MigrationResultDialog$2.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/ui/dialog/MigrationResultDialog.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/ui/dialog/ModelMigrationDialog$1.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/ui/dialog/ModelMigrationDialog$2.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/ui/dialog/ModelMigrationDialog$3.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/ui/dialog/ModelMigrationDialog$4.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/ui/dialog/ModelMigrationDialog$5.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/ui/dialog/ModelMigrationDialog$6.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/ui/dialog/ModelMigrationDialog.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/ui/handlers/AmaltheaModelMigrationHandler.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/ui/handlers/AmaltheaResourceExpression.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/ui/jobs/IMigrationJobConstants.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/ui/jobs/ModelMigrationJob.class
+[DEBUG] adding directory icons/
+[DEBUG] adding entry about.html
+[DEBUG] adding entry epl-2.0.html
+[DEBUG] adding entry fragment.e4xmi
+[DEBUG] adding entry icons/sample.gif
+[DEBUG] adding entry plugin.xml
+[DEBUG] adding directory META-INF/maven/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.ui/
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.ui/pom.xml
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.ui/pom.properties
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default) @ org.eclipse.app4mc.amalthea.converters.ui ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default' with basic configurator -->
+[DEBUG]   (f) attachP2Metadata = true
+[DEBUG]   (f) baselineMode = warn
+[DEBUG]   (f) baselineReplace = none
+[DEBUG]   (f) url = https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/
+[DEBUG]   (f) baselineRepositories = [org.eclipse.tycho.plugins.p2.Repository@46daaaab]
+[DEBUG]   (f) defaultP2Metadata = true
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default {execution: default-p2-metadata-default}
+[DEBUG]   (f) generateDownloadStatsProperty = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] No baseline version MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF
+[INFO] 
+[INFO] -----------------< org.eclipse.app4mc.migration:tests >-----------------
+[INFO] Building [aggregator] tests 1.1.0-SNAPSHOT                       [22/47]
+[INFO] --------------------------------[ pom ]---------------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): []
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] =======================================================================
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\target\test-classes
+[DEBUG] -- end configuration --
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\target\site
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --< org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests >--
+[INFO] Building [test-bundle] APP4MC Amalthea Converters Common Tests 1.1.0-SNAPSHOT [23/47]
+[INFO] ------------------------[ eclipse-test-plugin ]-------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): [compile, runtime]
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <baseDir>${project.basedir}</baseDir>
+  <execution>${mojoExecution}</execution>
+  <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
+  <format default-value="yyyyMMddHHmm"/>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id (default-validate-id)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version (default-validate-version)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <strictVersions default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources (default-resources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources default-value="${project.resources}"/>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile (default-compile)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <basedir>${basedir}</basedir>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <compilerId default-value="jdt">${maven.compiler.compilerId}</compilerId>
+  <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
+  <copyResources default-value="true"/>
+  <debug default-value="true">${maven.compiler.debug}</debug>
+  <deriveReleaseCompilerArgumentFromTargetLevel default-value="true"/>
+  <encoding>${project.build.sourceEncoding}</encoding>
+  <executable>${maven.compiler.executable}</executable>
+  <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
+  <fork default-value="false"/>
+  <generatedSourcesDirectory default-value="${project.build.directory}/generated-sources/annotations"/>
+  <logDirectory default-value="${project.build.directory}/compile-logs"/>
+  <mavenCompilerEncoding>${maven.compiler.encoding}</mavenCompilerEncoding>
+  <maxmem>${maven.compiler.maxmem}</maxmem>
+  <meminitial>${maven.compiler.meminitial}</meminitial>
+  <optimize default-value="false">${maven.compiler.optimize}</optimize>
+  <outputFileName>${project.build.finalName}</outputFileName>
+  <project>${project}</project>
+  <release>${maven.compiler.release}</release>
+  <requireJREPackageImports default-value="false"/>
+  <session>${session}</session>
+  <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
+  <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
+  <source>${maven.compiler.source}</source>
+  <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
+  <strictCompilerTarget default-value="false"/>
+  <target>${maven.compiler.target}</target>
+  <useJDK default-value="SYSTEM"/>
+  <useProjectSettings default-value="true"/>
+  <verbose default-value="false">${maven.compiler.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources (default-testResources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources>${project.testResources}</resources>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform (default-target-platform)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <finalName>${project.build.finalName}</finalName>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <strictBinIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attachP2Metadata default-value="true"/>
+  <baselineMode default-value="warn">${tycho.baseline}</baselineMode>
+  <baselineReplace default-value="all">none</baselineReplace>
+  <baselineRepositories>
+    <repository>
+      <url>https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/</url>
+    </repository>
+  </baselineRepositories>
+  <defaultP2Metadata default-value="true"/>
+  <execution>${mojoExecution}</execution>
+  <generateDownloadStatsProperty default-value="false">${tycho.generateDownloadStatsProperty}</generateDownloadStatsProperty>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test (default-test)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <argLine>${tycho.testArgLine}</argLine>
+  <debugPort>${debugPort}</debugPort>
+  <deleteOsgiDataDirectory default-value="true"/>
+  <enableAssertions default-value="false">${enableAssertions}</enableAssertions>
+  <excludedGroups>${excludedGroups}</excludedGroups>
+  <failIfNoTests default-value="true">${failIfNoTests}</failIfNoTests>
+  <forkedProcessTimeoutInSeconds>${surefire.timeout}</forkedProcessTimeoutInSeconds>
+  <groups>${groups}</groups>
+  <includes>
+    <forkMode>never</forkMode>
+    <include>**/*Test.java</include>
+    <include>**/*Tests.java</include>
+  </includes>
+  <osgiDataDirectory default-value="${project.build.directory}/work/data/"/>
+  <parallel>${parallel}</parallel>
+  <perCoreThreadCount default-value="true">${perCoreThreadCount}</perCoreThreadCount>
+  <pluginArtifacts>${plugin.artifacts}</pluginArtifacts>
+  <profileName default-value="DefaultProfile"/>
+  <project>${project}</project>
+  <redirectTestOutputToFile default-value="false">${maven.test.redirectTestOutputToFile}</redirectTestOutputToFile>
+  <reportsDirectory default-value="${project.build.directory}/surefire-reports"/>
+  <rerunFailingTestsCount default-value="0">${surefire.rerunFailingTestsCount}</rerunFailingTestsCount>
+  <runOrder default-value="filesystem"/>
+  <session>${session}</session>
+  <showEclipseLog default-value="false">${tycho.showEclipseLog}</showEclipseLog>
+  <skip>${maven.test.skip}</skip>
+  <skipAfterFailureCount default-value="0">${surefire.skipAfterFailureCount}</skipAfterFailureCount>
+  <skipExec>${maven.test.skipExec}</skipExec>
+  <skipTests>${skipTests}</skipTests>
+  <surefireProperties default-value="${project.build.directory}/surefire.properties"/>
+  <test>${test}</test>
+  <testClass>${testClass}</testClass>
+  <testClassesDirectory>${project.build.outputDirectory}</testClassesDirectory>
+  <testFailureIgnore default-value="false">${maven.test.failure.ignore}</testFailureIgnore>
+  <testRuntime default-value="default"/>
+  <threadCount>${threadCount}</threadCount>
+  <trimStackTrace default-value="true">${trimStackTrace}</trimStackTrace>
+  <useJDK default-value="SYSTEM"/>
+  <useUIHarness default-value="false"/>
+  <useUIThread default-value="true"/>
+  <useUnlimitedThreads default-value="false">${useUnlimitedThreads}</useUnlimitedThreads>
+  <work default-value="${project.build.directory}/work"/>
+</configuration>
+[DEBUG] =======================================================================
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=18600, ConflictMarker.markTime=15500, ConflictMarker.nodeCount=29, ConflictIdSorter.graphTime=21500, ConflictIdSorter.topsortTime=10699, ConflictIdSorter.conflictIdCount=19, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=95800, ConflictResolver.conflictItemCount=28, DefaultDependencyCollector.collectTime=304900, DefaultDependencyCollector.transformTime=191200}
+[DEBUG] org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:eclipse-test-plugin:1.1.0-SNAPSHOT
+[DEBUG]    p2.eclipse-plugin:javax.annotation:jar:1.2.0.v201602091430:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi:jar:3.15.100.v20191114-1701:system
+[DEBUG]    p2.eclipse-plugin:org.apache.felix.scr:jar:2.1.14.v20190123-1619:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.services:jar:3.8.0.v20190206-2147:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.util:jar:3.5.300.v20190708-1141:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.common:jar:3.10.600.v20191004-1420:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.app4mc.util.sessionlog:jar:1.1.0.202104211257:system
+[DEBUG]    p2.eclipse-plugin:org.jdom2:jar:2.0.6.v20191125-0928:system
+[DEBUG]    p2.eclipse-plugin:org.junit:jar:junit.jar:4.12.0.v201504281640:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.runtime:jar:3.17.0.v20191122-2104:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.contenttype:jar:3.7.500.v20190916-2125:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.preferences:jar:3.7.600.v20191017-2055:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.registry:jar:3.8.600.v20191017-2055:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.jobs:jar:3.10.600.v20191122-2104:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.app:jar:1.4.300.v20190815-1535:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.launcher:jar:1.5.600.v20191014-2022:system
+[DEBUG]    p2.eclipse-plugin:org.jaxen:jar:1.1.6.v20191106-1554:system
+[DEBUG]    p2.eclipse-plugin:org.hamcrest.core:jar:1.3.0.v20180420-1519:system
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ org.eclipse.app4mc.amalthea.converters.common.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\test-classes
+[DEBUG] -- end configuration --
+[INFO] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work\dev.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work\configuration\org.eclipse.osgi\framework.info.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work\configuration\org.eclipse.osgi\20\0\.cp\jars\surefire-logger-api-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work\configuration\org.eclipse.osgi\20\0\.cp\jars\surefire-booter-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work\configuration\org.eclipse.osgi\20\0\.cp\jars\surefire-api-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work\configuration\org.eclipse.osgi\20\0\.cp\jars\maven-surefire-common-2.22.2.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work\configuration\org.eclipse.osgi\20\0\.cp\jars
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work\configuration\org.eclipse.osgi\20\0\.cp
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work\configuration\org.eclipse.osgi\20\0
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work\configuration\org.eclipse.osgi\20
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work\configuration\org.eclipse.osgi\10\0\.cp\junit.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work\configuration\org.eclipse.osgi\10\0\.cp
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work\configuration\org.eclipse.osgi\10\0
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work\configuration\org.eclipse.osgi\10
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTableLock
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTable.2
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTable.1
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work\configuration\org.eclipse.osgi\.manager
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work\configuration\org.eclipse.osgi
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work\configuration\org.eclipse.equinox.app\.manager\.fileTableLock
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work\configuration\org.eclipse.equinox.app\.manager
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work\configuration\org.eclipse.equinox.app
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work\configuration\org.eclipse.core.runtime\.table.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work\configuration\org.eclipse.core.runtime\.orphans.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work\configuration\org.eclipse.core.runtime\.namespaces.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTableLock
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTable.8
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTable.7
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work\configuration\org.eclipse.core.runtime\.manager
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work\configuration\org.eclipse.core.runtime\.mainData.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work\configuration\org.eclipse.core.runtime\.extraData.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work\configuration\org.eclipse.core.runtime\.contributors.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work\configuration\org.eclipse.core.runtime\.contributions.1
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work\configuration\org.eclipse.core.runtime
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work\configuration\config.ini
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work\configuration
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\surefire.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters.common.tests.NamespaceConverterZippedTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters.common.tests.ModelVersionTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters.common.tests.AmaltheaNamespaceRegistryTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters.common.tests.NamespaceConverterZippedTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters.common.tests.ModelVersionTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters.common.tests.AmaltheaNamespaceRegistryTest.txt
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\surefire-reports
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\sourcebundle-l10n-gen\OSGI-INF\l10n\bundle-src.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\sourcebundle-l10n-gen\OSGI-INF\l10n
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\sourcebundle-l10n-gen\OSGI-INF
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\sourcebundle-l10n-gen
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\p2content.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\p2artifacts.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\org.eclipse.app4mc.amalthea.converters.common.tests-1.1.0-SNAPSHOT.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\org.eclipse.app4mc.amalthea.converters.common.tests-1.1.0-SNAPSHOT-sources.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\maven-archiver\pom.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\maven-archiver
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\MANIFEST.MF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\local-artifacts.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\generated-sources\annotations
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\generated-sources
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes\org\eclipse\app4mc\amalthea\converters\common\tests\NamespaceConverterZippedTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes\org\eclipse\app4mc\amalthea\converters\common\tests\ModelVersionTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes\org\eclipse\app4mc\amalthea\converters\common\tests\AmaltheaNamespaceRegistryTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes\org\eclipse\app4mc\amalthea\converters\common\tests\AbstractConverterTest.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes\org\eclipse\app4mc\amalthea\converters\common\tests
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes\org\eclipse\app4mc\amalthea\converters\common
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes\org\eclipse\app4mc\amalthea\converters
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes\org\eclipse\app4mc\amalthea
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes\org\eclipse\app4mc
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes\org\eclipse
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes\org
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\site
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier) @ org.eclipse.app4mc.amalthea.converters.common.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier' with basic configurator -->
+[DEBUG]   (f) baseDir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier {execution: default-build-qualifier}
+[DEBUG]   (s) format = yyyyMMddHHmm
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] The project's OSGi version is 1.1.0.202104220626
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-id (default-validate-id) @ org.eclipse.app4mc.amalthea.converters.common.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-version (default-validate-version) @ org.eclipse.app4mc.amalthea.converters.common.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF
+[DEBUG]   (f) strictVersions = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ org.eclipse.app4mc.amalthea.converters.common.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.common.tests.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\src\main\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\src\main\resources
+[INFO] 
+[INFO] --- tycho-compiler-plugin:2.3.0:compile (default-compile) @ org.eclipse.app4mc.amalthea.converters.common.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-compiler-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile' with basic configurator -->
+[DEBUG]   (f) basedir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target
+[DEBUG]   (f) compilerId = jdt
+[DEBUG]   (f) copyResources = true
+[DEBUG]   (f) debug = true
+[DEBUG]   (f) deriveReleaseCompilerArgumentFromTargetLevel = true
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) failOnWarning = false
+[DEBUG]   (f) fork = false
+[DEBUG]   (f) generatedSourcesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\generated-sources\annotations
+[DEBUG]   (f) logDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\compile-logs
+[DEBUG]   (f) optimize = false
+[DEBUG]   (f) outputFileName = org.eclipse.app4mc.amalthea.converters.common.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF
+[DEBUG]   (f) requireJREPackageImports = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showDeprecation = false
+[DEBUG]   (f) showWarnings = false
+[DEBUG]   (f) staleMillis = 0
+[DEBUG]   (f) strictCompilerTarget = false
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useProjectSettings = true
+[DEBUG]   (f) verbose = false
+[DEBUG] -- end configuration --
+[DEBUG] Manifest BREEs: [OSGi profile 'JavaSE-1.8' { source level: 1.8, target level: 1.8}]
+[DEBUG] Target Platform EE: OSGi profile 'JavaSE-11' { source level: 11, target level: 11}
+[DEBUG] Effective source/target: 1.8/1.8
+[DEBUG] Using compiler 'jdt'.
+[DEBUG] Source directories: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\src]
+[DEBUG] Classpath: [C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes]
+[DEBUG] Output directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes
+[DEBUG] Classpath:
+[DEBUG]  C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes
+[DEBUG] Source roots:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\src
+[INFO] Compiling 4 source files to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes
+[DEBUG] JDT compiler args: [-properties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.settings\org.eclipse.jdt.core.prefs, -s, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\generated-sources\annotations, -d, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes, -classpath, C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\src\org\eclipse\app4mc\amalthea\converters\common\tests\AmaltheaNamespaceRegistryTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\src\org\eclipse\app4mc\amalthea\converters\common\tests\AbstractConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\src\org\eclipse\app4mc\amalthea\converters\common\tests\NamespaceConverterZippedTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\src\org\eclipse\app4mc\amalthea\converters\common\tests\ModelVersionTest.java, -g, -nowarn, -target, 1.8, -source, 1.8, --release, 8, -encoding, UTF-8]
+[DEBUG] Original compiler output: 
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ org.eclipse.app4mc.amalthea.converters.common.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\test-classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\src\test\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.common.tests.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\src\test\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\src\test\resources
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ org.eclipse.app4mc.amalthea.converters.common.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.common.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\org.eclipse.app4mc.amalthea.converters.common.tests-1.1.0-SNAPSHOT-sources.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters/common/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters/common/tests/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/tests/AbstractConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/tests/AmaltheaNamespaceRegistryTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/tests/ModelVersionTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/tests/NamespaceConverterZippedTest.java
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding directory OSGI-INF/l10n/
+[DEBUG] adding entry OSGI-INF/l10n/bundle-src.properties
+[INFO] 
+[INFO] --- target-platform-configuration:2.3.0:target-platform (default-target-platform) @ org.eclipse.app4mc.amalthea.converters.common.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform from plugin realm ClassRealm[plugin>org.eclipse.tycho:target-platform-configuration:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin) @ org.eclipse.app4mc.amalthea.converters.common.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin' with basic configurator -->
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.common.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) strictBinIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\org.eclipse.app4mc.amalthea.converters.common.tests-1.1.0-SNAPSHOT.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters/common/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters/common/tests/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/tests/AbstractConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/tests/AmaltheaNamespaceRegistryTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/tests/ModelVersionTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters/common/tests/NamespaceConverterZippedTest.class
+[DEBUG] adding directory META-INF/maven/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.common.tests/
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.common.tests/pom.xml
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.common.tests/pom.properties
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default) @ org.eclipse.app4mc.amalthea.converters.common.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default' with basic configurator -->
+[DEBUG]   (f) attachP2Metadata = true
+[DEBUG]   (f) baselineMode = warn
+[DEBUG]   (f) baselineReplace = none
+[DEBUG]   (f) url = https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/
+[DEBUG]   (f) baselineRepositories = [org.eclipse.tycho.plugins.p2.Repository@440086]
+[DEBUG]   (f) defaultP2Metadata = true
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default {execution: default-p2-metadata-default}
+[DEBUG]   (f) generateDownloadStatsProperty = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] No baseline version MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-surefire-plugin:2.3.0:test (default-test) @ org.eclipse.app4mc.amalthea.converters.common.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-surefire-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test' with basic configurator -->
+[DEBUG]   (f) deleteOsgiDataDirectory = true
+[DEBUG]   (f) enableAssertions = false
+[DEBUG]   (f) failIfNoTests = true
+[DEBUG]   (f) includes = [never, **/*Test.java, **/*Tests.java]
+[DEBUG]   (f) osgiDataDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work\data
+[DEBUG]   (f) perCoreThreadCount = true
+[DEBUG]   (f) pluginArtifacts = [org.eclipse.tycho:tycho-surefire-plugin:maven-plugin:2.3.0:, org.apache.maven:maven-plugin-api:jar:3.6.3:compile, org.apache.maven:maven-model:jar:3.6.3:compile, org.apache.maven:maven-artifact:jar:3.6.3:compile, org.apache.commons:commons-lang3:jar:3.8.1:compile, org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4:compile, org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile, org.codehaus.plexus:plexus-utils:jar:3.3.0:compile, org.apache.maven:maven-core:jar:3.6.3:compile, org.apache.maven:maven-settings:jar:3.6.3:compile, org.apache.maven:maven-settings-builder:jar:3.6.3:compile, org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile, org.sonatype.plexus:plexus-cipher:jar:1.7:compile, org.apache.maven:maven-builder-support:jar:3.6.3:compile, org.apache.maven:maven-repository-metadata:jar:3.6.3:compile, org.apache.maven:maven-model-builder:jar:3.6.3:compile, org.apache.maven:maven-resolver-provider:jar:3.6.3:compile, org.slf4j:slf4j-api:jar:1.7.29:compile, org.apache.maven.resolver:maven-resolver-impl:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-api:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-spi:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-util:jar:1.4.1:compile, org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile, commons-io:commons-io:jar:2.5:compile, com.google.inject:guice:jar:no_aop:4.2.1:compile, aopalliance:aopalliance:jar:1.0:compile, com.google.guava:guava:jar:25.1-android:compile, com.google.code.findbugs:jsr305:jar:3.0.2:compile, org.checkerframework:checker-compat-qual:jar:2.0.0:compile, com.google.errorprone:error_prone_annotations:jar:2.1.3:compile, com.google.j2objc:j2objc-annotations:jar:1.1:compile, org.codehaus.mojo:animal-sniffer-annotations:jar:1.14:compile, javax.inject:javax.inject:jar:1:compile, org.codehaus.plexus:plexus-archiver:jar:4.2.2:compile, org.codehaus.plexus:plexus-io:jar:3.2.0:compile, org.apache.commons:commons-compress:jar:1.20:compile, org.iq80.snappy:snappy:jar:0.4:compile, org.tukaani:xz:jar:1.8:runtime, org.eclipse.platform:org.eclipse.osgi:jar:3.16.200:compile, org.apache.maven:maven-compat:jar:3.6.3:compile, org.codehaus.plexus:plexus-interpolation:jar:1.25:compile, org.apache.maven.wagon:wagon-provider-api:jar:3.3.4:compile, org.eclipse.tycho:sisu-equinox-launching:jar:2.3.0:compile, org.apache.commons:commons-exec:jar:1.3:compile, org.eclipse.tycho:org.eclipse.tycho.surefire.osgibooter:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit4:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit47:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit5:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit54:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit55:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit56:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit57:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.testng:jar:2.3.0:runtime, org.apache.maven.surefire:surefire-api:jar:2.22.2:compile, org.apache.maven.surefire:surefire-logger-api:jar:2.22.2:compile, org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile, org.apache.maven.surefire:maven-surefire-common:jar:2.22.2:compile, org.apache.maven.surefire:surefire-booter:jar:2.22.2:compile, org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile, org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile, classworlds:classworlds:jar:1.1-alpha-2:compile, org.apache.maven:maven-project:jar:2.2.1:compile, org.apache.maven:maven-profile:jar:2.2.1:compile, org.apache.maven:maven-artifact-manager:jar:2.2.1:compile, backport-util-concurrent:backport-util-concurrent:jar:3.1:compile, org.apache.maven:maven-plugin-registry:jar:2.2.1:compile, org.apache.maven:maven-toolchain:jar:2.2.1:compile, org.codehaus.plexus:plexus-java:jar:0.9.10:compile, org.ow2.asm:asm:jar:6.2:compile, com.thoughtworks.qdox:qdox:jar:2.0-M8:compile]
+[DEBUG]   (f) profileName = DefaultProfile
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF
+[DEBUG]   (f) redirectTestOutputToFile = false
+[DEBUG]   (f) reportsDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\surefire-reports
+[DEBUG]   (f) rerunFailingTestsCount = 0
+[DEBUG]   (f) runOrder = filesystem
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showEclipseLog = false
+[DEBUG]   (f) skipAfterFailureCount = 0
+[DEBUG]   (f) surefireProperties = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\surefire.properties
+[DEBUG]   (f) testClassesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes
+[DEBUG]   (f) testFailureIgnore = false
+[DEBUG]   (f) testRuntime = default
+[DEBUG]   (f) trimStackTrace = true
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useUIHarness = false
+[DEBUG]   (f) useUIThread = true
+[DEBUG]   (f) useUnlimitedThreads = false
+[DEBUG]   (f) work = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work
+[DEBUG] -- end configuration --
+[DEBUG] Using test framework provider org.eclipse.tycho.surefire.provider.impl.JUnit4Provider
+[DEBUG] Installation OSGI bundles:
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/javax.annotation/1.2.0.v201602091430/javax.annotation-1.2.0.v201602091430.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.apache.felix.scr/2.1.14.v20190123-1619/org.apache.felix.scr-2.1.14.v20190123-1619.jar@1:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi.services/3.8.0.v20190206-2147/org.eclipse.osgi.services-3.8.0.v20190206-2147.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi.util/3.5.300.v20190708-1141/org.eclipse.osgi.util-3.5.300.v20190708-1141.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.common/target/org.eclipse.app4mc.amalthea.converters.common-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.common/3.10.600.v20191004-1420/org.eclipse.equinox.common-3.10.600.v20191004-1420.jar@2:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.app4mc.util.sessionlog/1.1.0.202104211257/org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.jdom2/2.0.6.v20191125-0928/org.jdom2-2.0.6.v20191125-0928.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.common.tests
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.junit/4.12.0.v201504281640/org.junit-4.12.0.v201504281640.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.runtime/3.17.0.v20191122-2104/org.eclipse.core.runtime-3.17.0.v20191122-2104.jar@4:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.contenttype/3.7.500.v20190916-2125/org.eclipse.core.contenttype-3.7.500.v20190916-2125.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.preferences/3.7.600.v20191017-2055/org.eclipse.equinox.preferences-3.7.600.v20191017-2055.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.registry/3.8.600.v20191017-2055/org.eclipse.equinox.registry-3.8.600.v20191017-2055.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.jobs/3.10.600.v20191122-2104/org.eclipse.core.jobs-3.10.600.v20191122-2104.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.app/1.4.300.v20190815-1535/org.eclipse.equinox.app-1.4.300.v20190815-1535.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.launcher/1.5.600.v20191014-2022/org.eclipse.equinox.launcher-1.5.600.v20191014-2022.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.jaxen/1.1.6.v20191106-1554/org.jaxen-1.1.6.v20191106-1554.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.hamcrest.core/1.3.0.v20180420-1519/org.hamcrest.core-1.3.0.v20180420-1519.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.common.tests
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/org/eclipse/tycho/org.eclipse.tycho.surefire.osgibooter/2.3.0/org.eclipse.tycho.surefire.osgibooter-2.3.0.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/org/eclipse/tycho/org.eclipse.tycho.surefire.junit4/2.3.0/org.eclipse.tycho.surefire.junit4-2.3.0.jar
+[INFO] Executing Test Runtime with timeout 0, logs (if any) will be placed at: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work\data\.metadata\.log
+[INFO] Command line:
+	[C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, -Dosgi.noShutdown=false, -Dosgi.os=win32, -Dosgi.ws=win32, -Dosgi.arch=x86_64, -Dosgi.clean=true, -jar, C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.launcher\1.5.600.v20191014-2022\org.eclipse.equinox.launcher-1.5.600.v20191014-2022.jar, -debug, -consolelog, -data, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work\data, -install, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work, -configuration, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\work\configuration, -application, org.eclipse.tycho.surefire.osgibooter.headlesstest, -testproperties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\surefire.properties]
+Configuration location:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.common.tests/target/work/configuration/
+Configuration file:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.common.tests/target/work/configuration/config.ini loaded
+Install location:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.common.tests/target/work/
+Framework located:
+    file:/C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi/3.15.100.v20191114-1701/org.eclipse.osgi-3.15.100.v20191114-1701.jar
+Framework classpath:
+    file:/C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi/3.15.100.v20191114-1701/org.eclipse.osgi-3.15.100.v20191114-1701.jar
+Debug options:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.common.tests/.options not found
+Time to load bundles: 120
+Starting application: 1272
+Running org.eclipse.app4mc.amalthea.converters.common.tests.AmaltheaNamespaceRegistryTest
+Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.044 s - in org.eclipse.app4mc.amalthea.converters.common.tests.AmaltheaNamespaceRegistryTest
+shouldReturnNamespacesBeforeIncludeGeneric(org.eclipse.app4mc.amalthea.converters.common.tests.AmaltheaNamespaceRegistryTest)  Time elapsed: 0.008 s
+shouldReturnNamespacesBefore(org.eclipse.app4mc.amalthea.converters.common.tests.AmaltheaNamespaceRegistryTest)  Time elapsed: 0 s
+shouldReturnNamespacesBeforeInclude(org.eclipse.app4mc.amalthea.converters.common.tests.AmaltheaNamespaceRegistryTest)  Time elapsed: 0.001 s
+Running org.eclipse.app4mc.amalthea.converters.common.tests.ModelVersionTest
+Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 s - in org.eclipse.app4mc.amalthea.converters.common.tests.ModelVersionTest
+shouldGetAllVersionsBefore090(org.eclipse.app4mc.amalthea.converters.common.tests.ModelVersionTest)  Time elapsed: 0 s
+shouldIdentifyValidVersion(org.eclipse.app4mc.amalthea.converters.common.tests.ModelVersionTest)  Time elapsed: 0.001 s
+shouldGetAllVersionsBefore090Include(org.eclipse.app4mc.amalthea.converters.common.tests.ModelVersionTest)  Time elapsed: 0 s
+shouldIdentifyInvalidVersion(org.eclipse.app4mc.amalthea.converters.common.tests.ModelVersionTest)  Time elapsed: 0 s
+Running org.eclipse.app4mc.amalthea.converters.common.tests.NamespaceConverterZippedTest
+Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.035 s - in org.eclipse.app4mc.amalthea.converters.common.tests.NamespaceConverterZippedTest
+shouldPopulateModel(org.eclipse.app4mc.amalthea.converters.common.tests.NamespaceConverterZippedTest)  Time elapsed: 0.018 s
+shouldGetModelVersionFromModelFile(org.eclipse.app4mc.amalthea.converters.common.tests.NamespaceConverterZippedTest)  Time elapsed: 0.001 s
+shouldGetModelVersionFromZipFile(org.eclipse.app4mc.amalthea.converters.common.tests.NamespaceConverterZippedTest)  Time elapsed: 0.002 s
+shouldGetInvalidModelVersion(org.eclipse.app4mc.amalthea.converters.common.tests.NamespaceConverterZippedTest)  Time elapsed: 0.001 s
+shouldTemporaryUnzipFile(org.eclipse.app4mc.amalthea.converters.common.tests.NamespaceConverterZippedTest)  Time elapsed: 0.002 s
+shouldGetInvalidModelVersionFromNonExisting(org.eclipse.app4mc.amalthea.converters.common.tests.NamespaceConverterZippedTest)  Time elapsed: 0 s
+shouldCreateBackupOfZip(org.eclipse.app4mc.amalthea.converters.common.tests.NamespaceConverterZippedTest)  Time elapsed: 0.007 s
+shouldGetInvalidModelVersionFromNull(org.eclipse.app4mc.amalthea.converters.common.tests.NamespaceConverterZippedTest)  Time elapsed: 0 s
+shouldCheckZipFile(org.eclipse.app4mc.amalthea.converters.common.tests.NamespaceConverterZippedTest)  Time elapsed: 0 s
+shouldGetInvalidModelVersionFromWrongFileExtension(org.eclipse.app4mc.amalthea.converters.common.tests.NamespaceConverterZippedTest)  Time elapsed: 0.001 s
+
+Results:
+
+Tests run: 17, Failures: 0, Errors: 0, Skipped: 0
+
+[INFO] All tests passed!
+[INFO] 
+[INFO] --< org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests >--
+[INFO] Building [test-bundle] APP4MC Amalthea Converters to 0.7.1 - Tests 1.1.0-SNAPSHOT [24/47]
+[INFO] ------------------------[ eclipse-test-plugin ]-------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): [compile, runtime]
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <baseDir>${project.basedir}</baseDir>
+  <execution>${mojoExecution}</execution>
+  <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
+  <format default-value="yyyyMMddHHmm"/>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id (default-validate-id)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version (default-validate-version)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <strictVersions default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources (default-resources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources default-value="${project.resources}"/>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile (default-compile)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <basedir>${basedir}</basedir>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <compilerId default-value="jdt">${maven.compiler.compilerId}</compilerId>
+  <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
+  <copyResources default-value="true"/>
+  <debug default-value="true">${maven.compiler.debug}</debug>
+  <deriveReleaseCompilerArgumentFromTargetLevel default-value="true"/>
+  <encoding>${project.build.sourceEncoding}</encoding>
+  <executable>${maven.compiler.executable}</executable>
+  <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
+  <fork default-value="false"/>
+  <generatedSourcesDirectory default-value="${project.build.directory}/generated-sources/annotations"/>
+  <logDirectory default-value="${project.build.directory}/compile-logs"/>
+  <mavenCompilerEncoding>${maven.compiler.encoding}</mavenCompilerEncoding>
+  <maxmem>${maven.compiler.maxmem}</maxmem>
+  <meminitial>${maven.compiler.meminitial}</meminitial>
+  <optimize default-value="false">${maven.compiler.optimize}</optimize>
+  <outputFileName>${project.build.finalName}</outputFileName>
+  <project>${project}</project>
+  <release>${maven.compiler.release}</release>
+  <requireJREPackageImports default-value="false"/>
+  <session>${session}</session>
+  <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
+  <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
+  <source>${maven.compiler.source}</source>
+  <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
+  <strictCompilerTarget default-value="false"/>
+  <target>${maven.compiler.target}</target>
+  <useJDK default-value="SYSTEM"/>
+  <useProjectSettings default-value="true"/>
+  <verbose default-value="false">${maven.compiler.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources (default-testResources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources>${project.testResources}</resources>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform (default-target-platform)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <finalName>${project.build.finalName}</finalName>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <strictBinIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attachP2Metadata default-value="true"/>
+  <baselineMode default-value="warn">${tycho.baseline}</baselineMode>
+  <baselineReplace default-value="all">none</baselineReplace>
+  <baselineRepositories>
+    <repository>
+      <url>https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/</url>
+    </repository>
+  </baselineRepositories>
+  <defaultP2Metadata default-value="true"/>
+  <execution>${mojoExecution}</execution>
+  <generateDownloadStatsProperty default-value="false">${tycho.generateDownloadStatsProperty}</generateDownloadStatsProperty>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test (default-test)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <argLine>${tycho.testArgLine}</argLine>
+  <debugPort>${debugPort}</debugPort>
+  <deleteOsgiDataDirectory default-value="true"/>
+  <enableAssertions default-value="false">${enableAssertions}</enableAssertions>
+  <excludedGroups>${excludedGroups}</excludedGroups>
+  <failIfNoTests default-value="true">${failIfNoTests}</failIfNoTests>
+  <forkedProcessTimeoutInSeconds>${surefire.timeout}</forkedProcessTimeoutInSeconds>
+  <groups>${groups}</groups>
+  <includes>
+    <forkMode>never</forkMode>
+    <include>**/*Test.java</include>
+    <include>**/*Tests.java</include>
+  </includes>
+  <osgiDataDirectory default-value="${project.build.directory}/work/data/"/>
+  <parallel>${parallel}</parallel>
+  <perCoreThreadCount default-value="true">${perCoreThreadCount}</perCoreThreadCount>
+  <pluginArtifacts>${plugin.artifacts}</pluginArtifacts>
+  <profileName default-value="DefaultProfile"/>
+  <project>${project}</project>
+  <redirectTestOutputToFile default-value="false">${maven.test.redirectTestOutputToFile}</redirectTestOutputToFile>
+  <reportsDirectory default-value="${project.build.directory}/surefire-reports"/>
+  <rerunFailingTestsCount default-value="0">${surefire.rerunFailingTestsCount}</rerunFailingTestsCount>
+  <runOrder default-value="filesystem"/>
+  <session>${session}</session>
+  <showEclipseLog default-value="false">${tycho.showEclipseLog}</showEclipseLog>
+  <skip>${maven.test.skip}</skip>
+  <skipAfterFailureCount default-value="0">${surefire.skipAfterFailureCount}</skipAfterFailureCount>
+  <skipExec>${maven.test.skipExec}</skipExec>
+  <skipTests>${skipTests}</skipTests>
+  <surefireProperties default-value="${project.build.directory}/surefire.properties"/>
+  <test>${test}</test>
+  <testClass>${testClass}</testClass>
+  <testClassesDirectory>${project.build.outputDirectory}</testClassesDirectory>
+  <testFailureIgnore default-value="false">${maven.test.failure.ignore}</testFailureIgnore>
+  <testRuntime default-value="default"/>
+  <threadCount>${threadCount}</threadCount>
+  <trimStackTrace default-value="true">${trimStackTrace}</trimStackTrace>
+  <useJDK default-value="SYSTEM"/>
+  <useUIHarness default-value="false"/>
+  <useUIThread default-value="true"/>
+  <useUnlimitedThreads default-value="false">${useUnlimitedThreads}</useUnlimitedThreads>
+  <work default-value="${project.build.directory}/work"/>
+</configuration>
+[DEBUG] =======================================================================
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=38301, ConflictMarker.markTime=40000, ConflictMarker.nodeCount=58, ConflictIdSorter.graphTime=13900, ConflictIdSorter.topsortTime=18900, ConflictIdSorter.conflictIdCount=21, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=119600, ConflictResolver.conflictItemCount=57, DefaultDependencyCollector.collectTime=747000, DefaultDependencyCollector.transformTime=263299}
+[DEBUG] org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:eclipse-test-plugin:1.1.0-SNAPSHOT
+[DEBUG]    p2.eclipse-plugin:javax.annotation:jar:1.2.0.v201602091430:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi:jar:3.15.100.v20191114-1701:system
+[DEBUG]    p2.eclipse-plugin:org.apache.felix.scr:jar:2.1.14.v20190123-1619:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.services:jar:3.8.0.v20190206-2147:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.util:jar:3.5.300.v20190708-1141:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.eclipse.app4mc.util.sessionlog:jar:1.1.0.202104211257:system
+[DEBUG]    p2.eclipse-plugin:org.jdom2:jar:2.0.6.v20191125-0928:system
+[DEBUG]    p2.eclipse-plugin:org.junit:jar:junit.jar:4.12.0.v201504281640:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.jaxen:jar:1.1.6.v20191106-1554:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.common:jar:3.10.600.v20191004-1420:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.runtime:jar:3.17.0.v20191122-2104:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.contenttype:jar:3.7.500.v20190916-2125:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.preferences:jar:3.7.600.v20191017-2055:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.registry:jar:3.8.600.v20191017-2055:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.jobs:jar:3.10.600.v20191122-2104:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.app:jar:1.4.300.v20190815-1535:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.launcher:jar:1.5.600.v20191014-2022:system
+[DEBUG]    p2.eclipse-plugin:org.hamcrest.core:jar:1.3.0.v20180420-1519:system
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ org.eclipse.app4mc.amalthea.converters.071.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\test-classes
+[DEBUG] -- end configuration --
+[INFO] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work\dev.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work\configuration\org.eclipse.osgi\framework.info.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-logger-api-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-booter-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-api-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\maven-surefire-common-2.22.2.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work\configuration\org.eclipse.osgi\22\0
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work\configuration\org.eclipse.osgi\22
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work\configuration\org.eclipse.osgi\10\0\.cp\junit.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work\configuration\org.eclipse.osgi\10\0\.cp
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work\configuration\org.eclipse.osgi\10\0
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work\configuration\org.eclipse.osgi\10
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTableLock
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTable.2
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTable.1
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work\configuration\org.eclipse.osgi\.manager
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work\configuration\org.eclipse.osgi
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work\configuration\org.eclipse.equinox.app\.manager\.fileTableLock
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work\configuration\org.eclipse.equinox.app\.manager
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work\configuration\org.eclipse.equinox.app
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work\configuration\org.eclipse.core.runtime\.table.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work\configuration\org.eclipse.core.runtime\.orphans.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work\configuration\org.eclipse.core.runtime\.namespaces.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTableLock
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTable.8
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTable.7
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work\configuration\org.eclipse.core.runtime\.manager
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work\configuration\org.eclipse.core.runtime\.mainData.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work\configuration\org.eclipse.core.runtime\.extraData.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work\configuration\org.eclipse.core.runtime\.contributors.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work\configuration\org.eclipse.core.runtime\.contributions.1
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work\configuration\org.eclipse.core.runtime
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work\configuration\config.ini
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work\configuration
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\surefire.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters071.tests.Sw_SectionConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters071.tests.SwConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters071.tests.RootElementConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters071.tests.PropertyConstraintsConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters071.tests.NamespaceConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters071.tests.HwConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters071.tests.ConstraintsConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters071.tests.Sw_SectionConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters071.tests.SwConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters071.tests.RootElementConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters071.tests.PropertyConstraintsConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters071.tests.NamespaceConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters071.tests.HwConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters071.tests.ConstraintsConverterTest.txt
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\surefire-reports
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\sourcebundle-l10n-gen\OSGI-INF\l10n\bundle-src.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\sourcebundle-l10n-gen\OSGI-INF\l10n
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\sourcebundle-l10n-gen\OSGI-INF
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\sourcebundle-l10n-gen
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\p2content.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\p2artifacts.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\org.eclipse.app4mc.amalthea.converters.071.tests-1.1.0-SNAPSHOT.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\org.eclipse.app4mc.amalthea.converters.071.tests-1.1.0-SNAPSHOT-sources.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\maven-archiver\pom.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\maven-archiver
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\MANIFEST.MF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\local-artifacts.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\generated-sources\annotations
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\generated-sources
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\classes\org\eclipse\app4mc\amalthea\converters071\tests\Sw_SectionConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\classes\org\eclipse\app4mc\amalthea\converters071\tests\SwConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\classes\org\eclipse\app4mc\amalthea\converters071\tests\RootElementConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\classes\org\eclipse\app4mc\amalthea\converters071\tests\PropertyConstraintsConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\classes\org\eclipse\app4mc\amalthea\converters071\tests\NamespaceConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\classes\org\eclipse\app4mc\amalthea\converters071\tests\HwConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\classes\org\eclipse\app4mc\amalthea\converters071\tests\ConstraintsConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\classes\org\eclipse\app4mc\amalthea\converters071\tests\Abstract071ConverterTest.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\classes\org\eclipse\app4mc\amalthea\converters071\tests
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\classes\org\eclipse\app4mc\amalthea\converters071
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\classes\org\eclipse\app4mc\amalthea
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\classes\org\eclipse\app4mc
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\classes\org\eclipse
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\classes\org
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\classes
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\site
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier) @ org.eclipse.app4mc.amalthea.converters.071.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier' with basic configurator -->
+[DEBUG]   (f) baseDir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier {execution: default-build-qualifier}
+[DEBUG]   (s) format = yyyyMMddHHmm
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] The project's OSGi version is 1.1.0.202104220626
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-id (default-validate-id) @ org.eclipse.app4mc.amalthea.converters.071.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-version (default-validate-version) @ org.eclipse.app4mc.amalthea.converters.071.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF
+[DEBUG]   (f) strictVersions = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ org.eclipse.app4mc.amalthea.converters.071.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.071.tests.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\src\main\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\src\main\resources
+[INFO] 
+[INFO] --- tycho-compiler-plugin:2.3.0:compile (default-compile) @ org.eclipse.app4mc.amalthea.converters.071.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-compiler-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile' with basic configurator -->
+[DEBUG]   (f) basedir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target
+[DEBUG]   (f) compilerId = jdt
+[DEBUG]   (f) copyResources = true
+[DEBUG]   (f) debug = true
+[DEBUG]   (f) deriveReleaseCompilerArgumentFromTargetLevel = true
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) failOnWarning = false
+[DEBUG]   (f) fork = false
+[DEBUG]   (f) generatedSourcesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\generated-sources\annotations
+[DEBUG]   (f) logDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\compile-logs
+[DEBUG]   (f) optimize = false
+[DEBUG]   (f) outputFileName = org.eclipse.app4mc.amalthea.converters.071.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF
+[DEBUG]   (f) requireJREPackageImports = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showDeprecation = false
+[DEBUG]   (f) showWarnings = false
+[DEBUG]   (f) staleMillis = 0
+[DEBUG]   (f) strictCompilerTarget = false
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useProjectSettings = true
+[DEBUG]   (f) verbose = false
+[DEBUG] -- end configuration --
+[DEBUG] Manifest BREEs: [OSGi profile 'JavaSE-1.8' { source level: 1.8, target level: 1.8}]
+[DEBUG] Target Platform EE: OSGi profile 'JavaSE-11' { source level: 11, target level: 11}
+[DEBUG] Effective source/target: 1.8/1.8
+[DEBUG] Using compiler 'jdt'.
+[DEBUG] Source directories: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\src]
+[DEBUG] Classpath: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\classes
+ C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\classes]
+[DEBUG] Output directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\classes
+[DEBUG] Classpath:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\classes
+[DEBUG]  C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\classes
+[DEBUG] Source roots:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\src
+[INFO] Compiling 8 source files to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\classes
+[DEBUG] JDT compiler args: [-properties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.settings\org.eclipse.jdt.core.prefs, -s, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\generated-sources\annotations, -d, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\classes, -classpath, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\target\classes;C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\classes, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\src\org\eclipse\app4mc\amalthea\converters071\tests\PropertyConstraintsConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\src\org\eclipse\app4mc\amalthea\converters071\tests\NamespaceConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\src\org\eclipse\app4mc\amalthea\converters071\tests\RootElementConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\src\org\eclipse\app4mc\amalthea\converters071\tests\SwConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\src\org\eclipse\app4mc\amalthea\converters071\tests\Abstract071ConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\src\org\eclipse\app4mc\amalthea\converters071\tests\ConstraintsConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\src\org\eclipse\app4mc\amalthea\converters071\tests\HwConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\src\org\eclipse\app4mc\amalthea\converters071\tests\Sw_SectionConverterTest.java, -g, -nowarn, -target, 1.8, -source, 1.8, --release, 8, -encoding, UTF-8]
+[DEBUG] Original compiler output: 
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ org.eclipse.app4mc.amalthea.converters.071.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\test-classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\src\test\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.071.tests.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\src\test\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\src\test\resources
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ org.eclipse.app4mc.amalthea.converters.071.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.071.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\org.eclipse.app4mc.amalthea.converters.071.tests-1.1.0-SNAPSHOT-sources.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters071/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters071/tests/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters071/tests/Abstract071ConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters071/tests/ConstraintsConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters071/tests/HwConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters071/tests/NamespaceConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters071/tests/PropertyConstraintsConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters071/tests/RootElementConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters071/tests/SwConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters071/tests/Sw_SectionConverterTest.java
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding directory OSGI-INF/l10n/
+[DEBUG] adding entry OSGI-INF/l10n/bundle-src.properties
+[INFO] 
+[INFO] --- target-platform-configuration:2.3.0:target-platform (default-target-platform) @ org.eclipse.app4mc.amalthea.converters.071.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform from plugin realm ClassRealm[plugin>org.eclipse.tycho:target-platform-configuration:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin) @ org.eclipse.app4mc.amalthea.converters.071.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin' with basic configurator -->
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.071.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) strictBinIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\org.eclipse.app4mc.amalthea.converters.071.tests-1.1.0-SNAPSHOT.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters071/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters071/tests/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters071/tests/Abstract071ConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters071/tests/ConstraintsConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters071/tests/HwConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters071/tests/NamespaceConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters071/tests/PropertyConstraintsConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters071/tests/RootElementConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters071/tests/SwConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters071/tests/Sw_SectionConverterTest.class
+[DEBUG] adding directory META-INF/maven/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.071.tests/
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.071.tests/pom.xml
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.071.tests/pom.properties
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default) @ org.eclipse.app4mc.amalthea.converters.071.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default' with basic configurator -->
+[DEBUG]   (f) attachP2Metadata = true
+[DEBUG]   (f) baselineMode = warn
+[DEBUG]   (f) baselineReplace = none
+[DEBUG]   (f) url = https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/
+[DEBUG]   (f) baselineRepositories = [org.eclipse.tycho.plugins.p2.Repository@24dc895f]
+[DEBUG]   (f) defaultP2Metadata = true
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default {execution: default-p2-metadata-default}
+[DEBUG]   (f) generateDownloadStatsProperty = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] No baseline version MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-surefire-plugin:2.3.0:test (default-test) @ org.eclipse.app4mc.amalthea.converters.071.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-surefire-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test' with basic configurator -->
+[DEBUG]   (f) deleteOsgiDataDirectory = true
+[DEBUG]   (f) enableAssertions = false
+[DEBUG]   (f) failIfNoTests = true
+[DEBUG]   (f) includes = [never, **/*Test.java, **/*Tests.java]
+[DEBUG]   (f) osgiDataDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work\data
+[DEBUG]   (f) perCoreThreadCount = true
+[DEBUG]   (f) pluginArtifacts = [org.eclipse.tycho:tycho-surefire-plugin:maven-plugin:2.3.0:, org.apache.maven:maven-plugin-api:jar:3.6.3:compile, org.apache.maven:maven-model:jar:3.6.3:compile, org.apache.maven:maven-artifact:jar:3.6.3:compile, org.apache.commons:commons-lang3:jar:3.8.1:compile, org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4:compile, org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile, org.codehaus.plexus:plexus-utils:jar:3.3.0:compile, org.apache.maven:maven-core:jar:3.6.3:compile, org.apache.maven:maven-settings:jar:3.6.3:compile, org.apache.maven:maven-settings-builder:jar:3.6.3:compile, org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile, org.sonatype.plexus:plexus-cipher:jar:1.7:compile, org.apache.maven:maven-builder-support:jar:3.6.3:compile, org.apache.maven:maven-repository-metadata:jar:3.6.3:compile, org.apache.maven:maven-model-builder:jar:3.6.3:compile, org.apache.maven:maven-resolver-provider:jar:3.6.3:compile, org.slf4j:slf4j-api:jar:1.7.29:compile, org.apache.maven.resolver:maven-resolver-impl:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-api:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-spi:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-util:jar:1.4.1:compile, org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile, commons-io:commons-io:jar:2.5:compile, com.google.inject:guice:jar:no_aop:4.2.1:compile, aopalliance:aopalliance:jar:1.0:compile, com.google.guava:guava:jar:25.1-android:compile, com.google.code.findbugs:jsr305:jar:3.0.2:compile, org.checkerframework:checker-compat-qual:jar:2.0.0:compile, com.google.errorprone:error_prone_annotations:jar:2.1.3:compile, com.google.j2objc:j2objc-annotations:jar:1.1:compile, org.codehaus.mojo:animal-sniffer-annotations:jar:1.14:compile, javax.inject:javax.inject:jar:1:compile, org.codehaus.plexus:plexus-archiver:jar:4.2.2:compile, org.codehaus.plexus:plexus-io:jar:3.2.0:compile, org.apache.commons:commons-compress:jar:1.20:compile, org.iq80.snappy:snappy:jar:0.4:compile, org.tukaani:xz:jar:1.8:runtime, org.eclipse.platform:org.eclipse.osgi:jar:3.16.200:compile, org.apache.maven:maven-compat:jar:3.6.3:compile, org.codehaus.plexus:plexus-interpolation:jar:1.25:compile, org.apache.maven.wagon:wagon-provider-api:jar:3.3.4:compile, org.eclipse.tycho:sisu-equinox-launching:jar:2.3.0:compile, org.apache.commons:commons-exec:jar:1.3:compile, org.eclipse.tycho:org.eclipse.tycho.surefire.osgibooter:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit4:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit47:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit5:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit54:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit55:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit56:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit57:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.testng:jar:2.3.0:runtime, org.apache.maven.surefire:surefire-api:jar:2.22.2:compile, org.apache.maven.surefire:surefire-logger-api:jar:2.22.2:compile, org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile, org.apache.maven.surefire:maven-surefire-common:jar:2.22.2:compile, org.apache.maven.surefire:surefire-booter:jar:2.22.2:compile, org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile, org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile, classworlds:classworlds:jar:1.1-alpha-2:compile, org.apache.maven:maven-project:jar:2.2.1:compile, org.apache.maven:maven-profile:jar:2.2.1:compile, org.apache.maven:maven-artifact-manager:jar:2.2.1:compile, backport-util-concurrent:backport-util-concurrent:jar:3.1:compile, org.apache.maven:maven-plugin-registry:jar:2.2.1:compile, org.apache.maven:maven-toolchain:jar:2.2.1:compile, org.codehaus.plexus:plexus-java:jar:0.9.10:compile, org.ow2.asm:asm:jar:6.2:compile, com.thoughtworks.qdox:qdox:jar:2.0-M8:compile]
+[DEBUG]   (f) profileName = DefaultProfile
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF
+[DEBUG]   (f) redirectTestOutputToFile = false
+[DEBUG]   (f) reportsDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\surefire-reports
+[DEBUG]   (f) rerunFailingTestsCount = 0
+[DEBUG]   (f) runOrder = filesystem
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showEclipseLog = false
+[DEBUG]   (f) skipAfterFailureCount = 0
+[DEBUG]   (f) surefireProperties = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\surefire.properties
+[DEBUG]   (f) testClassesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\classes
+[DEBUG]   (f) testFailureIgnore = false
+[DEBUG]   (f) testRuntime = default
+[DEBUG]   (f) trimStackTrace = true
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useUIHarness = false
+[DEBUG]   (f) useUIThread = true
+[DEBUG]   (f) useUnlimitedThreads = false
+[DEBUG]   (f) work = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work
+[DEBUG] -- end configuration --
+[DEBUG] Using test framework provider org.eclipse.tycho.surefire.provider.impl.JUnit4Provider
+[DEBUG] Installation OSGI bundles:
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/javax.annotation/1.2.0.v201602091430/javax.annotation-1.2.0.v201602091430.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.apache.felix.scr/2.1.14.v20190123-1619/org.apache.felix.scr-2.1.14.v20190123-1619.jar@1:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi.services/3.8.0.v20190206-2147/org.eclipse.osgi.services-3.8.0.v20190206-2147.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi.util/3.5.300.v20190708-1141/org.eclipse.osgi.util-3.5.300.v20190708-1141.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.071/target/org.eclipse.app4mc.amalthea.converters.071-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.common/target/org.eclipse.app4mc.amalthea.converters.common-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.app4mc.util.sessionlog/1.1.0.202104211257/org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.jdom2/2.0.6.v20191125-0928/org.jdom2-2.0.6.v20191125-0928.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.071.tests
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.junit/4.12.0.v201504281640/org.junit-4.12.0.v201504281640.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.common.tests/target/org.eclipse.app4mc.amalthea.converters.common.tests-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.jaxen/1.1.6.v20191106-1554/org.jaxen-1.1.6.v20191106-1554.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.common/3.10.600.v20191004-1420/org.eclipse.equinox.common-3.10.600.v20191004-1420.jar@2:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.runtime/3.17.0.v20191122-2104/org.eclipse.core.runtime-3.17.0.v20191122-2104.jar@4:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.contenttype/3.7.500.v20190916-2125/org.eclipse.core.contenttype-3.7.500.v20190916-2125.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.preferences/3.7.600.v20191017-2055/org.eclipse.equinox.preferences-3.7.600.v20191017-2055.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.registry/3.8.600.v20191017-2055/org.eclipse.equinox.registry-3.8.600.v20191017-2055.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.jobs/3.10.600.v20191122-2104/org.eclipse.core.jobs-3.10.600.v20191122-2104.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.app/1.4.300.v20190815-1535/org.eclipse.equinox.app-1.4.300.v20190815-1535.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.launcher/1.5.600.v20191014-2022/org.eclipse.equinox.launcher-1.5.600.v20191014-2022.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.hamcrest.core/1.3.0.v20180420-1519/org.hamcrest.core-1.3.0.v20180420-1519.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.071.tests
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/org/eclipse/tycho/org.eclipse.tycho.surefire.osgibooter/2.3.0/org.eclipse.tycho.surefire.osgibooter-2.3.0.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/org/eclipse/tycho/org.eclipse.tycho.surefire.junit4/2.3.0/org.eclipse.tycho.surefire.junit4-2.3.0.jar
+[INFO] Executing Test Runtime with timeout 0, logs (if any) will be placed at: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work\data\.metadata\.log
+[INFO] Command line:
+	[C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, -Dosgi.noShutdown=false, -Dosgi.os=win32, -Dosgi.ws=win32, -Dosgi.arch=x86_64, -Dosgi.clean=true, -jar, C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.launcher\1.5.600.v20191014-2022\org.eclipse.equinox.launcher-1.5.600.v20191014-2022.jar, -debug, -consolelog, -data, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work\data, -install, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work, -configuration, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\work\configuration, -application, org.eclipse.tycho.surefire.osgibooter.headlesstest, -testproperties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\target\surefire.properties]
+Configuration location:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.071.tests/target/work/configuration/
+Configuration file:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.071.tests/target/work/configuration/config.ini loaded
+Install location:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.071.tests/target/work/
+Framework located:
+    file:/C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi/3.15.100.v20191114-1701/org.eclipse.osgi-3.15.100.v20191114-1701.jar
+Framework classpath:
+    file:/C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi/3.15.100.v20191114-1701/org.eclipse.osgi-3.15.100.v20191114-1701.jar
+Debug options:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.071.tests/.options not found
+Time to load bundles: 129
+Starting application: 1290
+Running org.eclipse.app4mc.amalthea.converters071.tests.ConstraintsConverterTest
+Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.224 s - in org.eclipse.app4mc.amalthea.converters071.tests.ConstraintsConverterTest
+testConversion[0: Test data ID: 500501. Description : AffinityConstraint change](org.eclipse.app4mc.amalthea.converters071.tests.ConstraintsConverterTest)  Time elapsed: 0.106 s
+verification[0: Test data ID: 500501. Description : AffinityConstraint change](org.eclipse.app4mc.amalthea.converters071.tests.ConstraintsConverterTest)  Time elapsed: 0.009 s
+testConversion[1: Test data ID: 500502. Description : RunnableSequencingConstraint change](org.eclipse.app4mc.amalthea.converters071.tests.ConstraintsConverterTest)  Time elapsed: 0.016 s
+verification[1: Test data ID: 500502. Description : RunnableSequencingConstraint change](org.eclipse.app4mc.amalthea.converters071.tests.ConstraintsConverterTest)  Time elapsed: 0.008 s
+testConversion[2: Test data ID: 500506. Description : Timing Constraints  change](org.eclipse.app4mc.amalthea.converters071.tests.ConstraintsConverterTest)  Time elapsed: 0.013 s
+verification[2: Test data ID: 500506. Description : Timing Constraints  change](org.eclipse.app4mc.amalthea.converters071.tests.ConstraintsConverterTest)  Time elapsed: 0.005 s
+Running org.eclipse.app4mc.amalthea.converters071.tests.HwConverterTest
+Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.037 s - in org.eclipse.app4mc.amalthea.converters071.tests.HwConverterTest
+testConversion[0: Test file: /hw/memorytype_size.amxmi](org.eclipse.app4mc.amalthea.converters071.tests.HwConverterTest)  Time elapsed: 0.011 s
+verification[0: Test file: /hw/memorytype_size.amxmi](org.eclipse.app4mc.amalthea.converters071.tests.HwConverterTest)  Time elapsed: 0.004 s
+testConversion[1: Test file: /hw/hw_frequency_quartz.amxmi](org.eclipse.app4mc.amalthea.converters071.tests.HwConverterTest)  Time elapsed: 0.012 s
+verification[1: Test file: /hw/hw_frequency_quartz.amxmi](org.eclipse.app4mc.amalthea.converters071.tests.HwConverterTest)  Time elapsed: 0.007 s
+Running org.eclipse.app4mc.amalthea.converters071.tests.NamespaceConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.074 s - in org.eclipse.app4mc.amalthea.converters071.tests.NamespaceConverterTest
+testConversion[0: Test file: /namespace/AMALTHEA_Democar.amxmi](org.eclipse.app4mc.amalthea.converters071.tests.NamespaceConverterTest)  Time elapsed: 0.053 s
+verification[0: Test file: /namespace/AMALTHEA_Democar.amxmi](org.eclipse.app4mc.amalthea.converters071.tests.NamespaceConverterTest)  Time elapsed: 0.018 s
+Running org.eclipse.app4mc.amalthea.converters071.tests.PropertyConstraintsConverterTest
+Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.03 s - in org.eclipse.app4mc.amalthea.converters071.tests.PropertyConstraintsConverterTest
+testConversion[0: Test file: /property-constraints/memorytype_size.amxmi](org.eclipse.app4mc.amalthea.converters071.tests.PropertyConstraintsConverterTest)  Time elapsed: 0.01 s
+verification[0: Test file: /property-constraints/memorytype_size.amxmi](org.eclipse.app4mc.amalthea.converters071.tests.PropertyConstraintsConverterTest)  Time elapsed: 0.004 s
+testConversion[1: Test file: /property-constraints/pc_frequency_quartz.amxmi](org.eclipse.app4mc.amalthea.converters071.tests.PropertyConstraintsConverterTest)  Time elapsed: 0.008 s
+verification[1: Test file: /property-constraints/pc_frequency_quartz.amxmi](org.eclipse.app4mc.amalthea.converters071.tests.PropertyConstraintsConverterTest)  Time elapsed: 0.005 s
+Running org.eclipse.app4mc.amalthea.converters071.tests.RootElementConverterTest
+Tests run: 20, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.083 s - in org.eclipse.app4mc.amalthea.converters071.tests.RootElementConverterTest
+testConversion[0: Test file: /non-amalthea-root-tag/components.amxmi](org.eclipse.app4mc.amalthea.converters071.tests.RootElementConverterTest)  Time elapsed: 0.006 s
+verification[0: Test file: /non-amalthea-root-tag/components.amxmi](org.eclipse.app4mc.amalthea.converters071.tests.RootElementConverterTest)  Time elapsed: 0.004 s
+testConversion[1: Test file: /non-amalthea-root-tag/config.amxmi](org.eclipse.app4mc.amalthea.converters071.tests.RootElementConverterTest)  Time elapsed: 0.003 s
+verification[1: Test file: /non-amalthea-root-tag/config.amxmi](org.eclipse.app4mc.amalthea.converters071.tests.RootElementConverterTest)  Time elapsed: 0.002 s
+testConversion[2: Test file: /non-amalthea-root-tag/constraints.amxmi](org.eclipse.app4mc.amalthea.converters071.tests.RootElementConverterTest)  Time elapsed: 0.006 s
+verification[2: Test file: /non-amalthea-root-tag/constraints.amxmi](org.eclipse.app4mc.amalthea.converters071.tests.RootElementConverterTest)  Time elapsed: 0.002 s
+testConversion[3: Test file: /non-amalthea-root-tag/eventmodel.amxmi](org.eclipse.app4mc.amalthea.converters071.tests.RootElementConverterTest)  Time elapsed: 0.004 s
+verification[3: Test file: /non-amalthea-root-tag/eventmodel.amxmi](org.eclipse.app4mc.amalthea.converters071.tests.RootElementConverterTest)  Time elapsed: 0.004 s
+testConversion[4: Test file: /non-amalthea-root-tag/hwmodel.amxmi](org.eclipse.app4mc.amalthea.converters071.tests.RootElementConverterTest)  Time elapsed: 0.005 s
+verification[4: Test file: /non-amalthea-root-tag/hwmodel.amxmi](org.eclipse.app4mc.amalthea.converters071.tests.RootElementConverterTest)  Time elapsed: 0.004 s
+testConversion[5: Test file: /non-amalthea-root-tag/mappingmodel.amxmi](org.eclipse.app4mc.amalthea.converters071.tests.RootElementConverterTest)  Time elapsed: 0.005 s
+verification[5: Test file: /non-amalthea-root-tag/mappingmodel.amxmi](org.eclipse.app4mc.amalthea.converters071.tests.RootElementConverterTest)  Time elapsed: 0.003 s
+testConversion[6: Test file: /non-amalthea-root-tag/osmodel.amxmi](org.eclipse.app4mc.amalthea.converters071.tests.RootElementConverterTest)  Time elapsed: 0.005 s
+verification[6: Test file: /non-amalthea-root-tag/osmodel.amxmi](org.eclipse.app4mc.amalthea.converters071.tests.RootElementConverterTest)  Time elapsed: 0.002 s
+testConversion[7: Test file: /non-amalthea-root-tag/propertyconstraints.amxmi](org.eclipse.app4mc.amalthea.converters071.tests.RootElementConverterTest)  Time elapsed: 0.004 s
+verification[7: Test file: /non-amalthea-root-tag/propertyconstraints.amxmi](org.eclipse.app4mc.amalthea.converters071.tests.RootElementConverterTest)  Time elapsed: 0.002 s
+testConversion[8: Test file: /non-amalthea-root-tag/stimuli.amxmi](org.eclipse.app4mc.amalthea.converters071.tests.RootElementConverterTest)  Time elapsed: 0.005 s
+verification[8: Test file: /non-amalthea-root-tag/stimuli.amxmi](org.eclipse.app4mc.amalthea.converters071.tests.RootElementConverterTest)  Time elapsed: 0.003 s
+testConversion[9: Test file: /non-amalthea-root-tag/swmodel.amxmi](org.eclipse.app4mc.amalthea.converters071.tests.RootElementConverterTest)  Time elapsed: 0.004 s
+verification[9: Test file: /non-amalthea-root-tag/swmodel.amxmi](org.eclipse.app4mc.amalthea.converters071.tests.RootElementConverterTest)  Time elapsed: 0.003 s
+Running org.eclipse.app4mc.amalthea.converters071.tests.SwConverterTest
+Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.042 s - in org.eclipse.app4mc.amalthea.converters071.tests.SwConverterTest
+testConversion[0: Test data ID: Sections : 1](org.eclipse.app4mc.amalthea.converters071.tests.SwConverterTest)  Time elapsed: 0.011 s
+verification[0: Test data ID: Sections : 1](org.eclipse.app4mc.amalthea.converters071.tests.SwConverterTest)  Time elapsed: 0.004 s
+testConversion[1: Test data ID: ModeSwitchEntry_Scenario : 2](org.eclipse.app4mc.amalthea.converters071.tests.SwConverterTest)  Time elapsed: 0.017 s
+verification[1: Test data ID: ModeSwitchEntry_Scenario : 2](org.eclipse.app4mc.amalthea.converters071.tests.SwConverterTest)  Time elapsed: 0.008 s
+Running org.eclipse.app4mc.amalthea.converters071.tests.Sw_SectionConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.032 s - in org.eclipse.app4mc.amalthea.converters071.tests.Sw_SectionConverterTest
+testConversion[0: Test data ID: Sections-Constraints-Conversion : 1](org.eclipse.app4mc.amalthea.converters071.tests.Sw_SectionConverterTest)  Time elapsed: 0.021 s
+verification[0: Test data ID: Sections-Constraints-Conversion : 1](org.eclipse.app4mc.amalthea.converters071.tests.Sw_SectionConverterTest)  Time elapsed: 0.009 s
+
+Results:
+
+Tests run: 42, Failures: 0, Errors: 0, Skipped: 0
+
+[INFO] All tests passed!
+[INFO] 
+[INFO] --< org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests >--
+[INFO] Building [test-bundle] APP4MC Amalthea Converters to 0.7.2 - Tests 1.1.0-SNAPSHOT [25/47]
+[INFO] ------------------------[ eclipse-test-plugin ]-------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): [compile, runtime]
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <baseDir>${project.basedir}</baseDir>
+  <execution>${mojoExecution}</execution>
+  <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
+  <format default-value="yyyyMMddHHmm"/>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id (default-validate-id)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version (default-validate-version)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <strictVersions default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources (default-resources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources default-value="${project.resources}"/>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile (default-compile)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <basedir>${basedir}</basedir>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <compilerId default-value="jdt">${maven.compiler.compilerId}</compilerId>
+  <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
+  <copyResources default-value="true"/>
+  <debug default-value="true">${maven.compiler.debug}</debug>
+  <deriveReleaseCompilerArgumentFromTargetLevel default-value="true"/>
+  <encoding>${project.build.sourceEncoding}</encoding>
+  <executable>${maven.compiler.executable}</executable>
+  <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
+  <fork default-value="false"/>
+  <generatedSourcesDirectory default-value="${project.build.directory}/generated-sources/annotations"/>
+  <logDirectory default-value="${project.build.directory}/compile-logs"/>
+  <mavenCompilerEncoding>${maven.compiler.encoding}</mavenCompilerEncoding>
+  <maxmem>${maven.compiler.maxmem}</maxmem>
+  <meminitial>${maven.compiler.meminitial}</meminitial>
+  <optimize default-value="false">${maven.compiler.optimize}</optimize>
+  <outputFileName>${project.build.finalName}</outputFileName>
+  <project>${project}</project>
+  <release>${maven.compiler.release}</release>
+  <requireJREPackageImports default-value="false"/>
+  <session>${session}</session>
+  <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
+  <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
+  <source>${maven.compiler.source}</source>
+  <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
+  <strictCompilerTarget default-value="false"/>
+  <target>${maven.compiler.target}</target>
+  <useJDK default-value="SYSTEM"/>
+  <useProjectSettings default-value="true"/>
+  <verbose default-value="false">${maven.compiler.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources (default-testResources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources>${project.testResources}</resources>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform (default-target-platform)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <finalName>${project.build.finalName}</finalName>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <strictBinIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attachP2Metadata default-value="true"/>
+  <baselineMode default-value="warn">${tycho.baseline}</baselineMode>
+  <baselineReplace default-value="all">none</baselineReplace>
+  <baselineRepositories>
+    <repository>
+      <url>https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/</url>
+    </repository>
+  </baselineRepositories>
+  <defaultP2Metadata default-value="true"/>
+  <execution>${mojoExecution}</execution>
+  <generateDownloadStatsProperty default-value="false">${tycho.generateDownloadStatsProperty}</generateDownloadStatsProperty>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test (default-test)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <argLine>${tycho.testArgLine}</argLine>
+  <debugPort>${debugPort}</debugPort>
+  <deleteOsgiDataDirectory default-value="true"/>
+  <enableAssertions default-value="false">${enableAssertions}</enableAssertions>
+  <excludedGroups>${excludedGroups}</excludedGroups>
+  <failIfNoTests default-value="true">${failIfNoTests}</failIfNoTests>
+  <forkedProcessTimeoutInSeconds>${surefire.timeout}</forkedProcessTimeoutInSeconds>
+  <groups>${groups}</groups>
+  <includes>
+    <forkMode>never</forkMode>
+    <include>**/*Test.java</include>
+    <include>**/*Tests.java</include>
+  </includes>
+  <osgiDataDirectory default-value="${project.build.directory}/work/data/"/>
+  <parallel>${parallel}</parallel>
+  <perCoreThreadCount default-value="true">${perCoreThreadCount}</perCoreThreadCount>
+  <pluginArtifacts>${plugin.artifacts}</pluginArtifacts>
+  <profileName default-value="DefaultProfile"/>
+  <project>${project}</project>
+  <redirectTestOutputToFile default-value="false">${maven.test.redirectTestOutputToFile}</redirectTestOutputToFile>
+  <reportsDirectory default-value="${project.build.directory}/surefire-reports"/>
+  <rerunFailingTestsCount default-value="0">${surefire.rerunFailingTestsCount}</rerunFailingTestsCount>
+  <runOrder default-value="filesystem"/>
+  <session>${session}</session>
+  <showEclipseLog default-value="false">${tycho.showEclipseLog}</showEclipseLog>
+  <skip>${maven.test.skip}</skip>
+  <skipAfterFailureCount default-value="0">${surefire.skipAfterFailureCount}</skipAfterFailureCount>
+  <skipExec>${maven.test.skipExec}</skipExec>
+  <skipTests>${skipTests}</skipTests>
+  <surefireProperties default-value="${project.build.directory}/surefire.properties"/>
+  <test>${test}</test>
+  <testClass>${testClass}</testClass>
+  <testClassesDirectory>${project.build.outputDirectory}</testClassesDirectory>
+  <testFailureIgnore default-value="false">${maven.test.failure.ignore}</testFailureIgnore>
+  <testRuntime default-value="default"/>
+  <threadCount>${threadCount}</threadCount>
+  <trimStackTrace default-value="true">${trimStackTrace}</trimStackTrace>
+  <useJDK default-value="SYSTEM"/>
+  <useUIHarness default-value="false"/>
+  <useUIThread default-value="true"/>
+  <useUnlimitedThreads default-value="false">${useUnlimitedThreads}</useUnlimitedThreads>
+  <work default-value="${project.build.directory}/work"/>
+</configuration>
+[DEBUG] =======================================================================
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=27900, ConflictMarker.markTime=22200, ConflictMarker.nodeCount=58, ConflictIdSorter.graphTime=12400, ConflictIdSorter.topsortTime=15000, ConflictIdSorter.conflictIdCount=21, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=112100, ConflictResolver.conflictItemCount=57, DefaultDependencyCollector.collectTime=527700, DefaultDependencyCollector.transformTime=203001}
+[DEBUG] org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:eclipse-test-plugin:1.1.0-SNAPSHOT
+[DEBUG]    p2.eclipse-plugin:javax.annotation:jar:1.2.0.v201602091430:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi:jar:3.15.100.v20191114-1701:system
+[DEBUG]    p2.eclipse-plugin:org.apache.felix.scr:jar:2.1.14.v20190123-1619:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.services:jar:3.8.0.v20190206-2147:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.util:jar:3.5.300.v20190708-1141:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.eclipse.app4mc.util.sessionlog:jar:1.1.0.202104211257:system
+[DEBUG]    p2.eclipse-plugin:org.jdom2:jar:2.0.6.v20191125-0928:system
+[DEBUG]    p2.eclipse-plugin:org.junit:jar:junit.jar:4.12.0.v201504281640:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.jaxen:jar:1.1.6.v20191106-1554:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.common:jar:3.10.600.v20191004-1420:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.runtime:jar:3.17.0.v20191122-2104:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.contenttype:jar:3.7.500.v20190916-2125:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.preferences:jar:3.7.600.v20191017-2055:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.registry:jar:3.8.600.v20191017-2055:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.jobs:jar:3.10.600.v20191122-2104:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.app:jar:1.4.300.v20190815-1535:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.launcher:jar:1.5.600.v20191014-2022:system
+[DEBUG]    p2.eclipse-plugin:org.hamcrest.core:jar:1.3.0.v20180420-1519:system
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ org.eclipse.app4mc.amalthea.converters.072.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\test-classes
+[DEBUG] -- end configuration --
+[INFO] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work\dev.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work\configuration\org.eclipse.osgi\framework.info.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-logger-api-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-booter-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-api-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\maven-surefire-common-2.22.2.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work\configuration\org.eclipse.osgi\22\0
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work\configuration\org.eclipse.osgi\22
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work\configuration\org.eclipse.osgi\10\0\.cp\junit.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work\configuration\org.eclipse.osgi\10\0\.cp
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work\configuration\org.eclipse.osgi\10\0
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work\configuration\org.eclipse.osgi\10
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTableLock
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTable.2
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTable.1
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work\configuration\org.eclipse.osgi\.manager
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work\configuration\org.eclipse.osgi
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work\configuration\org.eclipse.equinox.app\.manager\.fileTableLock
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work\configuration\org.eclipse.equinox.app\.manager
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work\configuration\org.eclipse.equinox.app
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work\configuration\org.eclipse.core.runtime\.table.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work\configuration\org.eclipse.core.runtime\.orphans.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work\configuration\org.eclipse.core.runtime\.namespaces.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTableLock
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTable.8
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTable.7
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work\configuration\org.eclipse.core.runtime\.manager
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work\configuration\org.eclipse.core.runtime\.mainData.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work\configuration\org.eclipse.core.runtime\.extraData.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work\configuration\org.eclipse.core.runtime\.contributors.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work\configuration\org.eclipse.core.runtime\.contributions.1
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work\configuration\org.eclipse.core.runtime
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work\configuration\config.ini
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work\configuration
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\surefire.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters072.tests.SwConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters072.tests.StimuliConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters072.tests.PropertyConstraintsConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters072.tests.OSConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters072.tests.NamespaceConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters072.tests.ConstraintsConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters072.tests.ConfigConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters072.tests.CommonElementsConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters072.tests.SwConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters072.tests.StimuliConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters072.tests.PropertyConstraintsConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters072.tests.OSConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters072.tests.NamespaceConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters072.tests.ConstraintsConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters072.tests.ConfigConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters072.tests.CommonElementsConverterTest.txt
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\surefire-reports
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\sourcebundle-l10n-gen\OSGI-INF\l10n\bundle-src.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\sourcebundle-l10n-gen\OSGI-INF\l10n
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\sourcebundle-l10n-gen\OSGI-INF
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\sourcebundle-l10n-gen
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\p2content.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\p2artifacts.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\org.eclipse.app4mc.amalthea.converters.072.tests-1.1.0-SNAPSHOT.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\org.eclipse.app4mc.amalthea.converters.072.tests-1.1.0-SNAPSHOT-sources.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\maven-archiver\pom.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\maven-archiver
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\MANIFEST.MF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\local-artifacts.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\generated-sources\annotations
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\generated-sources
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\classes\org\eclipse\app4mc\amalthea\converters072\tests\SwConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\classes\org\eclipse\app4mc\amalthea\converters072\tests\StimuliConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\classes\org\eclipse\app4mc\amalthea\converters072\tests\PropertyConstraintsConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\classes\org\eclipse\app4mc\amalthea\converters072\tests\OSConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\classes\org\eclipse\app4mc\amalthea\converters072\tests\NamespaceConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\classes\org\eclipse\app4mc\amalthea\converters072\tests\ConstraintsConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\classes\org\eclipse\app4mc\amalthea\converters072\tests\ConfigConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\classes\org\eclipse\app4mc\amalthea\converters072\tests\CommonElementsConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\classes\org\eclipse\app4mc\amalthea\converters072\tests\Abstract072ConverterTest.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\classes\org\eclipse\app4mc\amalthea\converters072\tests
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\classes\org\eclipse\app4mc\amalthea\converters072
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\classes\org\eclipse\app4mc\amalthea
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\classes\org\eclipse\app4mc
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\classes\org\eclipse
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\classes\org
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\classes
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\site
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier) @ org.eclipse.app4mc.amalthea.converters.072.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier' with basic configurator -->
+[DEBUG]   (f) baseDir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier {execution: default-build-qualifier}
+[DEBUG]   (s) format = yyyyMMddHHmm
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] The project's OSGi version is 1.1.0.202104220626
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-id (default-validate-id) @ org.eclipse.app4mc.amalthea.converters.072.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-version (default-validate-version) @ org.eclipse.app4mc.amalthea.converters.072.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF
+[DEBUG]   (f) strictVersions = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ org.eclipse.app4mc.amalthea.converters.072.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.072.tests.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\src\main\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\src\main\resources
+[INFO] 
+[INFO] --- tycho-compiler-plugin:2.3.0:compile (default-compile) @ org.eclipse.app4mc.amalthea.converters.072.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-compiler-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile' with basic configurator -->
+[DEBUG]   (f) basedir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target
+[DEBUG]   (f) compilerId = jdt
+[DEBUG]   (f) copyResources = true
+[DEBUG]   (f) debug = true
+[DEBUG]   (f) deriveReleaseCompilerArgumentFromTargetLevel = true
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) failOnWarning = false
+[DEBUG]   (f) fork = false
+[DEBUG]   (f) generatedSourcesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\generated-sources\annotations
+[DEBUG]   (f) logDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\compile-logs
+[DEBUG]   (f) optimize = false
+[DEBUG]   (f) outputFileName = org.eclipse.app4mc.amalthea.converters.072.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF
+[DEBUG]   (f) requireJREPackageImports = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showDeprecation = false
+[DEBUG]   (f) showWarnings = false
+[DEBUG]   (f) staleMillis = 0
+[DEBUG]   (f) strictCompilerTarget = false
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useProjectSettings = true
+[DEBUG]   (f) verbose = false
+[DEBUG] -- end configuration --
+[DEBUG] Manifest BREEs: [OSGi profile 'JavaSE-1.8' { source level: 1.8, target level: 1.8}]
+[DEBUG] Target Platform EE: OSGi profile 'JavaSE-11' { source level: 11, target level: 11}
+[DEBUG] Effective source/target: 1.8/1.8
+[DEBUG] Using compiler 'jdt'.
+[DEBUG] Source directories: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\src]
+[DEBUG] Classpath: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\classes
+ C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\classes]
+[DEBUG] Output directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\classes
+[DEBUG] Classpath:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\classes
+[DEBUG]  C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\classes
+[DEBUG] Source roots:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\src
+[INFO] Compiling 9 source files to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\classes
+[DEBUG] JDT compiler args: [-properties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.settings\org.eclipse.jdt.core.prefs, -s, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\generated-sources\annotations, -d, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\classes, -classpath, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\target\classes;C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\classes, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\src\org\eclipse\app4mc\amalthea\converters072\tests\NamespaceConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\src\org\eclipse\app4mc\amalthea\converters072\tests\CommonElementsConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\src\org\eclipse\app4mc\amalthea\converters072\tests\Abstract072ConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\src\org\eclipse\app4mc\amalthea\converters072\tests\SwConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\src\org\eclipse\app4mc\amalthea\converters072\tests\ConfigConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\src\org\eclipse\app4mc\amalthea\converters072\tests\ConstraintsConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\src\org\eclipse\app4mc\amalthea\converters072\tests\OSConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\src\org\eclipse\app4mc\amalthea\converters072\tests\StimuliConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\src\org\eclipse\app4mc\amalthea\converters072\tests\PropertyConstraintsConverterTest.java, -g, -nowarn, -target, 1.8, -source, 1.8, --release, 8, -encoding, UTF-8]
+[DEBUG] Original compiler output: 
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ org.eclipse.app4mc.amalthea.converters.072.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\test-classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\src\test\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.072.tests.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\src\test\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\src\test\resources
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ org.eclipse.app4mc.amalthea.converters.072.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.072.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\org.eclipse.app4mc.amalthea.converters.072.tests-1.1.0-SNAPSHOT-sources.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters072/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters072/tests/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters072/tests/Abstract072ConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters072/tests/CommonElementsConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters072/tests/ConfigConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters072/tests/ConstraintsConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters072/tests/NamespaceConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters072/tests/OSConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters072/tests/PropertyConstraintsConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters072/tests/StimuliConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters072/tests/SwConverterTest.java
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding directory OSGI-INF/l10n/
+[DEBUG] adding entry OSGI-INF/l10n/bundle-src.properties
+[INFO] 
+[INFO] --- target-platform-configuration:2.3.0:target-platform (default-target-platform) @ org.eclipse.app4mc.amalthea.converters.072.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform from plugin realm ClassRealm[plugin>org.eclipse.tycho:target-platform-configuration:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin) @ org.eclipse.app4mc.amalthea.converters.072.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin' with basic configurator -->
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.072.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) strictBinIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\org.eclipse.app4mc.amalthea.converters.072.tests-1.1.0-SNAPSHOT.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters072/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters072/tests/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters072/tests/Abstract072ConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters072/tests/CommonElementsConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters072/tests/ConfigConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters072/tests/ConstraintsConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters072/tests/NamespaceConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters072/tests/OSConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters072/tests/PropertyConstraintsConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters072/tests/StimuliConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters072/tests/SwConverterTest.class
+[DEBUG] adding directory META-INF/maven/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.072.tests/
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.072.tests/pom.xml
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.072.tests/pom.properties
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default) @ org.eclipse.app4mc.amalthea.converters.072.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default' with basic configurator -->
+[DEBUG]   (f) attachP2Metadata = true
+[DEBUG]   (f) baselineMode = warn
+[DEBUG]   (f) baselineReplace = none
+[DEBUG]   (f) url = https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/
+[DEBUG]   (f) baselineRepositories = [org.eclipse.tycho.plugins.p2.Repository@7fb8dff1]
+[DEBUG]   (f) defaultP2Metadata = true
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default {execution: default-p2-metadata-default}
+[DEBUG]   (f) generateDownloadStatsProperty = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] No baseline version MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-surefire-plugin:2.3.0:test (default-test) @ org.eclipse.app4mc.amalthea.converters.072.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-surefire-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test' with basic configurator -->
+[DEBUG]   (f) deleteOsgiDataDirectory = true
+[DEBUG]   (f) enableAssertions = false
+[DEBUG]   (f) failIfNoTests = true
+[DEBUG]   (f) includes = [never, **/*Test.java, **/*Tests.java]
+[DEBUG]   (f) osgiDataDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work\data
+[DEBUG]   (f) perCoreThreadCount = true
+[DEBUG]   (f) pluginArtifacts = [org.eclipse.tycho:tycho-surefire-plugin:maven-plugin:2.3.0:, org.apache.maven:maven-plugin-api:jar:3.6.3:compile, org.apache.maven:maven-model:jar:3.6.3:compile, org.apache.maven:maven-artifact:jar:3.6.3:compile, org.apache.commons:commons-lang3:jar:3.8.1:compile, org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4:compile, org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile, org.codehaus.plexus:plexus-utils:jar:3.3.0:compile, org.apache.maven:maven-core:jar:3.6.3:compile, org.apache.maven:maven-settings:jar:3.6.3:compile, org.apache.maven:maven-settings-builder:jar:3.6.3:compile, org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile, org.sonatype.plexus:plexus-cipher:jar:1.7:compile, org.apache.maven:maven-builder-support:jar:3.6.3:compile, org.apache.maven:maven-repository-metadata:jar:3.6.3:compile, org.apache.maven:maven-model-builder:jar:3.6.3:compile, org.apache.maven:maven-resolver-provider:jar:3.6.3:compile, org.slf4j:slf4j-api:jar:1.7.29:compile, org.apache.maven.resolver:maven-resolver-impl:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-api:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-spi:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-util:jar:1.4.1:compile, org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile, commons-io:commons-io:jar:2.5:compile, com.google.inject:guice:jar:no_aop:4.2.1:compile, aopalliance:aopalliance:jar:1.0:compile, com.google.guava:guava:jar:25.1-android:compile, com.google.code.findbugs:jsr305:jar:3.0.2:compile, org.checkerframework:checker-compat-qual:jar:2.0.0:compile, com.google.errorprone:error_prone_annotations:jar:2.1.3:compile, com.google.j2objc:j2objc-annotations:jar:1.1:compile, org.codehaus.mojo:animal-sniffer-annotations:jar:1.14:compile, javax.inject:javax.inject:jar:1:compile, org.codehaus.plexus:plexus-archiver:jar:4.2.2:compile, org.codehaus.plexus:plexus-io:jar:3.2.0:compile, org.apache.commons:commons-compress:jar:1.20:compile, org.iq80.snappy:snappy:jar:0.4:compile, org.tukaani:xz:jar:1.8:runtime, org.eclipse.platform:org.eclipse.osgi:jar:3.16.200:compile, org.apache.maven:maven-compat:jar:3.6.3:compile, org.codehaus.plexus:plexus-interpolation:jar:1.25:compile, org.apache.maven.wagon:wagon-provider-api:jar:3.3.4:compile, org.eclipse.tycho:sisu-equinox-launching:jar:2.3.0:compile, org.apache.commons:commons-exec:jar:1.3:compile, org.eclipse.tycho:org.eclipse.tycho.surefire.osgibooter:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit4:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit47:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit5:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit54:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit55:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit56:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit57:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.testng:jar:2.3.0:runtime, org.apache.maven.surefire:surefire-api:jar:2.22.2:compile, org.apache.maven.surefire:surefire-logger-api:jar:2.22.2:compile, org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile, org.apache.maven.surefire:maven-surefire-common:jar:2.22.2:compile, org.apache.maven.surefire:surefire-booter:jar:2.22.2:compile, org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile, org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile, classworlds:classworlds:jar:1.1-alpha-2:compile, org.apache.maven:maven-project:jar:2.2.1:compile, org.apache.maven:maven-profile:jar:2.2.1:compile, org.apache.maven:maven-artifact-manager:jar:2.2.1:compile, backport-util-concurrent:backport-util-concurrent:jar:3.1:compile, org.apache.maven:maven-plugin-registry:jar:2.2.1:compile, org.apache.maven:maven-toolchain:jar:2.2.1:compile, org.codehaus.plexus:plexus-java:jar:0.9.10:compile, org.ow2.asm:asm:jar:6.2:compile, com.thoughtworks.qdox:qdox:jar:2.0-M8:compile]
+[DEBUG]   (f) profileName = DefaultProfile
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF
+[DEBUG]   (f) redirectTestOutputToFile = false
+[DEBUG]   (f) reportsDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\surefire-reports
+[DEBUG]   (f) rerunFailingTestsCount = 0
+[DEBUG]   (f) runOrder = filesystem
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showEclipseLog = false
+[DEBUG]   (f) skipAfterFailureCount = 0
+[DEBUG]   (f) surefireProperties = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\surefire.properties
+[DEBUG]   (f) testClassesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\classes
+[DEBUG]   (f) testFailureIgnore = false
+[DEBUG]   (f) testRuntime = default
+[DEBUG]   (f) trimStackTrace = true
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useUIHarness = false
+[DEBUG]   (f) useUIThread = true
+[DEBUG]   (f) useUnlimitedThreads = false
+[DEBUG]   (f) work = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work
+[DEBUG] -- end configuration --
+[DEBUG] Using test framework provider org.eclipse.tycho.surefire.provider.impl.JUnit4Provider
+[DEBUG] Installation OSGI bundles:
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/javax.annotation/1.2.0.v201602091430/javax.annotation-1.2.0.v201602091430.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.apache.felix.scr/2.1.14.v20190123-1619/org.apache.felix.scr-2.1.14.v20190123-1619.jar@1:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi.services/3.8.0.v20190206-2147/org.eclipse.osgi.services-3.8.0.v20190206-2147.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi.util/3.5.300.v20190708-1141/org.eclipse.osgi.util-3.5.300.v20190708-1141.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.072/target/org.eclipse.app4mc.amalthea.converters.072-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.common/target/org.eclipse.app4mc.amalthea.converters.common-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.app4mc.util.sessionlog/1.1.0.202104211257/org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.jdom2/2.0.6.v20191125-0928/org.jdom2-2.0.6.v20191125-0928.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.072.tests
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.junit/4.12.0.v201504281640/org.junit-4.12.0.v201504281640.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.common.tests/target/org.eclipse.app4mc.amalthea.converters.common.tests-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.jaxen/1.1.6.v20191106-1554/org.jaxen-1.1.6.v20191106-1554.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.common/3.10.600.v20191004-1420/org.eclipse.equinox.common-3.10.600.v20191004-1420.jar@2:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.runtime/3.17.0.v20191122-2104/org.eclipse.core.runtime-3.17.0.v20191122-2104.jar@4:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.contenttype/3.7.500.v20190916-2125/org.eclipse.core.contenttype-3.7.500.v20190916-2125.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.preferences/3.7.600.v20191017-2055/org.eclipse.equinox.preferences-3.7.600.v20191017-2055.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.registry/3.8.600.v20191017-2055/org.eclipse.equinox.registry-3.8.600.v20191017-2055.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.jobs/3.10.600.v20191122-2104/org.eclipse.core.jobs-3.10.600.v20191122-2104.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.app/1.4.300.v20190815-1535/org.eclipse.equinox.app-1.4.300.v20190815-1535.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.launcher/1.5.600.v20191014-2022/org.eclipse.equinox.launcher-1.5.600.v20191014-2022.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.hamcrest.core/1.3.0.v20180420-1519/org.hamcrest.core-1.3.0.v20180420-1519.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.072.tests
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/org/eclipse/tycho/org.eclipse.tycho.surefire.osgibooter/2.3.0/org.eclipse.tycho.surefire.osgibooter-2.3.0.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/org/eclipse/tycho/org.eclipse.tycho.surefire.junit4/2.3.0/org.eclipse.tycho.surefire.junit4-2.3.0.jar
+[INFO] Executing Test Runtime with timeout 0, logs (if any) will be placed at: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work\data\.metadata\.log
+[INFO] Command line:
+	[C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, -Dosgi.noShutdown=false, -Dosgi.os=win32, -Dosgi.ws=win32, -Dosgi.arch=x86_64, -Dosgi.clean=true, -jar, C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.launcher\1.5.600.v20191014-2022\org.eclipse.equinox.launcher-1.5.600.v20191014-2022.jar, -debug, -consolelog, -data, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work\data, -install, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work, -configuration, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\work\configuration, -application, org.eclipse.tycho.surefire.osgibooter.headlesstest, -testproperties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\target\surefire.properties]
+Configuration location:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.072.tests/target/work/configuration/
+Configuration file:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.072.tests/target/work/configuration/config.ini loaded
+Install location:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.072.tests/target/work/
+Framework located:
+    file:/C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi/3.15.100.v20191114-1701/org.eclipse.osgi-3.15.100.v20191114-1701.jar
+Framework classpath:
+    file:/C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi/3.15.100.v20191114-1701/org.eclipse.osgi-3.15.100.v20191114-1701.jar
+Debug options:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.072.tests/.options not found
+Time to load bundles: 146
+Starting application: 1381
+Running org.eclipse.app4mc.amalthea.converters072.tests.CommonElementsConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.339 s - in org.eclipse.app4mc.amalthea.converters072.tests.CommonElementsConverterTest
+testConversion[0: Test file: /common-elements/common-elements.amxmi](org.eclipse.app4mc.amalthea.converters072.tests.CommonElementsConverterTest)  Time elapsed: 0.229 s
+verification[0: Test file: /common-elements/common-elements.amxmi](org.eclipse.app4mc.amalthea.converters072.tests.CommonElementsConverterTest)  Time elapsed: 0.03 s
+Running org.eclipse.app4mc.amalthea.converters072.tests.ConfigConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.022 s - in org.eclipse.app4mc.amalthea.converters072.tests.ConfigConverterTest
+testConversion[0: Test file: /config/config.amxmi](org.eclipse.app4mc.amalthea.converters072.tests.ConfigConverterTest)  Time elapsed: 0.014 s
+verification[0: Test file: /config/config.amxmi](org.eclipse.app4mc.amalthea.converters072.tests.ConfigConverterTest)  Time elapsed: 0.005 s
+Running org.eclipse.app4mc.amalthea.converters072.tests.ConstraintsConverterTest
+Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.03 s - in org.eclipse.app4mc.amalthea.converters072.tests.ConstraintsConverterTest
+testConversion[0: Test file: /constraints/constraints.amxmi](org.eclipse.app4mc.amalthea.converters072.tests.ConstraintsConverterTest)  Time elapsed: 0.008 s
+verification[0: Test file: /constraints/constraints.amxmi](org.eclipse.app4mc.amalthea.converters072.tests.ConstraintsConverterTest)  Time elapsed: 0.005 s
+testConversion[1: Test file: /constraints/targetProcess_callsequence/constraints.amxmi](org.eclipse.app4mc.amalthea.converters072.tests.ConstraintsConverterTest)  Time elapsed: 0.01 s
+verification[1: Test file: /constraints/targetProcess_callsequence/constraints.amxmi](org.eclipse.app4mc.amalthea.converters072.tests.ConstraintsConverterTest)  Time elapsed: 0.005 s
+Running org.eclipse.app4mc.amalthea.converters072.tests.NamespaceConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.065 s - in org.eclipse.app4mc.amalthea.converters072.tests.NamespaceConverterTest
+testConversion[0: Test file: /namespace/AMALTHEA_Democar.amxmi](org.eclipse.app4mc.amalthea.converters072.tests.NamespaceConverterTest)  Time elapsed: 0.046 s
+verification[0: Test file: /namespace/AMALTHEA_Democar.amxmi](org.eclipse.app4mc.amalthea.converters072.tests.NamespaceConverterTest)  Time elapsed: 0.017 s
+Running org.eclipse.app4mc.amalthea.converters072.tests.OSConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.024 s - in org.eclipse.app4mc.amalthea.converters072.tests.OSConverterTest
+testConversion[0: Test file: /osmodel/osmodel.amxmi](org.eclipse.app4mc.amalthea.converters072.tests.OSConverterTest)  Time elapsed: 0.015 s
+verification[0: Test file: /osmodel/osmodel.amxmi](org.eclipse.app4mc.amalthea.converters072.tests.OSConverterTest)  Time elapsed: 0.005 s
+Running org.eclipse.app4mc.amalthea.converters072.tests.PropertyConstraintsConverterTest
+Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.134 s - in org.eclipse.app4mc.amalthea.converters072.tests.PropertyConstraintsConverterTest
+testConversion[0: Test file: /property-constraints/case1/AMALTHEA_Democar_MappingExample.amxmi](org.eclipse.app4mc.amalthea.converters072.tests.PropertyConstraintsConverterTest)  Time elapsed: 0.05 s
+verification[0: Test file: /property-constraints/case1/AMALTHEA_Democar_MappingExample.amxmi](org.eclipse.app4mc.amalthea.converters072.tests.PropertyConstraintsConverterTest)  Time elapsed: 0.017 s
+testConversion[1: Test file: /property-constraints/case2/AMALTHEA_Democar_MappingExample-without-hwmodel.amxmi](org.eclipse.app4mc.amalthea.converters072.tests.PropertyConstraintsConverterTest)  Time elapsed: 0.044 s
+verification[1: Test file: /property-constraints/case2/AMALTHEA_Democar_MappingExample-without-hwmodel.amxmi](org.eclipse.app4mc.amalthea.converters072.tests.PropertyConstraintsConverterTest)  Time elapsed: 0.019 s
+Running org.eclipse.app4mc.amalthea.converters072.tests.StimuliConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.053 s - in org.eclipse.app4mc.amalthea.converters072.tests.StimuliConverterTest
+testConversion[0: Test file: /stimuli/stimuli.amxmi](org.eclipse.app4mc.amalthea.converters072.tests.StimuliConverterTest)  Time elapsed: 0.036 s
+verification[0: Test file: /stimuli/stimuli.amxmi](org.eclipse.app4mc.amalthea.converters072.tests.StimuliConverterTest)  Time elapsed: 0.016 s
+Running org.eclipse.app4mc.amalthea.converters072.tests.SwConverterTest
+Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.077 s - in org.eclipse.app4mc.amalthea.converters072.tests.SwConverterTest
+testConversion[0: Test file: /sw/sw.amxmi](org.eclipse.app4mc.amalthea.converters072.tests.SwConverterTest)  Time elapsed: 0.017 s
+verification[0: Test file: /sw/sw.amxmi](org.eclipse.app4mc.amalthea.converters072.tests.SwConverterTest)  Time elapsed: 0.005 s
+testConversion[1: Test file: /sw/preemption/sw.amxmi](org.eclipse.app4mc.amalthea.converters072.tests.SwConverterTest)  Time elapsed: 0.012 s
+verification[1: Test file: /sw/preemption/sw.amxmi](org.eclipse.app4mc.amalthea.converters072.tests.SwConverterTest)  Time elapsed: 0.004 s
+testConversion[2: Test file: /sw/instructions/instructions.amxmi](org.eclipse.app4mc.amalthea.converters072.tests.SwConverterTest)  Time elapsed: 0.012 s
+verification[2: Test file: /sw/instructions/instructions.amxmi](org.eclipse.app4mc.amalthea.converters072.tests.SwConverterTest)  Time elapsed: 0.004 s
+testConversion[3: Test file: /sw/samplingtype/sw.amxmi](org.eclipse.app4mc.amalthea.converters072.tests.SwConverterTest)  Time elapsed: 0.013 s
+verification[3: Test file: /sw/samplingtype/sw.amxmi](org.eclipse.app4mc.amalthea.converters072.tests.SwConverterTest)  Time elapsed: 0.005 s
+
+Results:
+
+Tests run: 26, Failures: 0, Errors: 0, Skipped: 0
+
+[INFO] All tests passed!
+[INFO] 
+[INFO] --< org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests >--
+[INFO] Building [test-bundle] APP4MC Amalthea Converters to 0.8.0 - Tests 1.1.0-SNAPSHOT [26/47]
+[INFO] ------------------------[ eclipse-test-plugin ]-------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): [compile, runtime]
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <baseDir>${project.basedir}</baseDir>
+  <execution>${mojoExecution}</execution>
+  <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
+  <format default-value="yyyyMMddHHmm"/>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id (default-validate-id)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version (default-validate-version)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <strictVersions default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources (default-resources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources default-value="${project.resources}"/>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile (default-compile)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <basedir>${basedir}</basedir>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <compilerId default-value="jdt">${maven.compiler.compilerId}</compilerId>
+  <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
+  <copyResources default-value="true"/>
+  <debug default-value="true">${maven.compiler.debug}</debug>
+  <deriveReleaseCompilerArgumentFromTargetLevel default-value="true"/>
+  <encoding>${project.build.sourceEncoding}</encoding>
+  <executable>${maven.compiler.executable}</executable>
+  <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
+  <fork default-value="false"/>
+  <generatedSourcesDirectory default-value="${project.build.directory}/generated-sources/annotations"/>
+  <logDirectory default-value="${project.build.directory}/compile-logs"/>
+  <mavenCompilerEncoding>${maven.compiler.encoding}</mavenCompilerEncoding>
+  <maxmem>${maven.compiler.maxmem}</maxmem>
+  <meminitial>${maven.compiler.meminitial}</meminitial>
+  <optimize default-value="false">${maven.compiler.optimize}</optimize>
+  <outputFileName>${project.build.finalName}</outputFileName>
+  <project>${project}</project>
+  <release>${maven.compiler.release}</release>
+  <requireJREPackageImports default-value="false"/>
+  <session>${session}</session>
+  <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
+  <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
+  <source>${maven.compiler.source}</source>
+  <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
+  <strictCompilerTarget default-value="false"/>
+  <target>${maven.compiler.target}</target>
+  <useJDK default-value="SYSTEM"/>
+  <useProjectSettings default-value="true"/>
+  <verbose default-value="false">${maven.compiler.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources (default-testResources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources>${project.testResources}</resources>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform (default-target-platform)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <finalName>${project.build.finalName}</finalName>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <strictBinIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attachP2Metadata default-value="true"/>
+  <baselineMode default-value="warn">${tycho.baseline}</baselineMode>
+  <baselineReplace default-value="all">none</baselineReplace>
+  <baselineRepositories>
+    <repository>
+      <url>https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/</url>
+    </repository>
+  </baselineRepositories>
+  <defaultP2Metadata default-value="true"/>
+  <execution>${mojoExecution}</execution>
+  <generateDownloadStatsProperty default-value="false">${tycho.generateDownloadStatsProperty}</generateDownloadStatsProperty>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test (default-test)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <argLine>${tycho.testArgLine}</argLine>
+  <debugPort>${debugPort}</debugPort>
+  <deleteOsgiDataDirectory default-value="true"/>
+  <enableAssertions default-value="false">${enableAssertions}</enableAssertions>
+  <excludedGroups>${excludedGroups}</excludedGroups>
+  <failIfNoTests default-value="true">${failIfNoTests}</failIfNoTests>
+  <forkedProcessTimeoutInSeconds>${surefire.timeout}</forkedProcessTimeoutInSeconds>
+  <groups>${groups}</groups>
+  <includes>
+    <forkMode>never</forkMode>
+    <include>**/*Test.java</include>
+    <include>**/*Tests.java</include>
+  </includes>
+  <osgiDataDirectory default-value="${project.build.directory}/work/data/"/>
+  <parallel>${parallel}</parallel>
+  <perCoreThreadCount default-value="true">${perCoreThreadCount}</perCoreThreadCount>
+  <pluginArtifacts>${plugin.artifacts}</pluginArtifacts>
+  <profileName default-value="DefaultProfile"/>
+  <project>${project}</project>
+  <redirectTestOutputToFile default-value="false">${maven.test.redirectTestOutputToFile}</redirectTestOutputToFile>
+  <reportsDirectory default-value="${project.build.directory}/surefire-reports"/>
+  <rerunFailingTestsCount default-value="0">${surefire.rerunFailingTestsCount}</rerunFailingTestsCount>
+  <runOrder default-value="filesystem"/>
+  <session>${session}</session>
+  <showEclipseLog default-value="false">${tycho.showEclipseLog}</showEclipseLog>
+  <skip>${maven.test.skip}</skip>
+  <skipAfterFailureCount default-value="0">${surefire.skipAfterFailureCount}</skipAfterFailureCount>
+  <skipExec>${maven.test.skipExec}</skipExec>
+  <skipTests>${skipTests}</skipTests>
+  <surefireProperties default-value="${project.build.directory}/surefire.properties"/>
+  <test>${test}</test>
+  <testClass>${testClass}</testClass>
+  <testClassesDirectory>${project.build.outputDirectory}</testClassesDirectory>
+  <testFailureIgnore default-value="false">${maven.test.failure.ignore}</testFailureIgnore>
+  <testRuntime default-value="default"/>
+  <threadCount>${threadCount}</threadCount>
+  <trimStackTrace default-value="true">${trimStackTrace}</trimStackTrace>
+  <useJDK default-value="SYSTEM"/>
+  <useUIHarness default-value="false"/>
+  <useUIThread default-value="true"/>
+  <useUnlimitedThreads default-value="false">${useUnlimitedThreads}</useUnlimitedThreads>
+  <work default-value="${project.build.directory}/work"/>
+</configuration>
+[DEBUG] =======================================================================
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=63100, ConflictMarker.markTime=52599, ConflictMarker.nodeCount=58, ConflictIdSorter.graphTime=27700, ConflictIdSorter.topsortTime=36399, ConflictIdSorter.conflictIdCount=21, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=128200, ConflictResolver.conflictItemCount=57, DefaultDependencyCollector.collectTime=695501, DefaultDependencyCollector.transformTime=332800}
+[DEBUG] org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:eclipse-test-plugin:1.1.0-SNAPSHOT
+[DEBUG]    p2.eclipse-plugin:javax.annotation:jar:1.2.0.v201602091430:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi:jar:3.15.100.v20191114-1701:system
+[DEBUG]    p2.eclipse-plugin:org.apache.felix.scr:jar:2.1.14.v20190123-1619:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.services:jar:3.8.0.v20190206-2147:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.util:jar:3.5.300.v20190708-1141:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.eclipse.app4mc.util.sessionlog:jar:1.1.0.202104211257:system
+[DEBUG]    p2.eclipse-plugin:org.jdom2:jar:2.0.6.v20191125-0928:system
+[DEBUG]    p2.eclipse-plugin:org.junit:jar:junit.jar:4.12.0.v201504281640:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.jaxen:jar:1.1.6.v20191106-1554:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.common:jar:3.10.600.v20191004-1420:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.runtime:jar:3.17.0.v20191122-2104:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.contenttype:jar:3.7.500.v20190916-2125:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.preferences:jar:3.7.600.v20191017-2055:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.registry:jar:3.8.600.v20191017-2055:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.jobs:jar:3.10.600.v20191122-2104:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.app:jar:1.4.300.v20190815-1535:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.launcher:jar:1.5.600.v20191014-2022:system
+[DEBUG]    p2.eclipse-plugin:org.hamcrest.core:jar:1.3.0.v20180420-1519:system
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ org.eclipse.app4mc.amalthea.converters.080.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\test-classes
+[DEBUG] -- end configuration --
+[INFO] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work\dev.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work\configuration\org.eclipse.osgi\framework.info.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-logger-api-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-booter-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-api-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\maven-surefire-common-2.22.2.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work\configuration\org.eclipse.osgi\22\0
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work\configuration\org.eclipse.osgi\22
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work\configuration\org.eclipse.osgi\10\0\.cp\junit.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work\configuration\org.eclipse.osgi\10\0\.cp
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work\configuration\org.eclipse.osgi\10\0
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work\configuration\org.eclipse.osgi\10
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTableLock
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTable.2
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTable.1
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work\configuration\org.eclipse.osgi\.manager
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work\configuration\org.eclipse.osgi
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work\configuration\org.eclipse.equinox.app\.manager\.fileTableLock
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work\configuration\org.eclipse.equinox.app\.manager
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work\configuration\org.eclipse.equinox.app
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work\configuration\org.eclipse.core.runtime\.table.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work\configuration\org.eclipse.core.runtime\.orphans.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work\configuration\org.eclipse.core.runtime\.namespaces.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTableLock
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTable.8
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTable.7
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work\configuration\org.eclipse.core.runtime\.manager
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work\configuration\org.eclipse.core.runtime\.mainData.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work\configuration\org.eclipse.core.runtime\.extraData.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work\configuration\org.eclipse.core.runtime\.contributors.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work\configuration\org.eclipse.core.runtime\.contributions.1
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work\configuration\org.eclipse.core.runtime
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work\configuration\config.ini
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work\configuration
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\surefire.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters080.tests.SwConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters080.tests.SignedTimeConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters080.tests.RootElementConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters080.tests.PropertyConstraintsConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters080.tests.ProbabilitySwitchConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters080.tests.OSConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters080.tests.NamespaceConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters080.tests.MappingConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters080.tests.DataSizeConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters080.tests.SwConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters080.tests.SignedTimeConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters080.tests.RootElementConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters080.tests.PropertyConstraintsConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters080.tests.ProbabilitySwitchConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters080.tests.OSConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters080.tests.NamespaceConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters080.tests.MappingConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters080.tests.DataSizeConverterTest.txt
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\surefire-reports
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\sourcebundle-l10n-gen\OSGI-INF\l10n\bundle-src.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\sourcebundle-l10n-gen\OSGI-INF\l10n
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\sourcebundle-l10n-gen\OSGI-INF
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\sourcebundle-l10n-gen
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\p2content.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\p2artifacts.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\org.eclipse.app4mc.amalthea.converters.080.tests-1.1.0-SNAPSHOT.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\org.eclipse.app4mc.amalthea.converters.080.tests-1.1.0-SNAPSHOT-sources.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\maven-archiver\pom.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\maven-archiver
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\MANIFEST.MF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\local-artifacts.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\generated-sources\annotations
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\generated-sources
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\classes\org\eclipse\app4mc\amalthea\converters080\tests\SwConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\classes\org\eclipse\app4mc\amalthea\converters080\tests\SignedTimeConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\classes\org\eclipse\app4mc\amalthea\converters080\tests\RootElementConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\classes\org\eclipse\app4mc\amalthea\converters080\tests\PropertyConstraintsConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\classes\org\eclipse\app4mc\amalthea\converters080\tests\ProbabilitySwitchConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\classes\org\eclipse\app4mc\amalthea\converters080\tests\OSConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\classes\org\eclipse\app4mc\amalthea\converters080\tests\NamespaceConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\classes\org\eclipse\app4mc\amalthea\converters080\tests\MappingConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\classes\org\eclipse\app4mc\amalthea\converters080\tests\DataSizeConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\classes\org\eclipse\app4mc\amalthea\converters080\tests\Abstract080ConverterTest.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\classes\org\eclipse\app4mc\amalthea\converters080\tests
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\classes\org\eclipse\app4mc\amalthea\converters080
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\classes\org\eclipse\app4mc\amalthea
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\classes\org\eclipse\app4mc
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\classes\org\eclipse
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\classes\org
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\classes
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\site
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier) @ org.eclipse.app4mc.amalthea.converters.080.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier' with basic configurator -->
+[DEBUG]   (f) baseDir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier {execution: default-build-qualifier}
+[DEBUG]   (s) format = yyyyMMddHHmm
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] The project's OSGi version is 1.1.0.202104220626
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-id (default-validate-id) @ org.eclipse.app4mc.amalthea.converters.080.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-version (default-validate-version) @ org.eclipse.app4mc.amalthea.converters.080.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF
+[DEBUG]   (f) strictVersions = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ org.eclipse.app4mc.amalthea.converters.080.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.080.tests.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\src\main\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\src\main\resources
+[INFO] 
+[INFO] --- tycho-compiler-plugin:2.3.0:compile (default-compile) @ org.eclipse.app4mc.amalthea.converters.080.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-compiler-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile' with basic configurator -->
+[DEBUG]   (f) basedir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target
+[DEBUG]   (f) compilerId = jdt
+[DEBUG]   (f) copyResources = true
+[DEBUG]   (f) debug = true
+[DEBUG]   (f) deriveReleaseCompilerArgumentFromTargetLevel = true
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) failOnWarning = false
+[DEBUG]   (f) fork = false
+[DEBUG]   (f) generatedSourcesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\generated-sources\annotations
+[DEBUG]   (f) logDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\compile-logs
+[DEBUG]   (f) optimize = false
+[DEBUG]   (f) outputFileName = org.eclipse.app4mc.amalthea.converters.080.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF
+[DEBUG]   (f) requireJREPackageImports = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showDeprecation = false
+[DEBUG]   (f) showWarnings = false
+[DEBUG]   (f) staleMillis = 0
+[DEBUG]   (f) strictCompilerTarget = false
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useProjectSettings = true
+[DEBUG]   (f) verbose = false
+[DEBUG] -- end configuration --
+[DEBUG] Manifest BREEs: [OSGi profile 'JavaSE-1.8' { source level: 1.8, target level: 1.8}]
+[DEBUG] Target Platform EE: OSGi profile 'JavaSE-11' { source level: 11, target level: 11}
+[DEBUG] Effective source/target: 1.8/1.8
+[DEBUG] Using compiler 'jdt'.
+[DEBUG] Source directories: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\src]
+[DEBUG] Classpath: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\classes
+ C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;+org/jdom2/output/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\classes]
+[DEBUG] Output directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\classes
+[DEBUG] Classpath:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\classes
+[DEBUG]  C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;+org/jdom2/output/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\classes
+[DEBUG] Source roots:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\src
+[INFO] Compiling 10 source files to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\classes
+[DEBUG] JDT compiler args: [-properties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.settings\org.eclipse.jdt.core.prefs, -s, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\generated-sources\annotations, -d, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\classes, -classpath, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\target\classes;C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;+org/jdom2/output/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\classes, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\src\org\eclipse\app4mc\amalthea\converters080\tests\DataSizeConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\src\org\eclipse\app4mc\amalthea\converters080\tests\NamespaceConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\src\org\eclipse\app4mc\amalthea\converters080\tests\OSConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\src\org\eclipse\app4mc\amalthea\converters080\tests\ProbabilitySwitchConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\src\org\eclipse\app4mc\amalthea\converters080\tests\MappingConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\src\org\eclipse\app4mc\amalthea\converters080\tests\Abstract080ConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\src\org\eclipse\app4mc\amalthea\converters080\tests\RootElementConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\src\org\eclipse\app4mc\amalthea\converters080\tests\SignedTimeConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\src\org\eclipse\app4mc\amalthea\converters080\tests\SwConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\src\org\eclipse\app4mc\amalthea\converters080\tests\PropertyConstraintsConverterTest.java, -g, -nowarn, -target, 1.8, -source, 1.8, --release, 8, -encoding, UTF-8]
+[DEBUG] Original compiler output: 
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ org.eclipse.app4mc.amalthea.converters.080.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\test-classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\src\test\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.080.tests.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\src\test\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\src\test\resources
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ org.eclipse.app4mc.amalthea.converters.080.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.080.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\org.eclipse.app4mc.amalthea.converters.080.tests-1.1.0-SNAPSHOT-sources.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters080/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters080/tests/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters080/tests/Abstract080ConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters080/tests/DataSizeConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters080/tests/MappingConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters080/tests/NamespaceConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters080/tests/OSConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters080/tests/ProbabilitySwitchConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters080/tests/PropertyConstraintsConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters080/tests/RootElementConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters080/tests/SignedTimeConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters080/tests/SwConverterTest.java
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding directory OSGI-INF/l10n/
+[DEBUG] adding entry OSGI-INF/l10n/bundle-src.properties
+[INFO] 
+[INFO] --- target-platform-configuration:2.3.0:target-platform (default-target-platform) @ org.eclipse.app4mc.amalthea.converters.080.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform from plugin realm ClassRealm[plugin>org.eclipse.tycho:target-platform-configuration:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin) @ org.eclipse.app4mc.amalthea.converters.080.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin' with basic configurator -->
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.080.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) strictBinIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\org.eclipse.app4mc.amalthea.converters.080.tests-1.1.0-SNAPSHOT.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters080/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters080/tests/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters080/tests/Abstract080ConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters080/tests/DataSizeConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters080/tests/MappingConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters080/tests/NamespaceConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters080/tests/OSConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters080/tests/ProbabilitySwitchConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters080/tests/PropertyConstraintsConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters080/tests/RootElementConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters080/tests/SignedTimeConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters080/tests/SwConverterTest.class
+[DEBUG] adding directory META-INF/maven/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.080.tests/
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.080.tests/pom.xml
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.080.tests/pom.properties
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default) @ org.eclipse.app4mc.amalthea.converters.080.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default' with basic configurator -->
+[DEBUG]   (f) attachP2Metadata = true
+[DEBUG]   (f) baselineMode = warn
+[DEBUG]   (f) baselineReplace = none
+[DEBUG]   (f) url = https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/
+[DEBUG]   (f) baselineRepositories = [org.eclipse.tycho.plugins.p2.Repository@7edc8a5f]
+[DEBUG]   (f) defaultP2Metadata = true
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default {execution: default-p2-metadata-default}
+[DEBUG]   (f) generateDownloadStatsProperty = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] No baseline version MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-surefire-plugin:2.3.0:test (default-test) @ org.eclipse.app4mc.amalthea.converters.080.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-surefire-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test' with basic configurator -->
+[DEBUG]   (f) deleteOsgiDataDirectory = true
+[DEBUG]   (f) enableAssertions = false
+[DEBUG]   (f) failIfNoTests = true
+[DEBUG]   (f) includes = [never, **/*Test.java, **/*Tests.java]
+[DEBUG]   (f) osgiDataDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work\data
+[DEBUG]   (f) perCoreThreadCount = true
+[DEBUG]   (f) pluginArtifacts = [org.eclipse.tycho:tycho-surefire-plugin:maven-plugin:2.3.0:, org.apache.maven:maven-plugin-api:jar:3.6.3:compile, org.apache.maven:maven-model:jar:3.6.3:compile, org.apache.maven:maven-artifact:jar:3.6.3:compile, org.apache.commons:commons-lang3:jar:3.8.1:compile, org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4:compile, org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile, org.codehaus.plexus:plexus-utils:jar:3.3.0:compile, org.apache.maven:maven-core:jar:3.6.3:compile, org.apache.maven:maven-settings:jar:3.6.3:compile, org.apache.maven:maven-settings-builder:jar:3.6.3:compile, org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile, org.sonatype.plexus:plexus-cipher:jar:1.7:compile, org.apache.maven:maven-builder-support:jar:3.6.3:compile, org.apache.maven:maven-repository-metadata:jar:3.6.3:compile, org.apache.maven:maven-model-builder:jar:3.6.3:compile, org.apache.maven:maven-resolver-provider:jar:3.6.3:compile, org.slf4j:slf4j-api:jar:1.7.29:compile, org.apache.maven.resolver:maven-resolver-impl:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-api:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-spi:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-util:jar:1.4.1:compile, org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile, commons-io:commons-io:jar:2.5:compile, com.google.inject:guice:jar:no_aop:4.2.1:compile, aopalliance:aopalliance:jar:1.0:compile, com.google.guava:guava:jar:25.1-android:compile, com.google.code.findbugs:jsr305:jar:3.0.2:compile, org.checkerframework:checker-compat-qual:jar:2.0.0:compile, com.google.errorprone:error_prone_annotations:jar:2.1.3:compile, com.google.j2objc:j2objc-annotations:jar:1.1:compile, org.codehaus.mojo:animal-sniffer-annotations:jar:1.14:compile, javax.inject:javax.inject:jar:1:compile, org.codehaus.plexus:plexus-archiver:jar:4.2.2:compile, org.codehaus.plexus:plexus-io:jar:3.2.0:compile, org.apache.commons:commons-compress:jar:1.20:compile, org.iq80.snappy:snappy:jar:0.4:compile, org.tukaani:xz:jar:1.8:runtime, org.eclipse.platform:org.eclipse.osgi:jar:3.16.200:compile, org.apache.maven:maven-compat:jar:3.6.3:compile, org.codehaus.plexus:plexus-interpolation:jar:1.25:compile, org.apache.maven.wagon:wagon-provider-api:jar:3.3.4:compile, org.eclipse.tycho:sisu-equinox-launching:jar:2.3.0:compile, org.apache.commons:commons-exec:jar:1.3:compile, org.eclipse.tycho:org.eclipse.tycho.surefire.osgibooter:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit4:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit47:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit5:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit54:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit55:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit56:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit57:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.testng:jar:2.3.0:runtime, org.apache.maven.surefire:surefire-api:jar:2.22.2:compile, org.apache.maven.surefire:surefire-logger-api:jar:2.22.2:compile, org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile, org.apache.maven.surefire:maven-surefire-common:jar:2.22.2:compile, org.apache.maven.surefire:surefire-booter:jar:2.22.2:compile, org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile, org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile, classworlds:classworlds:jar:1.1-alpha-2:compile, org.apache.maven:maven-project:jar:2.2.1:compile, org.apache.maven:maven-profile:jar:2.2.1:compile, org.apache.maven:maven-artifact-manager:jar:2.2.1:compile, backport-util-concurrent:backport-util-concurrent:jar:3.1:compile, org.apache.maven:maven-plugin-registry:jar:2.2.1:compile, org.apache.maven:maven-toolchain:jar:2.2.1:compile, org.codehaus.plexus:plexus-java:jar:0.9.10:compile, org.ow2.asm:asm:jar:6.2:compile, com.thoughtworks.qdox:qdox:jar:2.0-M8:compile]
+[DEBUG]   (f) profileName = DefaultProfile
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF
+[DEBUG]   (f) redirectTestOutputToFile = false
+[DEBUG]   (f) reportsDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\surefire-reports
+[DEBUG]   (f) rerunFailingTestsCount = 0
+[DEBUG]   (f) runOrder = filesystem
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showEclipseLog = false
+[DEBUG]   (f) skipAfterFailureCount = 0
+[DEBUG]   (f) surefireProperties = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\surefire.properties
+[DEBUG]   (f) testClassesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\classes
+[DEBUG]   (f) testFailureIgnore = false
+[DEBUG]   (f) testRuntime = default
+[DEBUG]   (f) trimStackTrace = true
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useUIHarness = false
+[DEBUG]   (f) useUIThread = true
+[DEBUG]   (f) useUnlimitedThreads = false
+[DEBUG]   (f) work = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work
+[DEBUG] -- end configuration --
+[DEBUG] Using test framework provider org.eclipse.tycho.surefire.provider.impl.JUnit4Provider
+[DEBUG] Installation OSGI bundles:
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/javax.annotation/1.2.0.v201602091430/javax.annotation-1.2.0.v201602091430.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.apache.felix.scr/2.1.14.v20190123-1619/org.apache.felix.scr-2.1.14.v20190123-1619.jar@1:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi.services/3.8.0.v20190206-2147/org.eclipse.osgi.services-3.8.0.v20190206-2147.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi.util/3.5.300.v20190708-1141/org.eclipse.osgi.util-3.5.300.v20190708-1141.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.080/target/org.eclipse.app4mc.amalthea.converters.080-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.common/target/org.eclipse.app4mc.amalthea.converters.common-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.app4mc.util.sessionlog/1.1.0.202104211257/org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.jdom2/2.0.6.v20191125-0928/org.jdom2-2.0.6.v20191125-0928.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.080.tests
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.junit/4.12.0.v201504281640/org.junit-4.12.0.v201504281640.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.common.tests/target/org.eclipse.app4mc.amalthea.converters.common.tests-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.jaxen/1.1.6.v20191106-1554/org.jaxen-1.1.6.v20191106-1554.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.common/3.10.600.v20191004-1420/org.eclipse.equinox.common-3.10.600.v20191004-1420.jar@2:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.runtime/3.17.0.v20191122-2104/org.eclipse.core.runtime-3.17.0.v20191122-2104.jar@4:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.contenttype/3.7.500.v20190916-2125/org.eclipse.core.contenttype-3.7.500.v20190916-2125.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.preferences/3.7.600.v20191017-2055/org.eclipse.equinox.preferences-3.7.600.v20191017-2055.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.registry/3.8.600.v20191017-2055/org.eclipse.equinox.registry-3.8.600.v20191017-2055.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.jobs/3.10.600.v20191122-2104/org.eclipse.core.jobs-3.10.600.v20191122-2104.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.app/1.4.300.v20190815-1535/org.eclipse.equinox.app-1.4.300.v20190815-1535.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.launcher/1.5.600.v20191014-2022/org.eclipse.equinox.launcher-1.5.600.v20191014-2022.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.hamcrest.core/1.3.0.v20180420-1519/org.hamcrest.core-1.3.0.v20180420-1519.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.080.tests
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/org/eclipse/tycho/org.eclipse.tycho.surefire.osgibooter/2.3.0/org.eclipse.tycho.surefire.osgibooter-2.3.0.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/org/eclipse/tycho/org.eclipse.tycho.surefire.junit4/2.3.0/org.eclipse.tycho.surefire.junit4-2.3.0.jar
+[INFO] Executing Test Runtime with timeout 0, logs (if any) will be placed at: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work\data\.metadata\.log
+[INFO] Command line:
+	[C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, -Dosgi.noShutdown=false, -Dosgi.os=win32, -Dosgi.ws=win32, -Dosgi.arch=x86_64, -Dosgi.clean=true, -jar, C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.launcher\1.5.600.v20191014-2022\org.eclipse.equinox.launcher-1.5.600.v20191014-2022.jar, -debug, -consolelog, -data, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work\data, -install, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work, -configuration, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\work\configuration, -application, org.eclipse.tycho.surefire.osgibooter.headlesstest, -testproperties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\target\surefire.properties]
+Configuration location:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.080.tests/target/work/configuration/
+Configuration file:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.080.tests/target/work/configuration/config.ini loaded
+Install location:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.080.tests/target/work/
+Framework located:
+    file:/C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi/3.15.100.v20191114-1701/org.eclipse.osgi-3.15.100.v20191114-1701.jar
+Framework classpath:
+    file:/C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi/3.15.100.v20191114-1701/org.eclipse.osgi-3.15.100.v20191114-1701.jar
+Debug options:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.080.tests/.options not found
+Time to load bundles: 126
+Starting application: 1371
+Running org.eclipse.app4mc.amalthea.converters080.tests.DataSizeConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.168 s - in org.eclipse.app4mc.amalthea.converters080.tests.DataSizeConverterTest
+testConversion[0: Test data ID: Models with DataSize. Description : Migration of Amalthea models containing DataSize ](org.eclipse.app4mc.amalthea.converters080.tests.DataSizeConverterTest)  Time elapsed: 0.094 s
+verification[0: Test data ID: Models with DataSize. Description : Migration of Amalthea models containing DataSize ](org.eclipse.app4mc.amalthea.converters080.tests.DataSizeConverterTest)  Time elapsed: 0.008 s
+Running org.eclipse.app4mc.amalthea.converters080.tests.MappingConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.019 s - in org.eclipse.app4mc.amalthea.converters080.tests.MappingConverterTest
+testConversion[0: Test data ID: ModeLabel. Description : Migration of Amalthea models containing AbstractElementMapping](org.eclipse.app4mc.amalthea.converters080.tests.MappingConverterTest)  Time elapsed: 0.012 s
+verification[0: Test data ID: ModeLabel. Description : Migration of Amalthea models containing AbstractElementMapping](org.eclipse.app4mc.amalthea.converters080.tests.MappingConverterTest)  Time elapsed: 0.004 s
+Running org.eclipse.app4mc.amalthea.converters080.tests.NamespaceConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.095 s - in org.eclipse.app4mc.amalthea.converters080.tests.NamespaceConverterTest
+testConversion[0: Test file: /namespace/AMALTHEA_Democar.amxmi](org.eclipse.app4mc.amalthea.converters080.tests.NamespaceConverterTest)  Time elapsed: 0.068 s
+verification[0: Test file: /namespace/AMALTHEA_Democar.amxmi](org.eclipse.app4mc.amalthea.converters080.tests.NamespaceConverterTest)  Time elapsed: 0.025 s
+Running org.eclipse.app4mc.amalthea.converters080.tests.OSConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.02 s - in org.eclipse.app4mc.amalthea.converters080.tests.OSConverterTest
+testConversion[0: Test data ID: Models with OS Model. Description : Migration of Amalthea models containing OS Model ](org.eclipse.app4mc.amalthea.converters080.tests.OSConverterTest)  Time elapsed: 0.014 s
+verification[0: Test data ID: Models with OS Model. Description : Migration of Amalthea models containing OS Model ](org.eclipse.app4mc.amalthea.converters080.tests.OSConverterTest)  Time elapsed: 0.003 s
+Running org.eclipse.app4mc.amalthea.converters080.tests.ProbabilitySwitchConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.016 s - in org.eclipse.app4mc.amalthea.converters080.tests.ProbabilitySwitchConverterTest
+testConversion[0: Test data ID: Models with ProbabilitySwitch. Description : Migration of Amalthea models containing probabil(t)itySwitch ](org.eclipse.app4mc.amalthea.converters080.tests.ProbabilitySwitchConverterTest)  Time elapsed: 0.01 s
+verification[0: Test data ID: Models with ProbabilitySwitch. Description : Migration of Amalthea models containing probabil(t)itySwitch ](org.eclipse.app4mc.amalthea.converters080.tests.ProbabilitySwitchConverterTest)  Time elapsed: 0.005 s
+Running org.eclipse.app4mc.amalthea.converters080.tests.PropertyConstraintsConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018 s - in org.eclipse.app4mc.amalthea.converters080.tests.PropertyConstraintsConverterTest
+testConversion[0: Test data ID: Models with PropertyConstraints. Description : Migration of Amalthea models containing PropertyConstraints ](org.eclipse.app4mc.amalthea.converters080.tests.PropertyConstraintsConverterTest)  Time elapsed: 0.012 s
+verification[0: Test data ID: Models with PropertyConstraints. Description : Migration of Amalthea models containing PropertyConstraints ](org.eclipse.app4mc.amalthea.converters080.tests.PropertyConstraintsConverterTest)  Time elapsed: 0.005 s
+Running org.eclipse.app4mc.amalthea.converters080.tests.RootElementConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 s - in org.eclipse.app4mc.amalthea.converters080.tests.RootElementConverterTest
+testConversion[0: Test file: /rootElementConverter/commonElements.amxmi](org.eclipse.app4mc.amalthea.converters080.tests.RootElementConverterTest)  Time elapsed: 0.009 s
+verification[0: Test file: /rootElementConverter/commonElements.amxmi](org.eclipse.app4mc.amalthea.converters080.tests.RootElementConverterTest)  Time elapsed: 0.004 s
+Running org.eclipse.app4mc.amalthea.converters080.tests.SignedTimeConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014 s - in org.eclipse.app4mc.amalthea.converters080.tests.SignedTimeConverterTest
+testConversion[0: Test data ID: ModeLabel. Description : Migration of Amalthea models containing ModeLabels (both simple and cross references)](org.eclipse.app4mc.amalthea.converters080.tests.SignedTimeConverterTest)  Time elapsed: 0.008 s
+verification[0: Test data ID: ModeLabel. Description : Migration of Amalthea models containing ModeLabels (both simple and cross references)](org.eclipse.app4mc.amalthea.converters080.tests.SignedTimeConverterTest)  Time elapsed: 0.005 s
+Running org.eclipse.app4mc.amalthea.converters080.tests.SwConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 2, Time elapsed: 0.003 s - in org.eclipse.app4mc.amalthea.converters080.tests.SwConverterTest
+testConversion[0: Test data ID: ModeLabel. Description : Migration of Amalthea models containing ModeLabels (both simple and cross references)](org.eclipse.app4mc.amalthea.converters080.tests.SwConverterTest) skipped
+verification[0: Test data ID: ModeLabel. Description : Migration of Amalthea models containing ModeLabels (both simple and cross references)](org.eclipse.app4mc.amalthea.converters080.tests.SwConverterTest) skipped
+
+Results:
+
+Tests run: 18, Failures: 0, Errors: 0, Skipped: 2
+
+[INFO] All tests passed!
+[INFO] 
+[INFO] --< org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests >--
+[INFO] Building [test-bundle] APP4MC Amalthea Converters to 0.8.1 - Tests 1.1.0-SNAPSHOT [27/47]
+[INFO] ------------------------[ eclipse-test-plugin ]-------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): [compile, runtime]
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <baseDir>${project.basedir}</baseDir>
+  <execution>${mojoExecution}</execution>
+  <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
+  <format default-value="yyyyMMddHHmm"/>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id (default-validate-id)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version (default-validate-version)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <strictVersions default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources (default-resources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources default-value="${project.resources}"/>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile (default-compile)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <basedir>${basedir}</basedir>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <compilerId default-value="jdt">${maven.compiler.compilerId}</compilerId>
+  <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
+  <copyResources default-value="true"/>
+  <debug default-value="true">${maven.compiler.debug}</debug>
+  <deriveReleaseCompilerArgumentFromTargetLevel default-value="true"/>
+  <encoding>${project.build.sourceEncoding}</encoding>
+  <executable>${maven.compiler.executable}</executable>
+  <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
+  <fork default-value="false"/>
+  <generatedSourcesDirectory default-value="${project.build.directory}/generated-sources/annotations"/>
+  <logDirectory default-value="${project.build.directory}/compile-logs"/>
+  <mavenCompilerEncoding>${maven.compiler.encoding}</mavenCompilerEncoding>
+  <maxmem>${maven.compiler.maxmem}</maxmem>
+  <meminitial>${maven.compiler.meminitial}</meminitial>
+  <optimize default-value="false">${maven.compiler.optimize}</optimize>
+  <outputFileName>${project.build.finalName}</outputFileName>
+  <project>${project}</project>
+  <release>${maven.compiler.release}</release>
+  <requireJREPackageImports default-value="false"/>
+  <session>${session}</session>
+  <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
+  <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
+  <source>${maven.compiler.source}</source>
+  <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
+  <strictCompilerTarget default-value="false"/>
+  <target>${maven.compiler.target}</target>
+  <useJDK default-value="SYSTEM"/>
+  <useProjectSettings default-value="true"/>
+  <verbose default-value="false">${maven.compiler.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources (default-testResources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources>${project.testResources}</resources>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform (default-target-platform)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <finalName>${project.build.finalName}</finalName>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <strictBinIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attachP2Metadata default-value="true"/>
+  <baselineMode default-value="warn">${tycho.baseline}</baselineMode>
+  <baselineReplace default-value="all">none</baselineReplace>
+  <baselineRepositories>
+    <repository>
+      <url>https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/</url>
+    </repository>
+  </baselineRepositories>
+  <defaultP2Metadata default-value="true"/>
+  <execution>${mojoExecution}</execution>
+  <generateDownloadStatsProperty default-value="false">${tycho.generateDownloadStatsProperty}</generateDownloadStatsProperty>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test (default-test)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <argLine>${tycho.testArgLine}</argLine>
+  <debugPort>${debugPort}</debugPort>
+  <deleteOsgiDataDirectory default-value="true"/>
+  <enableAssertions default-value="false">${enableAssertions}</enableAssertions>
+  <excludedGroups>${excludedGroups}</excludedGroups>
+  <failIfNoTests default-value="true">${failIfNoTests}</failIfNoTests>
+  <forkedProcessTimeoutInSeconds>${surefire.timeout}</forkedProcessTimeoutInSeconds>
+  <groups>${groups}</groups>
+  <includes>
+    <forkMode>never</forkMode>
+    <include>**/*Test.java</include>
+    <include>**/*Tests.java</include>
+  </includes>
+  <osgiDataDirectory default-value="${project.build.directory}/work/data/"/>
+  <parallel>${parallel}</parallel>
+  <perCoreThreadCount default-value="true">${perCoreThreadCount}</perCoreThreadCount>
+  <pluginArtifacts>${plugin.artifacts}</pluginArtifacts>
+  <profileName default-value="DefaultProfile"/>
+  <project>${project}</project>
+  <redirectTestOutputToFile default-value="false">${maven.test.redirectTestOutputToFile}</redirectTestOutputToFile>
+  <reportsDirectory default-value="${project.build.directory}/surefire-reports"/>
+  <rerunFailingTestsCount default-value="0">${surefire.rerunFailingTestsCount}</rerunFailingTestsCount>
+  <runOrder default-value="filesystem"/>
+  <session>${session}</session>
+  <showEclipseLog default-value="false">${tycho.showEclipseLog}</showEclipseLog>
+  <skip>${maven.test.skip}</skip>
+  <skipAfterFailureCount default-value="0">${surefire.skipAfterFailureCount}</skipAfterFailureCount>
+  <skipExec>${maven.test.skipExec}</skipExec>
+  <skipTests>${skipTests}</skipTests>
+  <surefireProperties default-value="${project.build.directory}/surefire.properties"/>
+  <test>${test}</test>
+  <testClass>${testClass}</testClass>
+  <testClassesDirectory>${project.build.outputDirectory}</testClassesDirectory>
+  <testFailureIgnore default-value="false">${maven.test.failure.ignore}</testFailureIgnore>
+  <testRuntime default-value="default"/>
+  <threadCount>${threadCount}</threadCount>
+  <trimStackTrace default-value="true">${trimStackTrace}</trimStackTrace>
+  <useJDK default-value="SYSTEM"/>
+  <useUIHarness default-value="false"/>
+  <useUIThread default-value="true"/>
+  <useUnlimitedThreads default-value="false">${useUnlimitedThreads}</useUnlimitedThreads>
+  <work default-value="${project.build.directory}/work"/>
+</configuration>
+[DEBUG] =======================================================================
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=51700, ConflictMarker.markTime=25899, ConflictMarker.nodeCount=58, ConflictIdSorter.graphTime=14300, ConflictIdSorter.topsortTime=14800, ConflictIdSorter.conflictIdCount=21, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=119299, ConflictResolver.conflictItemCount=57, DefaultDependencyCollector.collectTime=587499, DefaultDependencyCollector.transformTime=242601}
+[DEBUG] org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:eclipse-test-plugin:1.1.0-SNAPSHOT
+[DEBUG]    p2.eclipse-plugin:javax.annotation:jar:1.2.0.v201602091430:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi:jar:3.15.100.v20191114-1701:system
+[DEBUG]    p2.eclipse-plugin:org.apache.felix.scr:jar:2.1.14.v20190123-1619:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.services:jar:3.8.0.v20190206-2147:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.util:jar:3.5.300.v20190708-1141:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.eclipse.app4mc.util.sessionlog:jar:1.1.0.202104211257:system
+[DEBUG]    p2.eclipse-plugin:org.jdom2:jar:2.0.6.v20191125-0928:system
+[DEBUG]    p2.eclipse-plugin:org.junit:jar:junit.jar:4.12.0.v201504281640:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.jaxen:jar:1.1.6.v20191106-1554:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.common:jar:3.10.600.v20191004-1420:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.runtime:jar:3.17.0.v20191122-2104:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.contenttype:jar:3.7.500.v20190916-2125:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.preferences:jar:3.7.600.v20191017-2055:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.registry:jar:3.8.600.v20191017-2055:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.jobs:jar:3.10.600.v20191122-2104:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.app:jar:1.4.300.v20190815-1535:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.launcher:jar:1.5.600.v20191014-2022:system
+[DEBUG]    p2.eclipse-plugin:org.hamcrest.core:jar:1.3.0.v20180420-1519:system
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ org.eclipse.app4mc.amalthea.converters.081.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\test-classes
+[DEBUG] -- end configuration --
+[INFO] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work\dev.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work\configuration\org.eclipse.osgi\framework.info.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-logger-api-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-booter-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-api-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\maven-surefire-common-2.22.2.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work\configuration\org.eclipse.osgi\22\0
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work\configuration\org.eclipse.osgi\22
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work\configuration\org.eclipse.osgi\10\0\.cp\junit.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work\configuration\org.eclipse.osgi\10\0\.cp
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work\configuration\org.eclipse.osgi\10\0
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work\configuration\org.eclipse.osgi\10
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTableLock
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTable.2
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTable.1
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work\configuration\org.eclipse.osgi\.manager
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work\configuration\org.eclipse.osgi
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work\configuration\org.eclipse.equinox.app\.manager\.fileTableLock
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work\configuration\org.eclipse.equinox.app\.manager
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work\configuration\org.eclipse.equinox.app
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work\configuration\org.eclipse.core.runtime\.table.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work\configuration\org.eclipse.core.runtime\.orphans.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work\configuration\org.eclipse.core.runtime\.namespaces.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTableLock
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTable.8
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTable.7
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work\configuration\org.eclipse.core.runtime\.manager
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work\configuration\org.eclipse.core.runtime\.mainData.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work\configuration\org.eclipse.core.runtime\.extraData.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work\configuration\org.eclipse.core.runtime\.contributors.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work\configuration\org.eclipse.core.runtime\.contributions.1
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work\configuration\org.eclipse.core.runtime
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work\configuration\config.ini
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work\configuration
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\surefire.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters081.tests.SwConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters081.tests.StimuliConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters081.tests.OS_SchedulingConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters081.tests.OS_MappingConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters081.tests.HwConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters081.tests.ConstraintsConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters081.tests.SwConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters081.tests.StimuliConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters081.tests.OS_SchedulingConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters081.tests.OS_MappingConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters081.tests.HwConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters081.tests.ConstraintsConverterTest.txt
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\surefire-reports
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\sourcebundle-l10n-gen\OSGI-INF\l10n\bundle-src.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\sourcebundle-l10n-gen\OSGI-INF\l10n
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\sourcebundle-l10n-gen\OSGI-INF
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\sourcebundle-l10n-gen
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\p2content.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\p2artifacts.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\org.eclipse.app4mc.amalthea.converters.081.tests-1.1.0-SNAPSHOT.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\org.eclipse.app4mc.amalthea.converters.081.tests-1.1.0-SNAPSHOT-sources.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\maven-archiver\pom.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\maven-archiver
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\MANIFEST.MF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\local-artifacts.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\generated-sources\annotations
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\generated-sources
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\classes\org\eclipse\app4mc\amalthea\converters081\tests\SwConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\classes\org\eclipse\app4mc\amalthea\converters081\tests\StimuliConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\classes\org\eclipse\app4mc\amalthea\converters081\tests\OS_SchedulingConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\classes\org\eclipse\app4mc\amalthea\converters081\tests\OS_MappingConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\classes\org\eclipse\app4mc\amalthea\converters081\tests\HwConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\classes\org\eclipse\app4mc\amalthea\converters081\tests\ConstraintsConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\classes\org\eclipse\app4mc\amalthea\converters081\tests\Abstract081ConverterTest.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\classes\org\eclipse\app4mc\amalthea\converters081\tests
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\classes\org\eclipse\app4mc\amalthea\converters081
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\classes\org\eclipse\app4mc\amalthea
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\classes\org\eclipse\app4mc
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\classes\org\eclipse
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\classes\org
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\classes
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\site
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier) @ org.eclipse.app4mc.amalthea.converters.081.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier' with basic configurator -->
+[DEBUG]   (f) baseDir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier {execution: default-build-qualifier}
+[DEBUG]   (s) format = yyyyMMddHHmm
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] The project's OSGi version is 1.1.0.202104220626
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-id (default-validate-id) @ org.eclipse.app4mc.amalthea.converters.081.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-version (default-validate-version) @ org.eclipse.app4mc.amalthea.converters.081.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF
+[DEBUG]   (f) strictVersions = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ org.eclipse.app4mc.amalthea.converters.081.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.081.tests.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\src\main\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\src\main\resources
+[INFO] 
+[INFO] --- tycho-compiler-plugin:2.3.0:compile (default-compile) @ org.eclipse.app4mc.amalthea.converters.081.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-compiler-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile' with basic configurator -->
+[DEBUG]   (f) basedir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target
+[DEBUG]   (f) compilerId = jdt
+[DEBUG]   (f) copyResources = true
+[DEBUG]   (f) debug = true
+[DEBUG]   (f) deriveReleaseCompilerArgumentFromTargetLevel = true
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) failOnWarning = false
+[DEBUG]   (f) fork = false
+[DEBUG]   (f) generatedSourcesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\generated-sources\annotations
+[DEBUG]   (f) logDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\compile-logs
+[DEBUG]   (f) optimize = false
+[DEBUG]   (f) outputFileName = org.eclipse.app4mc.amalthea.converters.081.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF
+[DEBUG]   (f) requireJREPackageImports = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showDeprecation = false
+[DEBUG]   (f) showWarnings = false
+[DEBUG]   (f) staleMillis = 0
+[DEBUG]   (f) strictCompilerTarget = false
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useProjectSettings = true
+[DEBUG]   (f) verbose = false
+[DEBUG] -- end configuration --
+[DEBUG] Manifest BREEs: [OSGi profile 'JavaSE-1.8' { source level: 1.8, target level: 1.8}]
+[DEBUG] Target Platform EE: OSGi profile 'JavaSE-11' { source level: 11, target level: 11}
+[DEBUG] Effective source/target: 1.8/1.8
+[DEBUG] Using compiler 'jdt'.
+[DEBUG] Source directories: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\src]
+[DEBUG] Classpath: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\classes
+ C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\classes]
+[DEBUG] Output directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\classes
+[DEBUG] Classpath:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\classes
+[DEBUG]  C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\classes
+[DEBUG] Source roots:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\src
+[INFO] Compiling 7 source files to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\classes
+[DEBUG] JDT compiler args: [-properties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.settings\org.eclipse.jdt.core.prefs, -s, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\generated-sources\annotations, -d, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\classes, -classpath, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\target\classes;C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\classes, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\src\org\eclipse\app4mc\amalthea\converters081\tests\Abstract081ConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\src\org\eclipse\app4mc\amalthea\converters081\tests\OS_SchedulingConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\src\org\eclipse\app4mc\amalthea\converters081\tests\SwConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\src\org\eclipse\app4mc\amalthea\converters081\tests\ConstraintsConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\src\org\eclipse\app4mc\amalthea\converters081\tests\StimuliConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\src\org\eclipse\app4mc\amalthea\converters081\tests\HwConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\src\org\eclipse\app4mc\amalthea\converters081\tests\OS_MappingConverterTest.java, -g, -nowarn, -target, 1.8, -source, 1.8, --release, 8, -encoding, UTF-8]
+[DEBUG] Original compiler output: 
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ org.eclipse.app4mc.amalthea.converters.081.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\test-classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\src\test\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.081.tests.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\src\test\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\src\test\resources
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ org.eclipse.app4mc.amalthea.converters.081.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.081.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\org.eclipse.app4mc.amalthea.converters.081.tests-1.1.0-SNAPSHOT-sources.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters081/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters081/tests/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters081/tests/Abstract081ConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters081/tests/ConstraintsConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters081/tests/HwConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters081/tests/OS_MappingConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters081/tests/OS_SchedulingConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters081/tests/StimuliConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters081/tests/SwConverterTest.java
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding directory OSGI-INF/l10n/
+[DEBUG] adding entry OSGI-INF/l10n/bundle-src.properties
+[INFO] 
+[INFO] --- target-platform-configuration:2.3.0:target-platform (default-target-platform) @ org.eclipse.app4mc.amalthea.converters.081.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform from plugin realm ClassRealm[plugin>org.eclipse.tycho:target-platform-configuration:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin) @ org.eclipse.app4mc.amalthea.converters.081.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin' with basic configurator -->
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.081.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) strictBinIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\org.eclipse.app4mc.amalthea.converters.081.tests-1.1.0-SNAPSHOT.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters081/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters081/tests/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters081/tests/Abstract081ConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters081/tests/ConstraintsConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters081/tests/HwConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters081/tests/OS_MappingConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters081/tests/OS_SchedulingConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters081/tests/StimuliConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters081/tests/SwConverterTest.class
+[DEBUG] adding directory META-INF/maven/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.081.tests/
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.081.tests/pom.xml
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.081.tests/pom.properties
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default) @ org.eclipse.app4mc.amalthea.converters.081.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default' with basic configurator -->
+[DEBUG]   (f) attachP2Metadata = true
+[DEBUG]   (f) baselineMode = warn
+[DEBUG]   (f) baselineReplace = none
+[DEBUG]   (f) url = https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/
+[DEBUG]   (f) baselineRepositories = [org.eclipse.tycho.plugins.p2.Repository@6f72345b]
+[DEBUG]   (f) defaultP2Metadata = true
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default {execution: default-p2-metadata-default}
+[DEBUG]   (f) generateDownloadStatsProperty = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] No baseline version MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-surefire-plugin:2.3.0:test (default-test) @ org.eclipse.app4mc.amalthea.converters.081.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-surefire-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test' with basic configurator -->
+[DEBUG]   (f) deleteOsgiDataDirectory = true
+[DEBUG]   (f) enableAssertions = false
+[DEBUG]   (f) failIfNoTests = true
+[DEBUG]   (f) includes = [never, **/*Test.java, **/*Tests.java]
+[DEBUG]   (f) osgiDataDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work\data
+[DEBUG]   (f) perCoreThreadCount = true
+[DEBUG]   (f) pluginArtifacts = [org.eclipse.tycho:tycho-surefire-plugin:maven-plugin:2.3.0:, org.apache.maven:maven-plugin-api:jar:3.6.3:compile, org.apache.maven:maven-model:jar:3.6.3:compile, org.apache.maven:maven-artifact:jar:3.6.3:compile, org.apache.commons:commons-lang3:jar:3.8.1:compile, org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4:compile, org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile, org.codehaus.plexus:plexus-utils:jar:3.3.0:compile, org.apache.maven:maven-core:jar:3.6.3:compile, org.apache.maven:maven-settings:jar:3.6.3:compile, org.apache.maven:maven-settings-builder:jar:3.6.3:compile, org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile, org.sonatype.plexus:plexus-cipher:jar:1.7:compile, org.apache.maven:maven-builder-support:jar:3.6.3:compile, org.apache.maven:maven-repository-metadata:jar:3.6.3:compile, org.apache.maven:maven-model-builder:jar:3.6.3:compile, org.apache.maven:maven-resolver-provider:jar:3.6.3:compile, org.slf4j:slf4j-api:jar:1.7.29:compile, org.apache.maven.resolver:maven-resolver-impl:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-api:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-spi:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-util:jar:1.4.1:compile, org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile, commons-io:commons-io:jar:2.5:compile, com.google.inject:guice:jar:no_aop:4.2.1:compile, aopalliance:aopalliance:jar:1.0:compile, com.google.guava:guava:jar:25.1-android:compile, com.google.code.findbugs:jsr305:jar:3.0.2:compile, org.checkerframework:checker-compat-qual:jar:2.0.0:compile, com.google.errorprone:error_prone_annotations:jar:2.1.3:compile, com.google.j2objc:j2objc-annotations:jar:1.1:compile, org.codehaus.mojo:animal-sniffer-annotations:jar:1.14:compile, javax.inject:javax.inject:jar:1:compile, org.codehaus.plexus:plexus-archiver:jar:4.2.2:compile, org.codehaus.plexus:plexus-io:jar:3.2.0:compile, org.apache.commons:commons-compress:jar:1.20:compile, org.iq80.snappy:snappy:jar:0.4:compile, org.tukaani:xz:jar:1.8:runtime, org.eclipse.platform:org.eclipse.osgi:jar:3.16.200:compile, org.apache.maven:maven-compat:jar:3.6.3:compile, org.codehaus.plexus:plexus-interpolation:jar:1.25:compile, org.apache.maven.wagon:wagon-provider-api:jar:3.3.4:compile, org.eclipse.tycho:sisu-equinox-launching:jar:2.3.0:compile, org.apache.commons:commons-exec:jar:1.3:compile, org.eclipse.tycho:org.eclipse.tycho.surefire.osgibooter:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit4:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit47:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit5:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit54:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit55:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit56:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit57:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.testng:jar:2.3.0:runtime, org.apache.maven.surefire:surefire-api:jar:2.22.2:compile, org.apache.maven.surefire:surefire-logger-api:jar:2.22.2:compile, org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile, org.apache.maven.surefire:maven-surefire-common:jar:2.22.2:compile, org.apache.maven.surefire:surefire-booter:jar:2.22.2:compile, org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile, org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile, classworlds:classworlds:jar:1.1-alpha-2:compile, org.apache.maven:maven-project:jar:2.2.1:compile, org.apache.maven:maven-profile:jar:2.2.1:compile, org.apache.maven:maven-artifact-manager:jar:2.2.1:compile, backport-util-concurrent:backport-util-concurrent:jar:3.1:compile, org.apache.maven:maven-plugin-registry:jar:2.2.1:compile, org.apache.maven:maven-toolchain:jar:2.2.1:compile, org.codehaus.plexus:plexus-java:jar:0.9.10:compile, org.ow2.asm:asm:jar:6.2:compile, com.thoughtworks.qdox:qdox:jar:2.0-M8:compile]
+[DEBUG]   (f) profileName = DefaultProfile
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF
+[DEBUG]   (f) redirectTestOutputToFile = false
+[DEBUG]   (f) reportsDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\surefire-reports
+[DEBUG]   (f) rerunFailingTestsCount = 0
+[DEBUG]   (f) runOrder = filesystem
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showEclipseLog = false
+[DEBUG]   (f) skipAfterFailureCount = 0
+[DEBUG]   (f) surefireProperties = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\surefire.properties
+[DEBUG]   (f) testClassesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\classes
+[DEBUG]   (f) testFailureIgnore = false
+[DEBUG]   (f) testRuntime = default
+[DEBUG]   (f) trimStackTrace = true
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useUIHarness = false
+[DEBUG]   (f) useUIThread = true
+[DEBUG]   (f) useUnlimitedThreads = false
+[DEBUG]   (f) work = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work
+[DEBUG] -- end configuration --
+[DEBUG] Using test framework provider org.eclipse.tycho.surefire.provider.impl.JUnit4Provider
+[DEBUG] Installation OSGI bundles:
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/javax.annotation/1.2.0.v201602091430/javax.annotation-1.2.0.v201602091430.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.apache.felix.scr/2.1.14.v20190123-1619/org.apache.felix.scr-2.1.14.v20190123-1619.jar@1:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi.services/3.8.0.v20190206-2147/org.eclipse.osgi.services-3.8.0.v20190206-2147.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi.util/3.5.300.v20190708-1141/org.eclipse.osgi.util-3.5.300.v20190708-1141.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.081/target/org.eclipse.app4mc.amalthea.converters.081-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.common/target/org.eclipse.app4mc.amalthea.converters.common-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.app4mc.util.sessionlog/1.1.0.202104211257/org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.jdom2/2.0.6.v20191125-0928/org.jdom2-2.0.6.v20191125-0928.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.081.tests
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.junit/4.12.0.v201504281640/org.junit-4.12.0.v201504281640.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.common.tests/target/org.eclipse.app4mc.amalthea.converters.common.tests-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.jaxen/1.1.6.v20191106-1554/org.jaxen-1.1.6.v20191106-1554.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.common/3.10.600.v20191004-1420/org.eclipse.equinox.common-3.10.600.v20191004-1420.jar@2:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.runtime/3.17.0.v20191122-2104/org.eclipse.core.runtime-3.17.0.v20191122-2104.jar@4:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.contenttype/3.7.500.v20190916-2125/org.eclipse.core.contenttype-3.7.500.v20190916-2125.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.preferences/3.7.600.v20191017-2055/org.eclipse.equinox.preferences-3.7.600.v20191017-2055.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.registry/3.8.600.v20191017-2055/org.eclipse.equinox.registry-3.8.600.v20191017-2055.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.jobs/3.10.600.v20191122-2104/org.eclipse.core.jobs-3.10.600.v20191122-2104.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.app/1.4.300.v20190815-1535/org.eclipse.equinox.app-1.4.300.v20190815-1535.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.launcher/1.5.600.v20191014-2022/org.eclipse.equinox.launcher-1.5.600.v20191014-2022.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.hamcrest.core/1.3.0.v20180420-1519/org.hamcrest.core-1.3.0.v20180420-1519.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.081.tests
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/org/eclipse/tycho/org.eclipse.tycho.surefire.osgibooter/2.3.0/org.eclipse.tycho.surefire.osgibooter-2.3.0.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/org/eclipse/tycho/org.eclipse.tycho.surefire.junit4/2.3.0/org.eclipse.tycho.surefire.junit4-2.3.0.jar
+[INFO] Executing Test Runtime with timeout 0, logs (if any) will be placed at: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work\data\.metadata\.log
+[INFO] Command line:
+	[C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, -Dosgi.noShutdown=false, -Dosgi.os=win32, -Dosgi.ws=win32, -Dosgi.arch=x86_64, -Dosgi.clean=true, -jar, C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.launcher\1.5.600.v20191014-2022\org.eclipse.equinox.launcher-1.5.600.v20191014-2022.jar, -debug, -consolelog, -data, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work\data, -install, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work, -configuration, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\work\configuration, -application, org.eclipse.tycho.surefire.osgibooter.headlesstest, -testproperties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\target\surefire.properties]
+Configuration location:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.081.tests/target/work/configuration/
+Configuration file:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.081.tests/target/work/configuration/config.ini loaded
+Install location:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.081.tests/target/work/
+Framework located:
+    file:/C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi/3.15.100.v20191114-1701/org.eclipse.osgi-3.15.100.v20191114-1701.jar
+Framework classpath:
+    file:/C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi/3.15.100.v20191114-1701/org.eclipse.osgi-3.15.100.v20191114-1701.jar
+Debug options:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.081.tests/.options not found
+Time to load bundles: 126
+Starting application: 1368
+Running org.eclipse.app4mc.amalthea.converters081.tests.ConstraintsConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.258 s - in org.eclipse.app4mc.amalthea.converters081.tests.ConstraintsConverterTest
+testConversion[0: Test data ID: Models with Constraint Model. Description : Migration of Amalthea models containing Constraints Model ](org.eclipse.app4mc.amalthea.converters081.tests.ConstraintsConverterTest)  Time elapsed: 0.164 s
+verification[0: Test data ID: Models with Constraint Model. Description : Migration of Amalthea models containing Constraints Model ](org.eclipse.app4mc.amalthea.converters081.tests.ConstraintsConverterTest)  Time elapsed: 0.042 s
+Running org.eclipse.app4mc.amalthea.converters081.tests.HwConverterTest
+Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.03 s - in org.eclipse.app4mc.amalthea.converters081.tests.HwConverterTest
+testConversion[0: Test data ID: Models with HW Model. Description : Migration of Amalthea models containing HW Model ](org.eclipse.app4mc.amalthea.converters081.tests.HwConverterTest)  Time elapsed: 0.012 s
+verification[0: Test data ID: Models with HW Model. Description : Migration of Amalthea models containing HW Model ](org.eclipse.app4mc.amalthea.converters081.tests.HwConverterTest)  Time elapsed: 0.004 s
+testConversion[1: Test data ID: Models with HW Model (containing Quartz). Description : Migration of Amalthea models containing Quartz in HW Model ](org.eclipse.app4mc.amalthea.converters081.tests.HwConverterTest)  Time elapsed: 0.008 s
+verification[1: Test data ID: Models with HW Model (containing Quartz). Description : Migration of Amalthea models containing Quartz in HW Model ](org.eclipse.app4mc.amalthea.converters081.tests.HwConverterTest)  Time elapsed: 0.003 s
+Running org.eclipse.app4mc.amalthea.converters081.tests.OS_MappingConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.027 s - in org.eclipse.app4mc.amalthea.converters081.tests.OS_MappingConverterTest
+testConversion[0: Test data ID: AMXMI  with OS and Mapping Models. Description : Migration of Amalthea models containing SW Model ](org.eclipse.app4mc.amalthea.converters081.tests.OS_MappingConverterTest)  Time elapsed: 0.02 s
+verification[0: Test data ID: AMXMI  with OS and Mapping Models. Description : Migration of Amalthea models containing SW Model ](org.eclipse.app4mc.amalthea.converters081.tests.OS_MappingConverterTest)  Time elapsed: 0.006 s
+Running org.eclipse.app4mc.amalthea.converters081.tests.OS_SchedulingConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014 s - in org.eclipse.app4mc.amalthea.converters081.tests.OS_SchedulingConverterTest
+testConversion[0: Test data ID: AMXMI  with OS (Schedulers) Models. Description : Migration of Amalthea models containing OS Model ](org.eclipse.app4mc.amalthea.converters081.tests.OS_SchedulingConverterTest)  Time elapsed: 0.009 s
+verification[0: Test data ID: AMXMI  with OS (Schedulers) Models. Description : Migration of Amalthea models containing OS Model ](org.eclipse.app4mc.amalthea.converters081.tests.OS_SchedulingConverterTest)  Time elapsed: 0.003 s
+Running org.eclipse.app4mc.amalthea.converters081.tests.StimuliConverterTest
+Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.05 s - in org.eclipse.app4mc.amalthea.converters081.tests.StimuliConverterTest
+testConversion[0: Test data ID: Models with Stimuli Model (Containing ModeValueListEntry elements). Description : Migration of Amalthea models containing Stimuli model(Containing ModeValueListEntry elements) ](org.eclipse.app4mc.amalthea.converters081.tests.StimuliConverterTest)  Time elapsed: 0.013 s
+verification[0: Test data ID: Models with Stimuli Model (Containing ModeValueListEntry elements). Description : Migration of Amalthea models containing Stimuli model(Containing ModeValueListEntry elements) ](org.eclipse.app4mc.amalthea.converters081.tests.StimuliConverterTest)  Time elapsed: 0.004 s
+testConversion[1: Test data ID: Models with Stimuli Model (Containing EventStimulus elements). Description : Migration of Amalthea models containing Stimulus model(Containing EventStimulus elements) ](org.eclipse.app4mc.amalthea.converters081.tests.StimuliConverterTest)  Time elapsed: 0.02 s
+verification[1: Test data ID: Models with Stimuli Model (Containing EventStimulus elements). Description : Migration of Amalthea models containing Stimulus model(Containing EventStimulus elements) ](org.eclipse.app4mc.amalthea.converters081.tests.StimuliConverterTest)  Time elapsed: 0.01 s
+Running org.eclipse.app4mc.amalthea.converters081.tests.SwConverterTest
+Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.053 s - in org.eclipse.app4mc.amalthea.converters081.tests.SwConverterTest
+testConversion[0: Test data ID: Models with SW Model. Description : Migration of Amalthea models containing SW Model ](org.eclipse.app4mc.amalthea.converters081.tests.SwConverterTest)  Time elapsed: 0.012 s
+verification[0: Test data ID: Models with SW Model. Description : Migration of Amalthea models containing SW Model ](org.eclipse.app4mc.amalthea.converters081.tests.SwConverterTest)  Time elapsed: 0.006 s
+testConversion[1: Test data ID: Models with SW Model - having sub-classes of AbstractProcess (e.g: Task, ISR, ProcessPrototyes). Description : Migration of Amalthea models containing SW Model (with AbstractProcess elements)](org.eclipse.app4mc.amalthea.converters081.tests.SwConverterTest)  Time elapsed: 0.007 s
+verification[1: Test data ID: Models with SW Model - having sub-classes of AbstractProcess (e.g: Task, ISR, ProcessPrototyes). Description : Migration of Amalthea models containing SW Model (with AbstractProcess elements)](org.eclipse.app4mc.amalthea.converters081.tests.SwConverterTest)  Time elapsed: 0.003 s
+testConversion[2: Test data ID: Models with Activations & Triggers. Description : Migration of Amalthea models containing PeriodicActivation's & EventActivation's ](org.eclipse.app4mc.amalthea.converters081.tests.SwConverterTest)  Time elapsed: 0.014 s
+verification[2: Test data ID: Models with Activations & Triggers. Description : Migration of Amalthea models containing PeriodicActivation's & EventActivation's ](org.eclipse.app4mc.amalthea.converters081.tests.SwConverterTest)  Time elapsed: 0.006 s
+
+Results:
+
+Tests run: 20, Failures: 0, Errors: 0, Skipped: 0
+
+[INFO] All tests passed!
+[INFO] 
+[INFO] --< org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests >--
+[INFO] Building [test-bundle] APP4MC Amalthea Converters to 0.8.2 - Tests 1.1.0-SNAPSHOT [28/47]
+[INFO] ------------------------[ eclipse-test-plugin ]-------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): [compile, runtime]
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <baseDir>${project.basedir}</baseDir>
+  <execution>${mojoExecution}</execution>
+  <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
+  <format default-value="yyyyMMddHHmm"/>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id (default-validate-id)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version (default-validate-version)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <strictVersions default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources (default-resources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources default-value="${project.resources}"/>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile (default-compile)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <basedir>${basedir}</basedir>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <compilerId default-value="jdt">${maven.compiler.compilerId}</compilerId>
+  <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
+  <copyResources default-value="true"/>
+  <debug default-value="true">${maven.compiler.debug}</debug>
+  <deriveReleaseCompilerArgumentFromTargetLevel default-value="true"/>
+  <encoding>${project.build.sourceEncoding}</encoding>
+  <executable>${maven.compiler.executable}</executable>
+  <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
+  <fork default-value="false"/>
+  <generatedSourcesDirectory default-value="${project.build.directory}/generated-sources/annotations"/>
+  <logDirectory default-value="${project.build.directory}/compile-logs"/>
+  <mavenCompilerEncoding>${maven.compiler.encoding}</mavenCompilerEncoding>
+  <maxmem>${maven.compiler.maxmem}</maxmem>
+  <meminitial>${maven.compiler.meminitial}</meminitial>
+  <optimize default-value="false">${maven.compiler.optimize}</optimize>
+  <outputFileName>${project.build.finalName}</outputFileName>
+  <project>${project}</project>
+  <release>${maven.compiler.release}</release>
+  <requireJREPackageImports default-value="false"/>
+  <session>${session}</session>
+  <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
+  <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
+  <source>${maven.compiler.source}</source>
+  <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
+  <strictCompilerTarget default-value="false"/>
+  <target>${maven.compiler.target}</target>
+  <useJDK default-value="SYSTEM"/>
+  <useProjectSettings default-value="true"/>
+  <verbose default-value="false">${maven.compiler.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources (default-testResources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources>${project.testResources}</resources>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform (default-target-platform)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <finalName>${project.build.finalName}</finalName>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <strictBinIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attachP2Metadata default-value="true"/>
+  <baselineMode default-value="warn">${tycho.baseline}</baselineMode>
+  <baselineReplace default-value="all">none</baselineReplace>
+  <baselineRepositories>
+    <repository>
+      <url>https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/</url>
+    </repository>
+  </baselineRepositories>
+  <defaultP2Metadata default-value="true"/>
+  <execution>${mojoExecution}</execution>
+  <generateDownloadStatsProperty default-value="false">${tycho.generateDownloadStatsProperty}</generateDownloadStatsProperty>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test (default-test)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <argLine>${tycho.testArgLine}</argLine>
+  <debugPort>${debugPort}</debugPort>
+  <deleteOsgiDataDirectory default-value="true"/>
+  <enableAssertions default-value="false">${enableAssertions}</enableAssertions>
+  <excludedGroups>${excludedGroups}</excludedGroups>
+  <failIfNoTests default-value="true">${failIfNoTests}</failIfNoTests>
+  <forkedProcessTimeoutInSeconds>${surefire.timeout}</forkedProcessTimeoutInSeconds>
+  <groups>${groups}</groups>
+  <includes>
+    <forkMode>never</forkMode>
+    <include>**/*Test.java</include>
+    <include>**/*Tests.java</include>
+  </includes>
+  <osgiDataDirectory default-value="${project.build.directory}/work/data/"/>
+  <parallel>${parallel}</parallel>
+  <perCoreThreadCount default-value="true">${perCoreThreadCount}</perCoreThreadCount>
+  <pluginArtifacts>${plugin.artifacts}</pluginArtifacts>
+  <profileName default-value="DefaultProfile"/>
+  <project>${project}</project>
+  <redirectTestOutputToFile default-value="false">${maven.test.redirectTestOutputToFile}</redirectTestOutputToFile>
+  <reportsDirectory default-value="${project.build.directory}/surefire-reports"/>
+  <rerunFailingTestsCount default-value="0">${surefire.rerunFailingTestsCount}</rerunFailingTestsCount>
+  <runOrder default-value="filesystem"/>
+  <session>${session}</session>
+  <showEclipseLog default-value="false">${tycho.showEclipseLog}</showEclipseLog>
+  <skip>${maven.test.skip}</skip>
+  <skipAfterFailureCount default-value="0">${surefire.skipAfterFailureCount}</skipAfterFailureCount>
+  <skipExec>${maven.test.skipExec}</skipExec>
+  <skipTests>${skipTests}</skipTests>
+  <surefireProperties default-value="${project.build.directory}/surefire.properties"/>
+  <test>${test}</test>
+  <testClass>${testClass}</testClass>
+  <testClassesDirectory>${project.build.outputDirectory}</testClassesDirectory>
+  <testFailureIgnore default-value="false">${maven.test.failure.ignore}</testFailureIgnore>
+  <testRuntime default-value="default"/>
+  <threadCount>${threadCount}</threadCount>
+  <trimStackTrace default-value="true">${trimStackTrace}</trimStackTrace>
+  <useJDK default-value="SYSTEM"/>
+  <useUIHarness default-value="false"/>
+  <useUIThread default-value="true"/>
+  <useUnlimitedThreads default-value="false">${useUnlimitedThreads}</useUnlimitedThreads>
+  <work default-value="${project.build.directory}/work"/>
+</configuration>
+[DEBUG] =======================================================================
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=30601, ConflictMarker.markTime=19299, ConflictMarker.nodeCount=58, ConflictIdSorter.graphTime=12001, ConflictIdSorter.topsortTime=13400, ConflictIdSorter.conflictIdCount=21, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=100701, ConflictResolver.conflictItemCount=57, DefaultDependencyCollector.collectTime=537099, DefaultDependencyCollector.transformTime=190701}
+[DEBUG] org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:eclipse-test-plugin:1.1.0-SNAPSHOT
+[DEBUG]    p2.eclipse-plugin:javax.annotation:jar:1.2.0.v201602091430:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi:jar:3.15.100.v20191114-1701:system
+[DEBUG]    p2.eclipse-plugin:org.apache.felix.scr:jar:2.1.14.v20190123-1619:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.services:jar:3.8.0.v20190206-2147:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.util:jar:3.5.300.v20190708-1141:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.eclipse.app4mc.util.sessionlog:jar:1.1.0.202104211257:system
+[DEBUG]    p2.eclipse-plugin:org.jdom2:jar:2.0.6.v20191125-0928:system
+[DEBUG]    p2.eclipse-plugin:org.junit:jar:junit.jar:4.12.0.v201504281640:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.jaxen:jar:1.1.6.v20191106-1554:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.common:jar:3.10.600.v20191004-1420:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.runtime:jar:3.17.0.v20191122-2104:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.contenttype:jar:3.7.500.v20190916-2125:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.preferences:jar:3.7.600.v20191017-2055:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.registry:jar:3.8.600.v20191017-2055:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.jobs:jar:3.10.600.v20191122-2104:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.app:jar:1.4.300.v20190815-1535:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.launcher:jar:1.5.600.v20191014-2022:system
+[DEBUG]    p2.eclipse-plugin:org.hamcrest.core:jar:1.3.0.v20180420-1519:system
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ org.eclipse.app4mc.amalthea.converters.082.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\test-classes
+[DEBUG] -- end configuration --
+[INFO] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work\dev.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work\configuration\org.eclipse.osgi\framework.info.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-logger-api-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-booter-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-api-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\maven-surefire-common-2.22.2.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work\configuration\org.eclipse.osgi\22\0
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work\configuration\org.eclipse.osgi\22
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work\configuration\org.eclipse.osgi\10\0\.cp\junit.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work\configuration\org.eclipse.osgi\10\0\.cp
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work\configuration\org.eclipse.osgi\10\0
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work\configuration\org.eclipse.osgi\10
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTableLock
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTable.2
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTable.1
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work\configuration\org.eclipse.osgi\.manager
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work\configuration\org.eclipse.osgi
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work\configuration\org.eclipse.equinox.app\.manager\.fileTableLock
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work\configuration\org.eclipse.equinox.app\.manager
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work\configuration\org.eclipse.equinox.app
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work\configuration\org.eclipse.core.runtime\.table.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work\configuration\org.eclipse.core.runtime\.orphans.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work\configuration\org.eclipse.core.runtime\.namespaces.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTableLock
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTable.8
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTable.7
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work\configuration\org.eclipse.core.runtime\.manager
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work\configuration\org.eclipse.core.runtime\.mainData.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work\configuration\org.eclipse.core.runtime\.extraData.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work\configuration\org.eclipse.core.runtime\.contributors.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work\configuration\org.eclipse.core.runtime\.contributions.1
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work\configuration\org.eclipse.core.runtime
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work\configuration\config.ini
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work\configuration
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\surefire.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters082.tests.NamespaceConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters082.tests.NamespaceConverterTest.txt
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\surefire-reports
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\sourcebundle-l10n-gen\OSGI-INF\l10n\bundle-src.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\sourcebundle-l10n-gen\OSGI-INF\l10n
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\sourcebundle-l10n-gen\OSGI-INF
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\sourcebundle-l10n-gen
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\p2content.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\p2artifacts.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\org.eclipse.app4mc.amalthea.converters.082.tests-1.1.0-SNAPSHOT.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\org.eclipse.app4mc.amalthea.converters.082.tests-1.1.0-SNAPSHOT-sources.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\maven-archiver\pom.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\maven-archiver
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\MANIFEST.MF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\local-artifacts.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\generated-sources\annotations
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\generated-sources
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\classes\org\eclipse\app4mc\amalthea\converters082\tests\NamespaceConverterTest.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\classes\org\eclipse\app4mc\amalthea\converters082\tests
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\classes\org\eclipse\app4mc\amalthea\converters082
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\classes\org\eclipse\app4mc\amalthea
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\classes\org\eclipse\app4mc
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\classes\org\eclipse
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\classes\org
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\classes
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\site
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier) @ org.eclipse.app4mc.amalthea.converters.082.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier' with basic configurator -->
+[DEBUG]   (f) baseDir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier {execution: default-build-qualifier}
+[DEBUG]   (s) format = yyyyMMddHHmm
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] The project's OSGi version is 1.1.0.202104220626
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-id (default-validate-id) @ org.eclipse.app4mc.amalthea.converters.082.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-version (default-validate-version) @ org.eclipse.app4mc.amalthea.converters.082.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF
+[DEBUG]   (f) strictVersions = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ org.eclipse.app4mc.amalthea.converters.082.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.082.tests.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\src\main\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\src\main\resources
+[INFO] 
+[INFO] --- tycho-compiler-plugin:2.3.0:compile (default-compile) @ org.eclipse.app4mc.amalthea.converters.082.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-compiler-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile' with basic configurator -->
+[DEBUG]   (f) basedir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target
+[DEBUG]   (f) compilerId = jdt
+[DEBUG]   (f) copyResources = true
+[DEBUG]   (f) debug = true
+[DEBUG]   (f) deriveReleaseCompilerArgumentFromTargetLevel = true
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) failOnWarning = false
+[DEBUG]   (f) fork = false
+[DEBUG]   (f) generatedSourcesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\generated-sources\annotations
+[DEBUG]   (f) logDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\compile-logs
+[DEBUG]   (f) optimize = false
+[DEBUG]   (f) outputFileName = org.eclipse.app4mc.amalthea.converters.082.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF
+[DEBUG]   (f) requireJREPackageImports = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showDeprecation = false
+[DEBUG]   (f) showWarnings = false
+[DEBUG]   (f) staleMillis = 0
+[DEBUG]   (f) strictCompilerTarget = false
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useProjectSettings = true
+[DEBUG]   (f) verbose = false
+[DEBUG] -- end configuration --
+[DEBUG] Manifest BREEs: [OSGi profile 'JavaSE-1.8' { source level: 1.8, target level: 1.8}]
+[DEBUG] Target Platform EE: OSGi profile 'JavaSE-11' { source level: 11, target level: 11}
+[DEBUG] Effective source/target: 1.8/1.8
+[DEBUG] Using compiler 'jdt'.
+[DEBUG] Source directories: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\src]
+[DEBUG] Classpath: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\classes
+ C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\classes]
+[DEBUG] Output directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\classes
+[DEBUG] Classpath:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\classes
+[DEBUG]  C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\classes
+[DEBUG] Source roots:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\src
+[INFO] Compiling 1 source file to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\classes
+[DEBUG] JDT compiler args: [-properties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.settings\org.eclipse.jdt.core.prefs, -s, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\generated-sources\annotations, -d, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\classes, -classpath, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\target\classes;C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\classes, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\src\org\eclipse\app4mc\amalthea\converters082\tests\NamespaceConverterTest.java, -g, -nowarn, -target, 1.8, -source, 1.8, --release, 8, -encoding, UTF-8]
+[DEBUG] Original compiler output: 
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ org.eclipse.app4mc.amalthea.converters.082.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\test-classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\src\test\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.082.tests.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\src\test\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\src\test\resources
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ org.eclipse.app4mc.amalthea.converters.082.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.082.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\org.eclipse.app4mc.amalthea.converters.082.tests-1.1.0-SNAPSHOT-sources.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters082/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters082/tests/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters082/tests/NamespaceConverterTest.java
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding directory OSGI-INF/l10n/
+[DEBUG] adding entry OSGI-INF/l10n/bundle-src.properties
+[INFO] 
+[INFO] --- target-platform-configuration:2.3.0:target-platform (default-target-platform) @ org.eclipse.app4mc.amalthea.converters.082.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform from plugin realm ClassRealm[plugin>org.eclipse.tycho:target-platform-configuration:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin) @ org.eclipse.app4mc.amalthea.converters.082.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin' with basic configurator -->
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.082.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) strictBinIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\org.eclipse.app4mc.amalthea.converters.082.tests-1.1.0-SNAPSHOT.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters082/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters082/tests/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters082/tests/NamespaceConverterTest.class
+[DEBUG] adding directory META-INF/maven/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.082.tests/
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.082.tests/pom.xml
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.082.tests/pom.properties
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default) @ org.eclipse.app4mc.amalthea.converters.082.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default' with basic configurator -->
+[DEBUG]   (f) attachP2Metadata = true
+[DEBUG]   (f) baselineMode = warn
+[DEBUG]   (f) baselineReplace = none
+[DEBUG]   (f) url = https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/
+[DEBUG]   (f) baselineRepositories = [org.eclipse.tycho.plugins.p2.Repository@752b871]
+[DEBUG]   (f) defaultP2Metadata = true
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default {execution: default-p2-metadata-default}
+[DEBUG]   (f) generateDownloadStatsProperty = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] No baseline version MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-surefire-plugin:2.3.0:test (default-test) @ org.eclipse.app4mc.amalthea.converters.082.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-surefire-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test' with basic configurator -->
+[DEBUG]   (f) deleteOsgiDataDirectory = true
+[DEBUG]   (f) enableAssertions = false
+[DEBUG]   (f) failIfNoTests = true
+[DEBUG]   (f) includes = [never, **/*Test.java, **/*Tests.java]
+[DEBUG]   (f) osgiDataDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work\data
+[DEBUG]   (f) perCoreThreadCount = true
+[DEBUG]   (f) pluginArtifacts = [org.eclipse.tycho:tycho-surefire-plugin:maven-plugin:2.3.0:, org.apache.maven:maven-plugin-api:jar:3.6.3:compile, org.apache.maven:maven-model:jar:3.6.3:compile, org.apache.maven:maven-artifact:jar:3.6.3:compile, org.apache.commons:commons-lang3:jar:3.8.1:compile, org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4:compile, org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile, org.codehaus.plexus:plexus-utils:jar:3.3.0:compile, org.apache.maven:maven-core:jar:3.6.3:compile, org.apache.maven:maven-settings:jar:3.6.3:compile, org.apache.maven:maven-settings-builder:jar:3.6.3:compile, org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile, org.sonatype.plexus:plexus-cipher:jar:1.7:compile, org.apache.maven:maven-builder-support:jar:3.6.3:compile, org.apache.maven:maven-repository-metadata:jar:3.6.3:compile, org.apache.maven:maven-model-builder:jar:3.6.3:compile, org.apache.maven:maven-resolver-provider:jar:3.6.3:compile, org.slf4j:slf4j-api:jar:1.7.29:compile, org.apache.maven.resolver:maven-resolver-impl:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-api:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-spi:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-util:jar:1.4.1:compile, org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile, commons-io:commons-io:jar:2.5:compile, com.google.inject:guice:jar:no_aop:4.2.1:compile, aopalliance:aopalliance:jar:1.0:compile, com.google.guava:guava:jar:25.1-android:compile, com.google.code.findbugs:jsr305:jar:3.0.2:compile, org.checkerframework:checker-compat-qual:jar:2.0.0:compile, com.google.errorprone:error_prone_annotations:jar:2.1.3:compile, com.google.j2objc:j2objc-annotations:jar:1.1:compile, org.codehaus.mojo:animal-sniffer-annotations:jar:1.14:compile, javax.inject:javax.inject:jar:1:compile, org.codehaus.plexus:plexus-archiver:jar:4.2.2:compile, org.codehaus.plexus:plexus-io:jar:3.2.0:compile, org.apache.commons:commons-compress:jar:1.20:compile, org.iq80.snappy:snappy:jar:0.4:compile, org.tukaani:xz:jar:1.8:runtime, org.eclipse.platform:org.eclipse.osgi:jar:3.16.200:compile, org.apache.maven:maven-compat:jar:3.6.3:compile, org.codehaus.plexus:plexus-interpolation:jar:1.25:compile, org.apache.maven.wagon:wagon-provider-api:jar:3.3.4:compile, org.eclipse.tycho:sisu-equinox-launching:jar:2.3.0:compile, org.apache.commons:commons-exec:jar:1.3:compile, org.eclipse.tycho:org.eclipse.tycho.surefire.osgibooter:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit4:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit47:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit5:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit54:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit55:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit56:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit57:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.testng:jar:2.3.0:runtime, org.apache.maven.surefire:surefire-api:jar:2.22.2:compile, org.apache.maven.surefire:surefire-logger-api:jar:2.22.2:compile, org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile, org.apache.maven.surefire:maven-surefire-common:jar:2.22.2:compile, org.apache.maven.surefire:surefire-booter:jar:2.22.2:compile, org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile, org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile, classworlds:classworlds:jar:1.1-alpha-2:compile, org.apache.maven:maven-project:jar:2.2.1:compile, org.apache.maven:maven-profile:jar:2.2.1:compile, org.apache.maven:maven-artifact-manager:jar:2.2.1:compile, backport-util-concurrent:backport-util-concurrent:jar:3.1:compile, org.apache.maven:maven-plugin-registry:jar:2.2.1:compile, org.apache.maven:maven-toolchain:jar:2.2.1:compile, org.codehaus.plexus:plexus-java:jar:0.9.10:compile, org.ow2.asm:asm:jar:6.2:compile, com.thoughtworks.qdox:qdox:jar:2.0-M8:compile]
+[DEBUG]   (f) profileName = DefaultProfile
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF
+[DEBUG]   (f) redirectTestOutputToFile = false
+[DEBUG]   (f) reportsDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\surefire-reports
+[DEBUG]   (f) rerunFailingTestsCount = 0
+[DEBUG]   (f) runOrder = filesystem
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showEclipseLog = false
+[DEBUG]   (f) skipAfterFailureCount = 0
+[DEBUG]   (f) surefireProperties = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\surefire.properties
+[DEBUG]   (f) testClassesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\classes
+[DEBUG]   (f) testFailureIgnore = false
+[DEBUG]   (f) testRuntime = default
+[DEBUG]   (f) trimStackTrace = true
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useUIHarness = false
+[DEBUG]   (f) useUIThread = true
+[DEBUG]   (f) useUnlimitedThreads = false
+[DEBUG]   (f) work = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work
+[DEBUG] -- end configuration --
+[DEBUG] Using test framework provider org.eclipse.tycho.surefire.provider.impl.JUnit4Provider
+[DEBUG] Installation OSGI bundles:
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/javax.annotation/1.2.0.v201602091430/javax.annotation-1.2.0.v201602091430.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.apache.felix.scr/2.1.14.v20190123-1619/org.apache.felix.scr-2.1.14.v20190123-1619.jar@1:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi.services/3.8.0.v20190206-2147/org.eclipse.osgi.services-3.8.0.v20190206-2147.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi.util/3.5.300.v20190708-1141/org.eclipse.osgi.util-3.5.300.v20190708-1141.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.082/target/org.eclipse.app4mc.amalthea.converters.082-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.common/target/org.eclipse.app4mc.amalthea.converters.common-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.app4mc.util.sessionlog/1.1.0.202104211257/org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.jdom2/2.0.6.v20191125-0928/org.jdom2-2.0.6.v20191125-0928.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.082.tests
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.junit/4.12.0.v201504281640/org.junit-4.12.0.v201504281640.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.common.tests/target/org.eclipse.app4mc.amalthea.converters.common.tests-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.jaxen/1.1.6.v20191106-1554/org.jaxen-1.1.6.v20191106-1554.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.common/3.10.600.v20191004-1420/org.eclipse.equinox.common-3.10.600.v20191004-1420.jar@2:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.runtime/3.17.0.v20191122-2104/org.eclipse.core.runtime-3.17.0.v20191122-2104.jar@4:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.contenttype/3.7.500.v20190916-2125/org.eclipse.core.contenttype-3.7.500.v20190916-2125.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.preferences/3.7.600.v20191017-2055/org.eclipse.equinox.preferences-3.7.600.v20191017-2055.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.registry/3.8.600.v20191017-2055/org.eclipse.equinox.registry-3.8.600.v20191017-2055.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.jobs/3.10.600.v20191122-2104/org.eclipse.core.jobs-3.10.600.v20191122-2104.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.app/1.4.300.v20190815-1535/org.eclipse.equinox.app-1.4.300.v20190815-1535.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.launcher/1.5.600.v20191014-2022/org.eclipse.equinox.launcher-1.5.600.v20191014-2022.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.hamcrest.core/1.3.0.v20180420-1519/org.hamcrest.core-1.3.0.v20180420-1519.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.082.tests
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/org/eclipse/tycho/org.eclipse.tycho.surefire.osgibooter/2.3.0/org.eclipse.tycho.surefire.osgibooter-2.3.0.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/org/eclipse/tycho/org.eclipse.tycho.surefire.junit4/2.3.0/org.eclipse.tycho.surefire.junit4-2.3.0.jar
+[INFO] Executing Test Runtime with timeout 0, logs (if any) will be placed at: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work\data\.metadata\.log
+[INFO] Command line:
+	[C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, -Dosgi.noShutdown=false, -Dosgi.os=win32, -Dosgi.ws=win32, -Dosgi.arch=x86_64, -Dosgi.clean=true, -jar, C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.launcher\1.5.600.v20191014-2022\org.eclipse.equinox.launcher-1.5.600.v20191014-2022.jar, -debug, -consolelog, -data, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work\data, -install, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work, -configuration, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\work\configuration, -application, org.eclipse.tycho.surefire.osgibooter.headlesstest, -testproperties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\target\surefire.properties]
+Configuration location:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.082.tests/target/work/configuration/
+Configuration file:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.082.tests/target/work/configuration/config.ini loaded
+Install location:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.082.tests/target/work/
+Framework located:
+    file:/C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi/3.15.100.v20191114-1701/org.eclipse.osgi-3.15.100.v20191114-1701.jar
+Framework classpath:
+    file:/C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi/3.15.100.v20191114-1701/org.eclipse.osgi-3.15.100.v20191114-1701.jar
+Debug options:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.082.tests/.options not found
+Time to load bundles: 122
+Starting application: 1241
+Running org.eclipse.app4mc.amalthea.converters082.tests.NamespaceConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.132 s - in org.eclipse.app4mc.amalthea.converters082.tests.NamespaceConverterTest
+testConversion[0: Test file: /namespace/hw.amxmi](org.eclipse.app4mc.amalthea.converters082.tests.NamespaceConverterTest)  Time elapsed: 0.075 s
+verification[0: Test file: /namespace/hw.amxmi](org.eclipse.app4mc.amalthea.converters082.tests.NamespaceConverterTest)  Time elapsed: 0.003 s
+
+Results:
+
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0
+
+[INFO] All tests passed!
+[INFO] 
+[INFO] --< org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests >--
+[INFO] Building [test-bundle] APP4MC Amalthea Converters to 0.8.3 - Tests 1.1.0-SNAPSHOT [29/47]
+[INFO] ------------------------[ eclipse-test-plugin ]-------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): [compile, runtime]
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <baseDir>${project.basedir}</baseDir>
+  <execution>${mojoExecution}</execution>
+  <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
+  <format default-value="yyyyMMddHHmm"/>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id (default-validate-id)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version (default-validate-version)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <strictVersions default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources (default-resources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources default-value="${project.resources}"/>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile (default-compile)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <basedir>${basedir}</basedir>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <compilerId default-value="jdt">${maven.compiler.compilerId}</compilerId>
+  <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
+  <copyResources default-value="true"/>
+  <debug default-value="true">${maven.compiler.debug}</debug>
+  <deriveReleaseCompilerArgumentFromTargetLevel default-value="true"/>
+  <encoding>${project.build.sourceEncoding}</encoding>
+  <executable>${maven.compiler.executable}</executable>
+  <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
+  <fork default-value="false"/>
+  <generatedSourcesDirectory default-value="${project.build.directory}/generated-sources/annotations"/>
+  <logDirectory default-value="${project.build.directory}/compile-logs"/>
+  <mavenCompilerEncoding>${maven.compiler.encoding}</mavenCompilerEncoding>
+  <maxmem>${maven.compiler.maxmem}</maxmem>
+  <meminitial>${maven.compiler.meminitial}</meminitial>
+  <optimize default-value="false">${maven.compiler.optimize}</optimize>
+  <outputFileName>${project.build.finalName}</outputFileName>
+  <project>${project}</project>
+  <release>${maven.compiler.release}</release>
+  <requireJREPackageImports default-value="false"/>
+  <session>${session}</session>
+  <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
+  <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
+  <source>${maven.compiler.source}</source>
+  <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
+  <strictCompilerTarget default-value="false"/>
+  <target>${maven.compiler.target}</target>
+  <useJDK default-value="SYSTEM"/>
+  <useProjectSettings default-value="true"/>
+  <verbose default-value="false">${maven.compiler.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources (default-testResources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources>${project.testResources}</resources>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform (default-target-platform)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <finalName>${project.build.finalName}</finalName>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <strictBinIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attachP2Metadata default-value="true"/>
+  <baselineMode default-value="warn">${tycho.baseline}</baselineMode>
+  <baselineReplace default-value="all">none</baselineReplace>
+  <baselineRepositories>
+    <repository>
+      <url>https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/</url>
+    </repository>
+  </baselineRepositories>
+  <defaultP2Metadata default-value="true"/>
+  <execution>${mojoExecution}</execution>
+  <generateDownloadStatsProperty default-value="false">${tycho.generateDownloadStatsProperty}</generateDownloadStatsProperty>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test (default-test)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <argLine>${tycho.testArgLine}</argLine>
+  <debugPort>${debugPort}</debugPort>
+  <deleteOsgiDataDirectory default-value="true"/>
+  <enableAssertions default-value="false">${enableAssertions}</enableAssertions>
+  <excludedGroups>${excludedGroups}</excludedGroups>
+  <failIfNoTests default-value="true">${failIfNoTests}</failIfNoTests>
+  <forkedProcessTimeoutInSeconds>${surefire.timeout}</forkedProcessTimeoutInSeconds>
+  <groups>${groups}</groups>
+  <includes>
+    <forkMode>never</forkMode>
+    <include>**/*Test.java</include>
+    <include>**/*Tests.java</include>
+  </includes>
+  <osgiDataDirectory default-value="${project.build.directory}/work/data/"/>
+  <parallel>${parallel}</parallel>
+  <perCoreThreadCount default-value="true">${perCoreThreadCount}</perCoreThreadCount>
+  <pluginArtifacts>${plugin.artifacts}</pluginArtifacts>
+  <profileName default-value="DefaultProfile"/>
+  <project>${project}</project>
+  <redirectTestOutputToFile default-value="false">${maven.test.redirectTestOutputToFile}</redirectTestOutputToFile>
+  <reportsDirectory default-value="${project.build.directory}/surefire-reports"/>
+  <rerunFailingTestsCount default-value="0">${surefire.rerunFailingTestsCount}</rerunFailingTestsCount>
+  <runOrder default-value="filesystem"/>
+  <session>${session}</session>
+  <showEclipseLog default-value="false">${tycho.showEclipseLog}</showEclipseLog>
+  <skip>${maven.test.skip}</skip>
+  <skipAfterFailureCount default-value="0">${surefire.skipAfterFailureCount}</skipAfterFailureCount>
+  <skipExec>${maven.test.skipExec}</skipExec>
+  <skipTests>${skipTests}</skipTests>
+  <surefireProperties default-value="${project.build.directory}/surefire.properties"/>
+  <test>${test}</test>
+  <testClass>${testClass}</testClass>
+  <testClassesDirectory>${project.build.outputDirectory}</testClassesDirectory>
+  <testFailureIgnore default-value="false">${maven.test.failure.ignore}</testFailureIgnore>
+  <testRuntime default-value="default"/>
+  <threadCount>${threadCount}</threadCount>
+  <trimStackTrace default-value="true">${trimStackTrace}</trimStackTrace>
+  <useJDK default-value="SYSTEM"/>
+  <useUIHarness default-value="false"/>
+  <useUIThread default-value="true"/>
+  <useUnlimitedThreads default-value="false">${useUnlimitedThreads}</useUnlimitedThreads>
+  <work default-value="${project.build.directory}/work"/>
+</configuration>
+[DEBUG] =======================================================================
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=36600, ConflictMarker.markTime=34900, ConflictMarker.nodeCount=58, ConflictIdSorter.graphTime=13301, ConflictIdSorter.topsortTime=18499, ConflictIdSorter.conflictIdCount=21, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=119400, ConflictResolver.conflictItemCount=57, DefaultDependencyCollector.collectTime=603301, DefaultDependencyCollector.transformTime=237900}
+[DEBUG] org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:eclipse-test-plugin:1.1.0-SNAPSHOT
+[DEBUG]    p2.eclipse-plugin:javax.annotation:jar:1.2.0.v201602091430:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi:jar:3.15.100.v20191114-1701:system
+[DEBUG]    p2.eclipse-plugin:org.apache.felix.scr:jar:2.1.14.v20190123-1619:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.services:jar:3.8.0.v20190206-2147:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.util:jar:3.5.300.v20190708-1141:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.eclipse.app4mc.util.sessionlog:jar:1.1.0.202104211257:system
+[DEBUG]    p2.eclipse-plugin:org.jdom2:jar:2.0.6.v20191125-0928:system
+[DEBUG]    p2.eclipse-plugin:org.junit:jar:junit.jar:4.12.0.v201504281640:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.jaxen:jar:1.1.6.v20191106-1554:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.common:jar:3.10.600.v20191004-1420:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.runtime:jar:3.17.0.v20191122-2104:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.contenttype:jar:3.7.500.v20190916-2125:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.preferences:jar:3.7.600.v20191017-2055:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.registry:jar:3.8.600.v20191017-2055:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.jobs:jar:3.10.600.v20191122-2104:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.app:jar:1.4.300.v20190815-1535:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.launcher:jar:1.5.600.v20191014-2022:system
+[DEBUG]    p2.eclipse-plugin:org.hamcrest.core:jar:1.3.0.v20180420-1519:system
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ org.eclipse.app4mc.amalthea.converters.083.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\test-classes
+[DEBUG] -- end configuration --
+[INFO] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work\dev.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work\configuration\org.eclipse.osgi\framework.info.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-logger-api-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-booter-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-api-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\maven-surefire-common-2.22.2.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work\configuration\org.eclipse.osgi\22\0
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work\configuration\org.eclipse.osgi\22
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work\configuration\org.eclipse.osgi\10\0\.cp\junit.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work\configuration\org.eclipse.osgi\10\0\.cp
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work\configuration\org.eclipse.osgi\10\0
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work\configuration\org.eclipse.osgi\10
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTableLock
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTable.2
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTable.1
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work\configuration\org.eclipse.osgi\.manager
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work\configuration\org.eclipse.osgi
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work\configuration\org.eclipse.equinox.app\.manager\.fileTableLock
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work\configuration\org.eclipse.equinox.app\.manager
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work\configuration\org.eclipse.equinox.app
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work\configuration\org.eclipse.core.runtime\.table.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work\configuration\org.eclipse.core.runtime\.orphans.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work\configuration\org.eclipse.core.runtime\.namespaces.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTableLock
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTable.8
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTable.7
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work\configuration\org.eclipse.core.runtime\.manager
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work\configuration\org.eclipse.core.runtime\.mainData.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work\configuration\org.eclipse.core.runtime\.extraData.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work\configuration\org.eclipse.core.runtime\.contributors.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work\configuration\org.eclipse.core.runtime\.contributions.1
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work\configuration\org.eclipse.core.runtime
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work\configuration\config.ini
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work\configuration
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\surefire.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters083.tests.SwConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters083.tests.StimuliConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters083.tests.NamespaceConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters083.tests.ComponentsModelConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters083.tests.SwConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters083.tests.StimuliConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters083.tests.NamespaceConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters083.tests.ComponentsModelConverterTest.txt
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\surefire-reports
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\sourcebundle-l10n-gen\OSGI-INF\l10n\bundle-src.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\sourcebundle-l10n-gen\OSGI-INF\l10n
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\sourcebundle-l10n-gen\OSGI-INF
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\sourcebundle-l10n-gen
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\p2content.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\p2artifacts.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\org.eclipse.app4mc.amalthea.converters.083.tests-1.1.0-SNAPSHOT.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\org.eclipse.app4mc.amalthea.converters.083.tests-1.1.0-SNAPSHOT-sources.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\maven-archiver\pom.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\maven-archiver
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\MANIFEST.MF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\local-artifacts.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\generated-sources\annotations
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\generated-sources
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\classes\org\eclipse\app4mc\amalthea\converters083\tests\SwConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\classes\org\eclipse\app4mc\amalthea\converters083\tests\StimuliConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\classes\org\eclipse\app4mc\amalthea\converters083\tests\NamespaceConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\classes\org\eclipse\app4mc\amalthea\converters083\tests\ComponentsModelConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\classes\org\eclipse\app4mc\amalthea\converters083\tests\Abstract083ConverterTest.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\classes\org\eclipse\app4mc\amalthea\converters083\tests
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\classes\org\eclipse\app4mc\amalthea\converters083
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\classes\org\eclipse\app4mc\amalthea
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\classes\org\eclipse\app4mc
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\classes\org\eclipse
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\classes\org
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\classes
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\site
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier) @ org.eclipse.app4mc.amalthea.converters.083.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier' with basic configurator -->
+[DEBUG]   (f) baseDir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier {execution: default-build-qualifier}
+[DEBUG]   (s) format = yyyyMMddHHmm
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] The project's OSGi version is 1.1.0.202104220626
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-id (default-validate-id) @ org.eclipse.app4mc.amalthea.converters.083.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-version (default-validate-version) @ org.eclipse.app4mc.amalthea.converters.083.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF
+[DEBUG]   (f) strictVersions = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ org.eclipse.app4mc.amalthea.converters.083.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.083.tests.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\src\main\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\src\main\resources
+[INFO] 
+[INFO] --- tycho-compiler-plugin:2.3.0:compile (default-compile) @ org.eclipse.app4mc.amalthea.converters.083.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-compiler-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile' with basic configurator -->
+[DEBUG]   (f) basedir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target
+[DEBUG]   (f) compilerId = jdt
+[DEBUG]   (f) copyResources = true
+[DEBUG]   (f) debug = true
+[DEBUG]   (f) deriveReleaseCompilerArgumentFromTargetLevel = true
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) failOnWarning = false
+[DEBUG]   (f) fork = false
+[DEBUG]   (f) generatedSourcesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\generated-sources\annotations
+[DEBUG]   (f) logDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\compile-logs
+[DEBUG]   (f) optimize = false
+[DEBUG]   (f) outputFileName = org.eclipse.app4mc.amalthea.converters.083.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF
+[DEBUG]   (f) requireJREPackageImports = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showDeprecation = false
+[DEBUG]   (f) showWarnings = false
+[DEBUG]   (f) staleMillis = 0
+[DEBUG]   (f) strictCompilerTarget = false
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useProjectSettings = true
+[DEBUG]   (f) verbose = false
+[DEBUG] -- end configuration --
+[DEBUG] Manifest BREEs: [OSGi profile 'JavaSE-1.8' { source level: 1.8, target level: 1.8}]
+[DEBUG] Target Platform EE: OSGi profile 'JavaSE-11' { source level: 11, target level: 11}
+[DEBUG] Effective source/target: 1.8/1.8
+[DEBUG] Using compiler 'jdt'.
+[DEBUG] Source directories: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\src]
+[DEBUG] Classpath: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\classes
+ C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;+org/jdom2/output/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\classes]
+[DEBUG] Output directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\classes
+[DEBUG] Classpath:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\classes
+[DEBUG]  C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;+org/jdom2/output/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\classes
+[DEBUG] Source roots:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\src
+[INFO] Compiling 5 source files to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\classes
+[DEBUG] JDT compiler args: [-properties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.settings\org.eclipse.jdt.core.prefs, -s, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\generated-sources\annotations, -d, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\classes, -classpath, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\target\classes;C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;+org/jdom2/output/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\classes, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\src\org\eclipse\app4mc\amalthea\converters083\tests\StimuliConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\src\org\eclipse\app4mc\amalthea\converters083\tests\NamespaceConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\src\org\eclipse\app4mc\amalthea\converters083\tests\Abstract083ConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\src\org\eclipse\app4mc\amalthea\converters083\tests\SwConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\src\org\eclipse\app4mc\amalthea\converters083\tests\ComponentsModelConverterTest.java, -g, -nowarn, -target, 1.8, -source, 1.8, --release, 8, -encoding, UTF-8]
+[DEBUG] Original compiler output: 
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ org.eclipse.app4mc.amalthea.converters.083.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\test-classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\src\test\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.083.tests.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\src\test\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\src\test\resources
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ org.eclipse.app4mc.amalthea.converters.083.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.083.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\org.eclipse.app4mc.amalthea.converters.083.tests-1.1.0-SNAPSHOT-sources.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters083/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters083/tests/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters083/tests/Abstract083ConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters083/tests/ComponentsModelConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters083/tests/NamespaceConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters083/tests/StimuliConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters083/tests/SwConverterTest.java
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding directory OSGI-INF/l10n/
+[DEBUG] adding entry OSGI-INF/l10n/bundle-src.properties
+[INFO] 
+[INFO] --- target-platform-configuration:2.3.0:target-platform (default-target-platform) @ org.eclipse.app4mc.amalthea.converters.083.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform from plugin realm ClassRealm[plugin>org.eclipse.tycho:target-platform-configuration:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin) @ org.eclipse.app4mc.amalthea.converters.083.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin' with basic configurator -->
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.083.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) strictBinIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\org.eclipse.app4mc.amalthea.converters.083.tests-1.1.0-SNAPSHOT.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters083/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters083/tests/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters083/tests/Abstract083ConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters083/tests/ComponentsModelConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters083/tests/NamespaceConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters083/tests/StimuliConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters083/tests/SwConverterTest.class
+[DEBUG] adding directory META-INF/maven/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.083.tests/
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.083.tests/pom.xml
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.083.tests/pom.properties
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default) @ org.eclipse.app4mc.amalthea.converters.083.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default' with basic configurator -->
+[DEBUG]   (f) attachP2Metadata = true
+[DEBUG]   (f) baselineMode = warn
+[DEBUG]   (f) baselineReplace = none
+[DEBUG]   (f) url = https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/
+[DEBUG]   (f) baselineRepositories = [org.eclipse.tycho.plugins.p2.Repository@35007ef]
+[DEBUG]   (f) defaultP2Metadata = true
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default {execution: default-p2-metadata-default}
+[DEBUG]   (f) generateDownloadStatsProperty = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] No baseline version MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-surefire-plugin:2.3.0:test (default-test) @ org.eclipse.app4mc.amalthea.converters.083.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-surefire-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test' with basic configurator -->
+[DEBUG]   (f) deleteOsgiDataDirectory = true
+[DEBUG]   (f) enableAssertions = false
+[DEBUG]   (f) failIfNoTests = true
+[DEBUG]   (f) includes = [never, **/*Test.java, **/*Tests.java]
+[DEBUG]   (f) osgiDataDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work\data
+[DEBUG]   (f) perCoreThreadCount = true
+[DEBUG]   (f) pluginArtifacts = [org.eclipse.tycho:tycho-surefire-plugin:maven-plugin:2.3.0:, org.apache.maven:maven-plugin-api:jar:3.6.3:compile, org.apache.maven:maven-model:jar:3.6.3:compile, org.apache.maven:maven-artifact:jar:3.6.3:compile, org.apache.commons:commons-lang3:jar:3.8.1:compile, org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4:compile, org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile, org.codehaus.plexus:plexus-utils:jar:3.3.0:compile, org.apache.maven:maven-core:jar:3.6.3:compile, org.apache.maven:maven-settings:jar:3.6.3:compile, org.apache.maven:maven-settings-builder:jar:3.6.3:compile, org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile, org.sonatype.plexus:plexus-cipher:jar:1.7:compile, org.apache.maven:maven-builder-support:jar:3.6.3:compile, org.apache.maven:maven-repository-metadata:jar:3.6.3:compile, org.apache.maven:maven-model-builder:jar:3.6.3:compile, org.apache.maven:maven-resolver-provider:jar:3.6.3:compile, org.slf4j:slf4j-api:jar:1.7.29:compile, org.apache.maven.resolver:maven-resolver-impl:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-api:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-spi:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-util:jar:1.4.1:compile, org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile, commons-io:commons-io:jar:2.5:compile, com.google.inject:guice:jar:no_aop:4.2.1:compile, aopalliance:aopalliance:jar:1.0:compile, com.google.guava:guava:jar:25.1-android:compile, com.google.code.findbugs:jsr305:jar:3.0.2:compile, org.checkerframework:checker-compat-qual:jar:2.0.0:compile, com.google.errorprone:error_prone_annotations:jar:2.1.3:compile, com.google.j2objc:j2objc-annotations:jar:1.1:compile, org.codehaus.mojo:animal-sniffer-annotations:jar:1.14:compile, javax.inject:javax.inject:jar:1:compile, org.codehaus.plexus:plexus-archiver:jar:4.2.2:compile, org.codehaus.plexus:plexus-io:jar:3.2.0:compile, org.apache.commons:commons-compress:jar:1.20:compile, org.iq80.snappy:snappy:jar:0.4:compile, org.tukaani:xz:jar:1.8:runtime, org.eclipse.platform:org.eclipse.osgi:jar:3.16.200:compile, org.apache.maven:maven-compat:jar:3.6.3:compile, org.codehaus.plexus:plexus-interpolation:jar:1.25:compile, org.apache.maven.wagon:wagon-provider-api:jar:3.3.4:compile, org.eclipse.tycho:sisu-equinox-launching:jar:2.3.0:compile, org.apache.commons:commons-exec:jar:1.3:compile, org.eclipse.tycho:org.eclipse.tycho.surefire.osgibooter:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit4:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit47:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit5:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit54:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit55:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit56:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit57:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.testng:jar:2.3.0:runtime, org.apache.maven.surefire:surefire-api:jar:2.22.2:compile, org.apache.maven.surefire:surefire-logger-api:jar:2.22.2:compile, org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile, org.apache.maven.surefire:maven-surefire-common:jar:2.22.2:compile, org.apache.maven.surefire:surefire-booter:jar:2.22.2:compile, org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile, org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile, classworlds:classworlds:jar:1.1-alpha-2:compile, org.apache.maven:maven-project:jar:2.2.1:compile, org.apache.maven:maven-profile:jar:2.2.1:compile, org.apache.maven:maven-artifact-manager:jar:2.2.1:compile, backport-util-concurrent:backport-util-concurrent:jar:3.1:compile, org.apache.maven:maven-plugin-registry:jar:2.2.1:compile, org.apache.maven:maven-toolchain:jar:2.2.1:compile, org.codehaus.plexus:plexus-java:jar:0.9.10:compile, org.ow2.asm:asm:jar:6.2:compile, com.thoughtworks.qdox:qdox:jar:2.0-M8:compile]
+[DEBUG]   (f) profileName = DefaultProfile
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF
+[DEBUG]   (f) redirectTestOutputToFile = false
+[DEBUG]   (f) reportsDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\surefire-reports
+[DEBUG]   (f) rerunFailingTestsCount = 0
+[DEBUG]   (f) runOrder = filesystem
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showEclipseLog = false
+[DEBUG]   (f) skipAfterFailureCount = 0
+[DEBUG]   (f) surefireProperties = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\surefire.properties
+[DEBUG]   (f) testClassesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\classes
+[DEBUG]   (f) testFailureIgnore = false
+[DEBUG]   (f) testRuntime = default
+[DEBUG]   (f) trimStackTrace = true
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useUIHarness = false
+[DEBUG]   (f) useUIThread = true
+[DEBUG]   (f) useUnlimitedThreads = false
+[DEBUG]   (f) work = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work
+[DEBUG] -- end configuration --
+[DEBUG] Using test framework provider org.eclipse.tycho.surefire.provider.impl.JUnit4Provider
+[DEBUG] Installation OSGI bundles:
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/javax.annotation/1.2.0.v201602091430/javax.annotation-1.2.0.v201602091430.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.apache.felix.scr/2.1.14.v20190123-1619/org.apache.felix.scr-2.1.14.v20190123-1619.jar@1:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi.services/3.8.0.v20190206-2147/org.eclipse.osgi.services-3.8.0.v20190206-2147.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi.util/3.5.300.v20190708-1141/org.eclipse.osgi.util-3.5.300.v20190708-1141.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.083/target/org.eclipse.app4mc.amalthea.converters.083-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.common/target/org.eclipse.app4mc.amalthea.converters.common-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.app4mc.util.sessionlog/1.1.0.202104211257/org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.jdom2/2.0.6.v20191125-0928/org.jdom2-2.0.6.v20191125-0928.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.083.tests
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.junit/4.12.0.v201504281640/org.junit-4.12.0.v201504281640.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.common.tests/target/org.eclipse.app4mc.amalthea.converters.common.tests-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.jaxen/1.1.6.v20191106-1554/org.jaxen-1.1.6.v20191106-1554.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.common/3.10.600.v20191004-1420/org.eclipse.equinox.common-3.10.600.v20191004-1420.jar@2:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.runtime/3.17.0.v20191122-2104/org.eclipse.core.runtime-3.17.0.v20191122-2104.jar@4:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.contenttype/3.7.500.v20190916-2125/org.eclipse.core.contenttype-3.7.500.v20190916-2125.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.preferences/3.7.600.v20191017-2055/org.eclipse.equinox.preferences-3.7.600.v20191017-2055.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.registry/3.8.600.v20191017-2055/org.eclipse.equinox.registry-3.8.600.v20191017-2055.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.jobs/3.10.600.v20191122-2104/org.eclipse.core.jobs-3.10.600.v20191122-2104.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.app/1.4.300.v20190815-1535/org.eclipse.equinox.app-1.4.300.v20190815-1535.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.launcher/1.5.600.v20191014-2022/org.eclipse.equinox.launcher-1.5.600.v20191014-2022.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.hamcrest.core/1.3.0.v20180420-1519/org.hamcrest.core-1.3.0.v20180420-1519.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.083.tests
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/org/eclipse/tycho/org.eclipse.tycho.surefire.osgibooter/2.3.0/org.eclipse.tycho.surefire.osgibooter-2.3.0.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/org/eclipse/tycho/org.eclipse.tycho.surefire.junit4/2.3.0/org.eclipse.tycho.surefire.junit4-2.3.0.jar
+[INFO] Executing Test Runtime with timeout 0, logs (if any) will be placed at: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work\data\.metadata\.log
+[INFO] Command line:
+	[C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, -Dosgi.noShutdown=false, -Dosgi.os=win32, -Dosgi.ws=win32, -Dosgi.arch=x86_64, -Dosgi.clean=true, -jar, C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.launcher\1.5.600.v20191014-2022\org.eclipse.equinox.launcher-1.5.600.v20191014-2022.jar, -debug, -consolelog, -data, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work\data, -install, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work, -configuration, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\work\configuration, -application, org.eclipse.tycho.surefire.osgibooter.headlesstest, -testproperties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\target\surefire.properties]
+Configuration location:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.083.tests/target/work/configuration/
+Configuration file:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.083.tests/target/work/configuration/config.ini loaded
+Install location:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.083.tests/target/work/
+Framework located:
+    file:/C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi/3.15.100.v20191114-1701/org.eclipse.osgi-3.15.100.v20191114-1701.jar
+Framework classpath:
+    file:/C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi/3.15.100.v20191114-1701/org.eclipse.osgi-3.15.100.v20191114-1701.jar
+Debug options:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.083.tests/.options not found
+Time to load bundles: 117
+Starting application: 1297
+Running org.eclipse.app4mc.amalthea.converters083.tests.ComponentsModelConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.247 s - in org.eclipse.app4mc.amalthea.converters083.tests.ComponentsModelConverterTest
+testConversion[0: Test file: /componentModel/model.amxmi](org.eclipse.app4mc.amalthea.converters083.tests.ComponentsModelConverterTest)  Time elapsed: 0.156 s
+verification[0: Test file: /componentModel/model.amxmi](org.eclipse.app4mc.amalthea.converters083.tests.ComponentsModelConverterTest)  Time elapsed: 0.032 s
+Running org.eclipse.app4mc.amalthea.converters083.tests.NamespaceConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012 s - in org.eclipse.app4mc.amalthea.converters083.tests.NamespaceConverterTest
+testConversion[0: Test file: /namespace/hw.amxmi](org.eclipse.app4mc.amalthea.converters083.tests.NamespaceConverterTest)  Time elapsed: 0.007 s
+verification[0: Test file: /namespace/hw.amxmi](org.eclipse.app4mc.amalthea.converters083.tests.NamespaceConverterTest)  Time elapsed: 0.003 s
+Running org.eclipse.app4mc.amalthea.converters083.tests.StimuliConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.037 s - in org.eclipse.app4mc.amalthea.converters083.tests.StimuliConverterTest
+testConversion[0: Test file: /stimuli/model.amxmi](org.eclipse.app4mc.amalthea.converters083.tests.StimuliConverterTest)  Time elapsed: 0.026 s
+verification[0: Test file: /stimuli/model.amxmi](org.eclipse.app4mc.amalthea.converters083.tests.StimuliConverterTest)  Time elapsed: 0.007 s
+Running org.eclipse.app4mc.amalthea.converters083.tests.SwConverterTest
+Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.109 s - in org.eclipse.app4mc.amalthea.converters083.tests.SwConverterTest
+testConversion[0: Test file: /sw/model.amxmi](org.eclipse.app4mc.amalthea.converters083.tests.SwConverterTest)  Time elapsed: 0.036 s
+verification[0: Test file: /sw/model.amxmi](org.eclipse.app4mc.amalthea.converters083.tests.SwConverterTest)  Time elapsed: 0.024 s
+testConversion[1: Test file: /sw/model_ports.amxmi](org.eclipse.app4mc.amalthea.converters083.tests.SwConverterTest)  Time elapsed: 0.026 s
+verification[1: Test file: /sw/model_ports.amxmi](org.eclipse.app4mc.amalthea.converters083.tests.SwConverterTest)  Time elapsed: 0.021 s
+
+Results:
+
+Tests run: 10, Failures: 0, Errors: 0, Skipped: 0
+
+[INFO] All tests passed!
+[INFO] 
+[INFO] --< org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests >--
+[INFO] Building [test-bundle] APP4MC Amalthea Converters to 0.9.0 - Tests 1.1.0-SNAPSHOT [30/47]
+[INFO] ------------------------[ eclipse-test-plugin ]-------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): [compile, runtime]
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <baseDir>${project.basedir}</baseDir>
+  <execution>${mojoExecution}</execution>
+  <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
+  <format default-value="yyyyMMddHHmm"/>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id (default-validate-id)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version (default-validate-version)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <strictVersions default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources (default-resources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources default-value="${project.resources}"/>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile (default-compile)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <basedir>${basedir}</basedir>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <compilerId default-value="jdt">${maven.compiler.compilerId}</compilerId>
+  <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
+  <copyResources default-value="true"/>
+  <debug default-value="true">${maven.compiler.debug}</debug>
+  <deriveReleaseCompilerArgumentFromTargetLevel default-value="true"/>
+  <encoding>${project.build.sourceEncoding}</encoding>
+  <executable>${maven.compiler.executable}</executable>
+  <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
+  <fork default-value="false"/>
+  <generatedSourcesDirectory default-value="${project.build.directory}/generated-sources/annotations"/>
+  <logDirectory default-value="${project.build.directory}/compile-logs"/>
+  <mavenCompilerEncoding>${maven.compiler.encoding}</mavenCompilerEncoding>
+  <maxmem>${maven.compiler.maxmem}</maxmem>
+  <meminitial>${maven.compiler.meminitial}</meminitial>
+  <optimize default-value="false">${maven.compiler.optimize}</optimize>
+  <outputFileName>${project.build.finalName}</outputFileName>
+  <project>${project}</project>
+  <release>${maven.compiler.release}</release>
+  <requireJREPackageImports default-value="false"/>
+  <session>${session}</session>
+  <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
+  <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
+  <source>${maven.compiler.source}</source>
+  <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
+  <strictCompilerTarget default-value="false"/>
+  <target>${maven.compiler.target}</target>
+  <useJDK default-value="SYSTEM"/>
+  <useProjectSettings default-value="true"/>
+  <verbose default-value="false">${maven.compiler.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources (default-testResources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources>${project.testResources}</resources>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform (default-target-platform)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <finalName>${project.build.finalName}</finalName>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <strictBinIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attachP2Metadata default-value="true"/>
+  <baselineMode default-value="warn">${tycho.baseline}</baselineMode>
+  <baselineReplace default-value="all">none</baselineReplace>
+  <baselineRepositories>
+    <repository>
+      <url>https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/</url>
+    </repository>
+  </baselineRepositories>
+  <defaultP2Metadata default-value="true"/>
+  <execution>${mojoExecution}</execution>
+  <generateDownloadStatsProperty default-value="false">${tycho.generateDownloadStatsProperty}</generateDownloadStatsProperty>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test (default-test)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <argLine>${tycho.testArgLine}</argLine>
+  <debugPort>${debugPort}</debugPort>
+  <deleteOsgiDataDirectory default-value="true"/>
+  <enableAssertions default-value="false">${enableAssertions}</enableAssertions>
+  <excludedGroups>${excludedGroups}</excludedGroups>
+  <failIfNoTests default-value="true">${failIfNoTests}</failIfNoTests>
+  <forkedProcessTimeoutInSeconds>${surefire.timeout}</forkedProcessTimeoutInSeconds>
+  <groups>${groups}</groups>
+  <includes>
+    <forkMode>never</forkMode>
+    <include>**/*Test.java</include>
+    <include>**/*Tests.java</include>
+  </includes>
+  <osgiDataDirectory default-value="${project.build.directory}/work/data/"/>
+  <parallel>${parallel}</parallel>
+  <perCoreThreadCount default-value="true">${perCoreThreadCount}</perCoreThreadCount>
+  <pluginArtifacts>${plugin.artifacts}</pluginArtifacts>
+  <profileName default-value="DefaultProfile"/>
+  <project>${project}</project>
+  <redirectTestOutputToFile default-value="false">${maven.test.redirectTestOutputToFile}</redirectTestOutputToFile>
+  <reportsDirectory default-value="${project.build.directory}/surefire-reports"/>
+  <rerunFailingTestsCount default-value="0">${surefire.rerunFailingTestsCount}</rerunFailingTestsCount>
+  <runOrder default-value="filesystem"/>
+  <session>${session}</session>
+  <showEclipseLog default-value="false">${tycho.showEclipseLog}</showEclipseLog>
+  <skip>${maven.test.skip}</skip>
+  <skipAfterFailureCount default-value="0">${surefire.skipAfterFailureCount}</skipAfterFailureCount>
+  <skipExec>${maven.test.skipExec}</skipExec>
+  <skipTests>${skipTests}</skipTests>
+  <surefireProperties default-value="${project.build.directory}/surefire.properties"/>
+  <test>${test}</test>
+  <testClass>${testClass}</testClass>
+  <testClassesDirectory>${project.build.outputDirectory}</testClassesDirectory>
+  <testFailureIgnore default-value="false">${maven.test.failure.ignore}</testFailureIgnore>
+  <testRuntime default-value="default"/>
+  <threadCount>${threadCount}</threadCount>
+  <trimStackTrace default-value="true">${trimStackTrace}</trimStackTrace>
+  <useJDK default-value="SYSTEM"/>
+  <useUIHarness default-value="false"/>
+  <useUIThread default-value="true"/>
+  <useUnlimitedThreads default-value="false">${useUnlimitedThreads}</useUnlimitedThreads>
+  <work default-value="${project.build.directory}/work"/>
+</configuration>
+[DEBUG] =======================================================================
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=33501, ConflictMarker.markTime=25100, ConflictMarker.nodeCount=58, ConflictIdSorter.graphTime=14800, ConflictIdSorter.topsortTime=14899, ConflictIdSorter.conflictIdCount=21, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=120000, ConflictResolver.conflictItemCount=57, DefaultDependencyCollector.collectTime=638700, DefaultDependencyCollector.transformTime=224600}
+[DEBUG] org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:eclipse-test-plugin:1.1.0-SNAPSHOT
+[DEBUG]    p2.eclipse-plugin:javax.annotation:jar:1.2.0.v201602091430:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi:jar:3.15.100.v20191114-1701:system
+[DEBUG]    p2.eclipse-plugin:org.apache.felix.scr:jar:2.1.14.v20190123-1619:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.services:jar:3.8.0.v20190206-2147:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.util:jar:3.5.300.v20190708-1141:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.eclipse.app4mc.util.sessionlog:jar:1.1.0.202104211257:system
+[DEBUG]    p2.eclipse-plugin:org.jdom2:jar:2.0.6.v20191125-0928:system
+[DEBUG]    p2.eclipse-plugin:org.junit:jar:junit.jar:4.12.0.v201504281640:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.jaxen:jar:1.1.6.v20191106-1554:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.common:jar:3.10.600.v20191004-1420:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.runtime:jar:3.17.0.v20191122-2104:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.contenttype:jar:3.7.500.v20190916-2125:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.preferences:jar:3.7.600.v20191017-2055:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.registry:jar:3.8.600.v20191017-2055:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.jobs:jar:3.10.600.v20191122-2104:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.app:jar:1.4.300.v20190815-1535:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.launcher:jar:1.5.600.v20191014-2022:system
+[DEBUG]    p2.eclipse-plugin:org.hamcrest.core:jar:1.3.0.v20180420-1519:system
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ org.eclipse.app4mc.amalthea.converters.090.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\test-classes
+[DEBUG] -- end configuration --
+[INFO] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work\dev.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work\configuration\org.eclipse.osgi\framework.info.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-logger-api-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-booter-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-api-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\maven-surefire-common-2.22.2.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work\configuration\org.eclipse.osgi\22\0
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work\configuration\org.eclipse.osgi\22
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work\configuration\org.eclipse.osgi\10\0\.cp\junit.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work\configuration\org.eclipse.osgi\10\0\.cp
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work\configuration\org.eclipse.osgi\10\0
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work\configuration\org.eclipse.osgi\10
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTableLock
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTable.2
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTable.1
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work\configuration\org.eclipse.osgi\.manager
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work\configuration\org.eclipse.osgi
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work\configuration\org.eclipse.equinox.app\.manager\.fileTableLock
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work\configuration\org.eclipse.equinox.app\.manager
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work\configuration\org.eclipse.equinox.app
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work\configuration\org.eclipse.core.runtime\.table.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work\configuration\org.eclipse.core.runtime\.orphans.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work\configuration\org.eclipse.core.runtime\.namespaces.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTableLock
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTable.8
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTable.7
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work\configuration\org.eclipse.core.runtime\.manager
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work\configuration\org.eclipse.core.runtime\.mainData.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work\configuration\org.eclipse.core.runtime\.extraData.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work\configuration\org.eclipse.core.runtime\.contributors.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work\configuration\org.eclipse.core.runtime\.contributions.1
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work\configuration\org.eclipse.core.runtime
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work\configuration\config.ini
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work\configuration
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\surefire.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters090.tests.NamespaceConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters090.tests.HWReferencesConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters090.tests.HWConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters090.tests.NamespaceConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters090.tests.HWReferencesConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters090.tests.HWConverterTest.txt
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\surefire-reports
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\sourcebundle-l10n-gen\OSGI-INF\l10n\bundle-src.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\sourcebundle-l10n-gen\OSGI-INF\l10n
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\sourcebundle-l10n-gen\OSGI-INF
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\sourcebundle-l10n-gen
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\p2content.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\p2artifacts.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\org.eclipse.app4mc.amalthea.converters.090.tests-1.1.0-SNAPSHOT.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\org.eclipse.app4mc.amalthea.converters.090.tests-1.1.0-SNAPSHOT-sources.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\maven-archiver\pom.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\maven-archiver
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\MANIFEST.MF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\local-artifacts.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\generated-sources\annotations
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\generated-sources
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\classes\org\eclipse\app4mc\amalthea\converters090\tests\NamespaceConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\classes\org\eclipse\app4mc\amalthea\converters090\tests\HWReferencesConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\classes\org\eclipse\app4mc\amalthea\converters090\tests\HWConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\classes\org\eclipse\app4mc\amalthea\converters090\tests\Abstract090ConverterTest.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\classes\org\eclipse\app4mc\amalthea\converters090\tests
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\classes\org\eclipse\app4mc\amalthea\converters090
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\classes\org\eclipse\app4mc\amalthea
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\classes\org\eclipse\app4mc
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\classes\org\eclipse
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\classes\org
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\classes
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\site
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier) @ org.eclipse.app4mc.amalthea.converters.090.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier' with basic configurator -->
+[DEBUG]   (f) baseDir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier {execution: default-build-qualifier}
+[DEBUG]   (s) format = yyyyMMddHHmm
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] The project's OSGi version is 1.1.0.202104220626
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-id (default-validate-id) @ org.eclipse.app4mc.amalthea.converters.090.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-version (default-validate-version) @ org.eclipse.app4mc.amalthea.converters.090.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF
+[DEBUG]   (f) strictVersions = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ org.eclipse.app4mc.amalthea.converters.090.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.090.tests.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\src\main\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\src\main\resources
+[INFO] 
+[INFO] --- tycho-compiler-plugin:2.3.0:compile (default-compile) @ org.eclipse.app4mc.amalthea.converters.090.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-compiler-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile' with basic configurator -->
+[DEBUG]   (f) basedir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target
+[DEBUG]   (f) compilerId = jdt
+[DEBUG]   (f) copyResources = true
+[DEBUG]   (f) debug = true
+[DEBUG]   (f) deriveReleaseCompilerArgumentFromTargetLevel = true
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) failOnWarning = false
+[DEBUG]   (f) fork = false
+[DEBUG]   (f) generatedSourcesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\generated-sources\annotations
+[DEBUG]   (f) logDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\compile-logs
+[DEBUG]   (f) optimize = false
+[DEBUG]   (f) outputFileName = org.eclipse.app4mc.amalthea.converters.090.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF
+[DEBUG]   (f) requireJREPackageImports = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showDeprecation = false
+[DEBUG]   (f) showWarnings = false
+[DEBUG]   (f) staleMillis = 0
+[DEBUG]   (f) strictCompilerTarget = false
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useProjectSettings = true
+[DEBUG]   (f) verbose = false
+[DEBUG] -- end configuration --
+[DEBUG] Manifest BREEs: [OSGi profile 'JavaSE-1.8' { source level: 1.8, target level: 1.8}]
+[DEBUG] Target Platform EE: OSGi profile 'JavaSE-11' { source level: 11, target level: 11}
+[DEBUG] Effective source/target: 1.8/1.8
+[DEBUG] Using compiler 'jdt'.
+[DEBUG] Source directories: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\src]
+[DEBUG] Classpath: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\classes
+ C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\classes]
+[DEBUG] Output directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\classes
+[DEBUG] Classpath:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\classes
+[DEBUG]  C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\classes
+[DEBUG] Source roots:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\src
+[INFO] Compiling 4 source files to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\classes
+[DEBUG] JDT compiler args: [-properties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.settings\org.eclipse.jdt.core.prefs, -s, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\generated-sources\annotations, -d, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\classes, -classpath, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\target\classes;C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\classes, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\src\org\eclipse\app4mc\amalthea\converters090\tests\Abstract090ConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\src\org\eclipse\app4mc\amalthea\converters090\tests\NamespaceConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\src\org\eclipse\app4mc\amalthea\converters090\tests\HWConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\src\org\eclipse\app4mc\amalthea\converters090\tests\HWReferencesConverterTest.java, -g, -nowarn, -target, 1.8, -source, 1.8, --release, 8, -encoding, UTF-8]
+[DEBUG] Original compiler output: 
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ org.eclipse.app4mc.amalthea.converters.090.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\test-classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\src\test\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.090.tests.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\src\test\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\src\test\resources
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ org.eclipse.app4mc.amalthea.converters.090.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.090.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\org.eclipse.app4mc.amalthea.converters.090.tests-1.1.0-SNAPSHOT-sources.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters090/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters090/tests/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters090/tests/Abstract090ConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters090/tests/HWConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters090/tests/HWReferencesConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters090/tests/NamespaceConverterTest.java
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding directory OSGI-INF/l10n/
+[DEBUG] adding entry OSGI-INF/l10n/bundle-src.properties
+[INFO] 
+[INFO] --- target-platform-configuration:2.3.0:target-platform (default-target-platform) @ org.eclipse.app4mc.amalthea.converters.090.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform from plugin realm ClassRealm[plugin>org.eclipse.tycho:target-platform-configuration:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin) @ org.eclipse.app4mc.amalthea.converters.090.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin' with basic configurator -->
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.090.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) strictBinIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\org.eclipse.app4mc.amalthea.converters.090.tests-1.1.0-SNAPSHOT.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters090/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters090/tests/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters090/tests/Abstract090ConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters090/tests/HWConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters090/tests/HWReferencesConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters090/tests/NamespaceConverterTest.class
+[DEBUG] adding directory META-INF/maven/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.090.tests/
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.090.tests/pom.xml
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.090.tests/pom.properties
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default) @ org.eclipse.app4mc.amalthea.converters.090.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default' with basic configurator -->
+[DEBUG]   (f) attachP2Metadata = true
+[DEBUG]   (f) baselineMode = warn
+[DEBUG]   (f) baselineReplace = none
+[DEBUG]   (f) url = https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/
+[DEBUG]   (f) baselineRepositories = [org.eclipse.tycho.plugins.p2.Repository@5587af1]
+[DEBUG]   (f) defaultP2Metadata = true
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default {execution: default-p2-metadata-default}
+[DEBUG]   (f) generateDownloadStatsProperty = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] No baseline version MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-surefire-plugin:2.3.0:test (default-test) @ org.eclipse.app4mc.amalthea.converters.090.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-surefire-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test' with basic configurator -->
+[DEBUG]   (f) deleteOsgiDataDirectory = true
+[DEBUG]   (f) enableAssertions = false
+[DEBUG]   (f) failIfNoTests = true
+[DEBUG]   (f) includes = [never, **/*Test.java, **/*Tests.java]
+[DEBUG]   (f) osgiDataDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work\data
+[DEBUG]   (f) perCoreThreadCount = true
+[DEBUG]   (f) pluginArtifacts = [org.eclipse.tycho:tycho-surefire-plugin:maven-plugin:2.3.0:, org.apache.maven:maven-plugin-api:jar:3.6.3:compile, org.apache.maven:maven-model:jar:3.6.3:compile, org.apache.maven:maven-artifact:jar:3.6.3:compile, org.apache.commons:commons-lang3:jar:3.8.1:compile, org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4:compile, org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile, org.codehaus.plexus:plexus-utils:jar:3.3.0:compile, org.apache.maven:maven-core:jar:3.6.3:compile, org.apache.maven:maven-settings:jar:3.6.3:compile, org.apache.maven:maven-settings-builder:jar:3.6.3:compile, org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile, org.sonatype.plexus:plexus-cipher:jar:1.7:compile, org.apache.maven:maven-builder-support:jar:3.6.3:compile, org.apache.maven:maven-repository-metadata:jar:3.6.3:compile, org.apache.maven:maven-model-builder:jar:3.6.3:compile, org.apache.maven:maven-resolver-provider:jar:3.6.3:compile, org.slf4j:slf4j-api:jar:1.7.29:compile, org.apache.maven.resolver:maven-resolver-impl:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-api:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-spi:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-util:jar:1.4.1:compile, org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile, commons-io:commons-io:jar:2.5:compile, com.google.inject:guice:jar:no_aop:4.2.1:compile, aopalliance:aopalliance:jar:1.0:compile, com.google.guava:guava:jar:25.1-android:compile, com.google.code.findbugs:jsr305:jar:3.0.2:compile, org.checkerframework:checker-compat-qual:jar:2.0.0:compile, com.google.errorprone:error_prone_annotations:jar:2.1.3:compile, com.google.j2objc:j2objc-annotations:jar:1.1:compile, org.codehaus.mojo:animal-sniffer-annotations:jar:1.14:compile, javax.inject:javax.inject:jar:1:compile, org.codehaus.plexus:plexus-archiver:jar:4.2.2:compile, org.codehaus.plexus:plexus-io:jar:3.2.0:compile, org.apache.commons:commons-compress:jar:1.20:compile, org.iq80.snappy:snappy:jar:0.4:compile, org.tukaani:xz:jar:1.8:runtime, org.eclipse.platform:org.eclipse.osgi:jar:3.16.200:compile, org.apache.maven:maven-compat:jar:3.6.3:compile, org.codehaus.plexus:plexus-interpolation:jar:1.25:compile, org.apache.maven.wagon:wagon-provider-api:jar:3.3.4:compile, org.eclipse.tycho:sisu-equinox-launching:jar:2.3.0:compile, org.apache.commons:commons-exec:jar:1.3:compile, org.eclipse.tycho:org.eclipse.tycho.surefire.osgibooter:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit4:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit47:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit5:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit54:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit55:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit56:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit57:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.testng:jar:2.3.0:runtime, org.apache.maven.surefire:surefire-api:jar:2.22.2:compile, org.apache.maven.surefire:surefire-logger-api:jar:2.22.2:compile, org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile, org.apache.maven.surefire:maven-surefire-common:jar:2.22.2:compile, org.apache.maven.surefire:surefire-booter:jar:2.22.2:compile, org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile, org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile, classworlds:classworlds:jar:1.1-alpha-2:compile, org.apache.maven:maven-project:jar:2.2.1:compile, org.apache.maven:maven-profile:jar:2.2.1:compile, org.apache.maven:maven-artifact-manager:jar:2.2.1:compile, backport-util-concurrent:backport-util-concurrent:jar:3.1:compile, org.apache.maven:maven-plugin-registry:jar:2.2.1:compile, org.apache.maven:maven-toolchain:jar:2.2.1:compile, org.codehaus.plexus:plexus-java:jar:0.9.10:compile, org.ow2.asm:asm:jar:6.2:compile, com.thoughtworks.qdox:qdox:jar:2.0-M8:compile]
+[DEBUG]   (f) profileName = DefaultProfile
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF
+[DEBUG]   (f) redirectTestOutputToFile = false
+[DEBUG]   (f) reportsDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\surefire-reports
+[DEBUG]   (f) rerunFailingTestsCount = 0
+[DEBUG]   (f) runOrder = filesystem
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showEclipseLog = false
+[DEBUG]   (f) skipAfterFailureCount = 0
+[DEBUG]   (f) surefireProperties = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\surefire.properties
+[DEBUG]   (f) testClassesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\classes
+[DEBUG]   (f) testFailureIgnore = false
+[DEBUG]   (f) testRuntime = default
+[DEBUG]   (f) trimStackTrace = true
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useUIHarness = false
+[DEBUG]   (f) useUIThread = true
+[DEBUG]   (f) useUnlimitedThreads = false
+[DEBUG]   (f) work = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work
+[DEBUG] -- end configuration --
+[DEBUG] Using test framework provider org.eclipse.tycho.surefire.provider.impl.JUnit4Provider
+[DEBUG] Installation OSGI bundles:
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/javax.annotation/1.2.0.v201602091430/javax.annotation-1.2.0.v201602091430.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.apache.felix.scr/2.1.14.v20190123-1619/org.apache.felix.scr-2.1.14.v20190123-1619.jar@1:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi.services/3.8.0.v20190206-2147/org.eclipse.osgi.services-3.8.0.v20190206-2147.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi.util/3.5.300.v20190708-1141/org.eclipse.osgi.util-3.5.300.v20190708-1141.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.090/target/org.eclipse.app4mc.amalthea.converters.090-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.common/target/org.eclipse.app4mc.amalthea.converters.common-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.app4mc.util.sessionlog/1.1.0.202104211257/org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.jdom2/2.0.6.v20191125-0928/org.jdom2-2.0.6.v20191125-0928.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.090.tests
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.junit/4.12.0.v201504281640/org.junit-4.12.0.v201504281640.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.common.tests/target/org.eclipse.app4mc.amalthea.converters.common.tests-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.jaxen/1.1.6.v20191106-1554/org.jaxen-1.1.6.v20191106-1554.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.common/3.10.600.v20191004-1420/org.eclipse.equinox.common-3.10.600.v20191004-1420.jar@2:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.runtime/3.17.0.v20191122-2104/org.eclipse.core.runtime-3.17.0.v20191122-2104.jar@4:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.contenttype/3.7.500.v20190916-2125/org.eclipse.core.contenttype-3.7.500.v20190916-2125.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.preferences/3.7.600.v20191017-2055/org.eclipse.equinox.preferences-3.7.600.v20191017-2055.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.registry/3.8.600.v20191017-2055/org.eclipse.equinox.registry-3.8.600.v20191017-2055.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.jobs/3.10.600.v20191122-2104/org.eclipse.core.jobs-3.10.600.v20191122-2104.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.app/1.4.300.v20190815-1535/org.eclipse.equinox.app-1.4.300.v20190815-1535.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.launcher/1.5.600.v20191014-2022/org.eclipse.equinox.launcher-1.5.600.v20191014-2022.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.hamcrest.core/1.3.0.v20180420-1519/org.hamcrest.core-1.3.0.v20180420-1519.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.090.tests
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/org/eclipse/tycho/org.eclipse.tycho.surefire.osgibooter/2.3.0/org.eclipse.tycho.surefire.osgibooter-2.3.0.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/org/eclipse/tycho/org.eclipse.tycho.surefire.junit4/2.3.0/org.eclipse.tycho.surefire.junit4-2.3.0.jar
+[INFO] Executing Test Runtime with timeout 0, logs (if any) will be placed at: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work\data\.metadata\.log
+[INFO] Command line:
+	[C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, -Dosgi.noShutdown=false, -Dosgi.os=win32, -Dosgi.ws=win32, -Dosgi.arch=x86_64, -Dosgi.clean=true, -jar, C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.launcher\1.5.600.v20191014-2022\org.eclipse.equinox.launcher-1.5.600.v20191014-2022.jar, -debug, -consolelog, -data, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work\data, -install, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work, -configuration, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\work\configuration, -application, org.eclipse.tycho.surefire.osgibooter.headlesstest, -testproperties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\target\surefire.properties]
+Configuration location:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.090.tests/target/work/configuration/
+Configuration file:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.090.tests/target/work/configuration/config.ini loaded
+Install location:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.090.tests/target/work/
+Framework located:
+    file:/C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi/3.15.100.v20191114-1701/org.eclipse.osgi-3.15.100.v20191114-1701.jar
+Framework classpath:
+    file:/C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi/3.15.100.v20191114-1701/org.eclipse.osgi-3.15.100.v20191114-1701.jar
+Debug options:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.090.tests/.options not found
+Time to load bundles: 122
+Starting application: 1270
+Running org.eclipse.app4mc.amalthea.converters090.tests.HWConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.194 s - in org.eclipse.app4mc.amalthea.converters090.tests.HWConverterTest
+testConversion[0: Test file: /hw/hwMigrationExample.amxmi](org.eclipse.app4mc.amalthea.converters090.tests.HWConverterTest)  Time elapsed: 0.122 s
+verification[0: Test file: /hw/hwMigrationExample.amxmi](org.eclipse.app4mc.amalthea.converters090.tests.HWConverterTest)  Time elapsed: 0.01 s
+Running org.eclipse.app4mc.amalthea.converters090.tests.HWReferencesConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.024 s - in org.eclipse.app4mc.amalthea.converters090.tests.HWReferencesConverterTest
+testConversion[0: Test file: /hw_references/refsModel.amxmi](org.eclipse.app4mc.amalthea.converters090.tests.HWReferencesConverterTest)  Time elapsed: 0.016 s
+verification[0: Test file: /hw_references/refsModel.amxmi](org.eclipse.app4mc.amalthea.converters090.tests.HWReferencesConverterTest)  Time elapsed: 0.005 s
+Running org.eclipse.app4mc.amalthea.converters090.tests.NamespaceConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01 s - in org.eclipse.app4mc.amalthea.converters090.tests.NamespaceConverterTest
+testConversion[0: Test file: /namespace/model.amxmi](org.eclipse.app4mc.amalthea.converters090.tests.NamespaceConverterTest)  Time elapsed: 0.006 s
+verification[0: Test file: /namespace/model.amxmi](org.eclipse.app4mc.amalthea.converters090.tests.NamespaceConverterTest)  Time elapsed: 0.003 s
+
+Results:
+
+Tests run: 6, Failures: 0, Errors: 0, Skipped: 0
+
+[INFO] All tests passed!
+[INFO] 
+[INFO] --< org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests >--
+[INFO] Building [test-bundle] APP4MC Amalthea Converters to 0.9.1 - Tests 1.1.0-SNAPSHOT [31/47]
+[INFO] ------------------------[ eclipse-test-plugin ]-------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): [compile, runtime]
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <baseDir>${project.basedir}</baseDir>
+  <execution>${mojoExecution}</execution>
+  <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
+  <format default-value="yyyyMMddHHmm"/>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id (default-validate-id)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version (default-validate-version)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <strictVersions default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources (default-resources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources default-value="${project.resources}"/>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile (default-compile)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <basedir>${basedir}</basedir>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <compilerId default-value="jdt">${maven.compiler.compilerId}</compilerId>
+  <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
+  <copyResources default-value="true"/>
+  <debug default-value="true">${maven.compiler.debug}</debug>
+  <deriveReleaseCompilerArgumentFromTargetLevel default-value="true"/>
+  <encoding>${project.build.sourceEncoding}</encoding>
+  <executable>${maven.compiler.executable}</executable>
+  <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
+  <fork default-value="false"/>
+  <generatedSourcesDirectory default-value="${project.build.directory}/generated-sources/annotations"/>
+  <logDirectory default-value="${project.build.directory}/compile-logs"/>
+  <mavenCompilerEncoding>${maven.compiler.encoding}</mavenCompilerEncoding>
+  <maxmem>${maven.compiler.maxmem}</maxmem>
+  <meminitial>${maven.compiler.meminitial}</meminitial>
+  <optimize default-value="false">${maven.compiler.optimize}</optimize>
+  <outputFileName>${project.build.finalName}</outputFileName>
+  <project>${project}</project>
+  <release>${maven.compiler.release}</release>
+  <requireJREPackageImports default-value="false"/>
+  <session>${session}</session>
+  <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
+  <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
+  <source>${maven.compiler.source}</source>
+  <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
+  <strictCompilerTarget default-value="false"/>
+  <target>${maven.compiler.target}</target>
+  <useJDK default-value="SYSTEM"/>
+  <useProjectSettings default-value="true"/>
+  <verbose default-value="false">${maven.compiler.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources (default-testResources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources>${project.testResources}</resources>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform (default-target-platform)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <finalName>${project.build.finalName}</finalName>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <strictBinIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attachP2Metadata default-value="true"/>
+  <baselineMode default-value="warn">${tycho.baseline}</baselineMode>
+  <baselineReplace default-value="all">none</baselineReplace>
+  <baselineRepositories>
+    <repository>
+      <url>https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/</url>
+    </repository>
+  </baselineRepositories>
+  <defaultP2Metadata default-value="true"/>
+  <execution>${mojoExecution}</execution>
+  <generateDownloadStatsProperty default-value="false">${tycho.generateDownloadStatsProperty}</generateDownloadStatsProperty>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test (default-test)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <argLine>${tycho.testArgLine}</argLine>
+  <debugPort>${debugPort}</debugPort>
+  <deleteOsgiDataDirectory default-value="true"/>
+  <enableAssertions default-value="false">${enableAssertions}</enableAssertions>
+  <excludedGroups>${excludedGroups}</excludedGroups>
+  <failIfNoTests default-value="true">${failIfNoTests}</failIfNoTests>
+  <forkedProcessTimeoutInSeconds>${surefire.timeout}</forkedProcessTimeoutInSeconds>
+  <groups>${groups}</groups>
+  <includes>
+    <forkMode>never</forkMode>
+    <include>**/*Test.java</include>
+    <include>**/*Tests.java</include>
+  </includes>
+  <osgiDataDirectory default-value="${project.build.directory}/work/data/"/>
+  <parallel>${parallel}</parallel>
+  <perCoreThreadCount default-value="true">${perCoreThreadCount}</perCoreThreadCount>
+  <pluginArtifacts>${plugin.artifacts}</pluginArtifacts>
+  <profileName default-value="DefaultProfile"/>
+  <project>${project}</project>
+  <redirectTestOutputToFile default-value="false">${maven.test.redirectTestOutputToFile}</redirectTestOutputToFile>
+  <reportsDirectory default-value="${project.build.directory}/surefire-reports"/>
+  <rerunFailingTestsCount default-value="0">${surefire.rerunFailingTestsCount}</rerunFailingTestsCount>
+  <runOrder default-value="filesystem"/>
+  <session>${session}</session>
+  <showEclipseLog default-value="false">${tycho.showEclipseLog}</showEclipseLog>
+  <skip>${maven.test.skip}</skip>
+  <skipAfterFailureCount default-value="0">${surefire.skipAfterFailureCount}</skipAfterFailureCount>
+  <skipExec>${maven.test.skipExec}</skipExec>
+  <skipTests>${skipTests}</skipTests>
+  <surefireProperties default-value="${project.build.directory}/surefire.properties"/>
+  <test>${test}</test>
+  <testClass>${testClass}</testClass>
+  <testClassesDirectory>${project.build.outputDirectory}</testClassesDirectory>
+  <testFailureIgnore default-value="false">${maven.test.failure.ignore}</testFailureIgnore>
+  <testRuntime default-value="default"/>
+  <threadCount>${threadCount}</threadCount>
+  <trimStackTrace default-value="true">${trimStackTrace}</trimStackTrace>
+  <useJDK default-value="SYSTEM"/>
+  <useUIHarness default-value="false"/>
+  <useUIThread default-value="true"/>
+  <useUnlimitedThreads default-value="false">${useUnlimitedThreads}</useUnlimitedThreads>
+  <work default-value="${project.build.directory}/work"/>
+</configuration>
+[DEBUG] =======================================================================
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=25700, ConflictMarker.markTime=19100, ConflictMarker.nodeCount=58, ConflictIdSorter.graphTime=12100, ConflictIdSorter.topsortTime=12400, ConflictIdSorter.conflictIdCount=21, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=100199, ConflictResolver.conflictItemCount=57, DefaultDependencyCollector.collectTime=522501, DefaultDependencyCollector.transformTime=183899}
+[DEBUG] org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:eclipse-test-plugin:1.1.0-SNAPSHOT
+[DEBUG]    p2.eclipse-plugin:javax.annotation:jar:1.2.0.v201602091430:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi:jar:3.15.100.v20191114-1701:system
+[DEBUG]    p2.eclipse-plugin:org.apache.felix.scr:jar:2.1.14.v20190123-1619:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.services:jar:3.8.0.v20190206-2147:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.util:jar:3.5.300.v20190708-1141:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.eclipse.app4mc.util.sessionlog:jar:1.1.0.202104211257:system
+[DEBUG]    p2.eclipse-plugin:org.jdom2:jar:2.0.6.v20191125-0928:system
+[DEBUG]    p2.eclipse-plugin:org.junit:jar:junit.jar:4.12.0.v201504281640:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.jaxen:jar:1.1.6.v20191106-1554:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.common:jar:3.10.600.v20191004-1420:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.runtime:jar:3.17.0.v20191122-2104:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.contenttype:jar:3.7.500.v20190916-2125:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.preferences:jar:3.7.600.v20191017-2055:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.registry:jar:3.8.600.v20191017-2055:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.jobs:jar:3.10.600.v20191122-2104:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.app:jar:1.4.300.v20190815-1535:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.launcher:jar:1.5.600.v20191014-2022:system
+[DEBUG]    p2.eclipse-plugin:org.hamcrest.core:jar:1.3.0.v20180420-1519:system
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ org.eclipse.app4mc.amalthea.converters.091.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\test-classes
+[DEBUG] -- end configuration --
+[INFO] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work\dev.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work\configuration\org.eclipse.osgi\framework.info.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-logger-api-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-booter-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-api-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\maven-surefire-common-2.22.2.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work\configuration\org.eclipse.osgi\22\0
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work\configuration\org.eclipse.osgi\22
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work\configuration\org.eclipse.osgi\10\0\.cp\junit.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work\configuration\org.eclipse.osgi\10\0\.cp
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work\configuration\org.eclipse.osgi\10\0
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work\configuration\org.eclipse.osgi\10
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTableLock
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTable.2
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTable.1
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work\configuration\org.eclipse.osgi\.manager
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work\configuration\org.eclipse.osgi
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work\configuration\org.eclipse.equinox.app\.manager\.fileTableLock
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work\configuration\org.eclipse.equinox.app\.manager
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work\configuration\org.eclipse.equinox.app
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work\configuration\org.eclipse.core.runtime\.table.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work\configuration\org.eclipse.core.runtime\.orphans.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work\configuration\org.eclipse.core.runtime\.namespaces.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTableLock
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTable.8
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTable.7
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work\configuration\org.eclipse.core.runtime\.manager
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work\configuration\org.eclipse.core.runtime\.mainData.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work\configuration\org.eclipse.core.runtime\.extraData.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work\configuration\org.eclipse.core.runtime\.contributors.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work\configuration\org.eclipse.core.runtime\.contributions.1
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work\configuration\org.eclipse.core.runtime
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work\configuration\config.ini
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work\configuration
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\surefire.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters091.tests.NamespaceConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters091.tests.CustomPropertiesConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters091.tests.NamespaceConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters091.tests.CustomPropertiesConverterTest.txt
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\surefire-reports
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\sourcebundle-l10n-gen\OSGI-INF\l10n\bundle-src.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\sourcebundle-l10n-gen\OSGI-INF\l10n
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\sourcebundle-l10n-gen\OSGI-INF
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\sourcebundle-l10n-gen
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\p2content.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\p2artifacts.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\org.eclipse.app4mc.amalthea.converters.091.tests-1.1.0-SNAPSHOT.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\org.eclipse.app4mc.amalthea.converters.091.tests-1.1.0-SNAPSHOT-sources.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\maven-archiver\pom.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\maven-archiver
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\MANIFEST.MF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\local-artifacts.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\generated-sources\annotations
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\generated-sources
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\classes\org\eclipse\app4mc\amalthea\converters091\tests\NamespaceConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\classes\org\eclipse\app4mc\amalthea\converters091\tests\CustomPropertiesConverterTest.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\classes\org\eclipse\app4mc\amalthea\converters091\tests
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\classes\org\eclipse\app4mc\amalthea\converters091
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\classes\org\eclipse\app4mc\amalthea
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\classes\org\eclipse\app4mc
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\classes\org\eclipse
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\classes\org
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\classes
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\site
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier) @ org.eclipse.app4mc.amalthea.converters.091.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier' with basic configurator -->
+[DEBUG]   (f) baseDir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier {execution: default-build-qualifier}
+[DEBUG]   (s) format = yyyyMMddHHmm
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] The project's OSGi version is 1.1.0.202104220626
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-id (default-validate-id) @ org.eclipse.app4mc.amalthea.converters.091.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-version (default-validate-version) @ org.eclipse.app4mc.amalthea.converters.091.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF
+[DEBUG]   (f) strictVersions = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ org.eclipse.app4mc.amalthea.converters.091.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.091.tests.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\src\main\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\src\main\resources
+[INFO] 
+[INFO] --- tycho-compiler-plugin:2.3.0:compile (default-compile) @ org.eclipse.app4mc.amalthea.converters.091.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-compiler-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile' with basic configurator -->
+[DEBUG]   (f) basedir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target
+[DEBUG]   (f) compilerId = jdt
+[DEBUG]   (f) copyResources = true
+[DEBUG]   (f) debug = true
+[DEBUG]   (f) deriveReleaseCompilerArgumentFromTargetLevel = true
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) failOnWarning = false
+[DEBUG]   (f) fork = false
+[DEBUG]   (f) generatedSourcesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\generated-sources\annotations
+[DEBUG]   (f) logDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\compile-logs
+[DEBUG]   (f) optimize = false
+[DEBUG]   (f) outputFileName = org.eclipse.app4mc.amalthea.converters.091.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF
+[DEBUG]   (f) requireJREPackageImports = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showDeprecation = false
+[DEBUG]   (f) showWarnings = false
+[DEBUG]   (f) staleMillis = 0
+[DEBUG]   (f) strictCompilerTarget = false
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useProjectSettings = true
+[DEBUG]   (f) verbose = false
+[DEBUG] -- end configuration --
+[DEBUG] Manifest BREEs: [OSGi profile 'JavaSE-1.8' { source level: 1.8, target level: 1.8}]
+[DEBUG] Target Platform EE: OSGi profile 'JavaSE-11' { source level: 11, target level: 11}
+[DEBUG] Effective source/target: 1.8/1.8
+[DEBUG] Using compiler 'jdt'.
+[DEBUG] Source directories: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\src]
+[DEBUG] Classpath: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\classes
+ C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\classes]
+[DEBUG] Output directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\classes
+[DEBUG] Classpath:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\classes
+[DEBUG]  C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\classes
+[DEBUG] Source roots:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\src
+[INFO] Compiling 2 source files to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\classes
+[DEBUG] JDT compiler args: [-properties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.settings\org.eclipse.jdt.core.prefs, -s, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\generated-sources\annotations, -d, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\classes, -classpath, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\target\classes;C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\classes, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\src\org\eclipse\app4mc\amalthea\converters091\tests\NamespaceConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\src\org\eclipse\app4mc\amalthea\converters091\tests\CustomPropertiesConverterTest.java, -g, -nowarn, -target, 1.8, -source, 1.8, --release, 8, -encoding, UTF-8]
+[DEBUG] Original compiler output: 
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ org.eclipse.app4mc.amalthea.converters.091.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\test-classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\src\test\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.091.tests.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\src\test\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\src\test\resources
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ org.eclipse.app4mc.amalthea.converters.091.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.091.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\org.eclipse.app4mc.amalthea.converters.091.tests-1.1.0-SNAPSHOT-sources.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters091/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters091/tests/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters091/tests/CustomPropertiesConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters091/tests/NamespaceConverterTest.java
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding directory OSGI-INF/l10n/
+[DEBUG] adding entry OSGI-INF/l10n/bundle-src.properties
+[INFO] 
+[INFO] --- target-platform-configuration:2.3.0:target-platform (default-target-platform) @ org.eclipse.app4mc.amalthea.converters.091.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform from plugin realm ClassRealm[plugin>org.eclipse.tycho:target-platform-configuration:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin) @ org.eclipse.app4mc.amalthea.converters.091.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin' with basic configurator -->
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.091.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) strictBinIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\org.eclipse.app4mc.amalthea.converters.091.tests-1.1.0-SNAPSHOT.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters091/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters091/tests/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters091/tests/CustomPropertiesConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters091/tests/NamespaceConverterTest.class
+[DEBUG] adding directory META-INF/maven/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.091.tests/
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.091.tests/pom.xml
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.091.tests/pom.properties
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default) @ org.eclipse.app4mc.amalthea.converters.091.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default' with basic configurator -->
+[DEBUG]   (f) attachP2Metadata = true
+[DEBUG]   (f) baselineMode = warn
+[DEBUG]   (f) baselineReplace = none
+[DEBUG]   (f) url = https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/
+[DEBUG]   (f) baselineRepositories = [org.eclipse.tycho.plugins.p2.Repository@2b52d7b9]
+[DEBUG]   (f) defaultP2Metadata = true
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default {execution: default-p2-metadata-default}
+[DEBUG]   (f) generateDownloadStatsProperty = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] No baseline version MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-surefire-plugin:2.3.0:test (default-test) @ org.eclipse.app4mc.amalthea.converters.091.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-surefire-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test' with basic configurator -->
+[DEBUG]   (f) deleteOsgiDataDirectory = true
+[DEBUG]   (f) enableAssertions = false
+[DEBUG]   (f) failIfNoTests = true
+[DEBUG]   (f) includes = [never, **/*Test.java, **/*Tests.java]
+[DEBUG]   (f) osgiDataDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work\data
+[DEBUG]   (f) perCoreThreadCount = true
+[DEBUG]   (f) pluginArtifacts = [org.eclipse.tycho:tycho-surefire-plugin:maven-plugin:2.3.0:, org.apache.maven:maven-plugin-api:jar:3.6.3:compile, org.apache.maven:maven-model:jar:3.6.3:compile, org.apache.maven:maven-artifact:jar:3.6.3:compile, org.apache.commons:commons-lang3:jar:3.8.1:compile, org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4:compile, org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile, org.codehaus.plexus:plexus-utils:jar:3.3.0:compile, org.apache.maven:maven-core:jar:3.6.3:compile, org.apache.maven:maven-settings:jar:3.6.3:compile, org.apache.maven:maven-settings-builder:jar:3.6.3:compile, org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile, org.sonatype.plexus:plexus-cipher:jar:1.7:compile, org.apache.maven:maven-builder-support:jar:3.6.3:compile, org.apache.maven:maven-repository-metadata:jar:3.6.3:compile, org.apache.maven:maven-model-builder:jar:3.6.3:compile, org.apache.maven:maven-resolver-provider:jar:3.6.3:compile, org.slf4j:slf4j-api:jar:1.7.29:compile, org.apache.maven.resolver:maven-resolver-impl:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-api:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-spi:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-util:jar:1.4.1:compile, org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile, commons-io:commons-io:jar:2.5:compile, com.google.inject:guice:jar:no_aop:4.2.1:compile, aopalliance:aopalliance:jar:1.0:compile, com.google.guava:guava:jar:25.1-android:compile, com.google.code.findbugs:jsr305:jar:3.0.2:compile, org.checkerframework:checker-compat-qual:jar:2.0.0:compile, com.google.errorprone:error_prone_annotations:jar:2.1.3:compile, com.google.j2objc:j2objc-annotations:jar:1.1:compile, org.codehaus.mojo:animal-sniffer-annotations:jar:1.14:compile, javax.inject:javax.inject:jar:1:compile, org.codehaus.plexus:plexus-archiver:jar:4.2.2:compile, org.codehaus.plexus:plexus-io:jar:3.2.0:compile, org.apache.commons:commons-compress:jar:1.20:compile, org.iq80.snappy:snappy:jar:0.4:compile, org.tukaani:xz:jar:1.8:runtime, org.eclipse.platform:org.eclipse.osgi:jar:3.16.200:compile, org.apache.maven:maven-compat:jar:3.6.3:compile, org.codehaus.plexus:plexus-interpolation:jar:1.25:compile, org.apache.maven.wagon:wagon-provider-api:jar:3.3.4:compile, org.eclipse.tycho:sisu-equinox-launching:jar:2.3.0:compile, org.apache.commons:commons-exec:jar:1.3:compile, org.eclipse.tycho:org.eclipse.tycho.surefire.osgibooter:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit4:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit47:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit5:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit54:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit55:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit56:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit57:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.testng:jar:2.3.0:runtime, org.apache.maven.surefire:surefire-api:jar:2.22.2:compile, org.apache.maven.surefire:surefire-logger-api:jar:2.22.2:compile, org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile, org.apache.maven.surefire:maven-surefire-common:jar:2.22.2:compile, org.apache.maven.surefire:surefire-booter:jar:2.22.2:compile, org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile, org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile, classworlds:classworlds:jar:1.1-alpha-2:compile, org.apache.maven:maven-project:jar:2.2.1:compile, org.apache.maven:maven-profile:jar:2.2.1:compile, org.apache.maven:maven-artifact-manager:jar:2.2.1:compile, backport-util-concurrent:backport-util-concurrent:jar:3.1:compile, org.apache.maven:maven-plugin-registry:jar:2.2.1:compile, org.apache.maven:maven-toolchain:jar:2.2.1:compile, org.codehaus.plexus:plexus-java:jar:0.9.10:compile, org.ow2.asm:asm:jar:6.2:compile, com.thoughtworks.qdox:qdox:jar:2.0-M8:compile]
+[DEBUG]   (f) profileName = DefaultProfile
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF
+[DEBUG]   (f) redirectTestOutputToFile = false
+[DEBUG]   (f) reportsDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\surefire-reports
+[DEBUG]   (f) rerunFailingTestsCount = 0
+[DEBUG]   (f) runOrder = filesystem
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showEclipseLog = false
+[DEBUG]   (f) skipAfterFailureCount = 0
+[DEBUG]   (f) surefireProperties = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\surefire.properties
+[DEBUG]   (f) testClassesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\classes
+[DEBUG]   (f) testFailureIgnore = false
+[DEBUG]   (f) testRuntime = default
+[DEBUG]   (f) trimStackTrace = true
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useUIHarness = false
+[DEBUG]   (f) useUIThread = true
+[DEBUG]   (f) useUnlimitedThreads = false
+[DEBUG]   (f) work = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work
+[DEBUG] -- end configuration --
+[DEBUG] Using test framework provider org.eclipse.tycho.surefire.provider.impl.JUnit4Provider
+[DEBUG] Installation OSGI bundles:
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/javax.annotation/1.2.0.v201602091430/javax.annotation-1.2.0.v201602091430.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.apache.felix.scr/2.1.14.v20190123-1619/org.apache.felix.scr-2.1.14.v20190123-1619.jar@1:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi.services/3.8.0.v20190206-2147/org.eclipse.osgi.services-3.8.0.v20190206-2147.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi.util/3.5.300.v20190708-1141/org.eclipse.osgi.util-3.5.300.v20190708-1141.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.091/target/org.eclipse.app4mc.amalthea.converters.091-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.common/target/org.eclipse.app4mc.amalthea.converters.common-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.app4mc.util.sessionlog/1.1.0.202104211257/org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.jdom2/2.0.6.v20191125-0928/org.jdom2-2.0.6.v20191125-0928.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.091.tests
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.junit/4.12.0.v201504281640/org.junit-4.12.0.v201504281640.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.common.tests/target/org.eclipse.app4mc.amalthea.converters.common.tests-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.jaxen/1.1.6.v20191106-1554/org.jaxen-1.1.6.v20191106-1554.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.common/3.10.600.v20191004-1420/org.eclipse.equinox.common-3.10.600.v20191004-1420.jar@2:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.runtime/3.17.0.v20191122-2104/org.eclipse.core.runtime-3.17.0.v20191122-2104.jar@4:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.contenttype/3.7.500.v20190916-2125/org.eclipse.core.contenttype-3.7.500.v20190916-2125.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.preferences/3.7.600.v20191017-2055/org.eclipse.equinox.preferences-3.7.600.v20191017-2055.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.registry/3.8.600.v20191017-2055/org.eclipse.equinox.registry-3.8.600.v20191017-2055.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.jobs/3.10.600.v20191122-2104/org.eclipse.core.jobs-3.10.600.v20191122-2104.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.app/1.4.300.v20190815-1535/org.eclipse.equinox.app-1.4.300.v20190815-1535.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.launcher/1.5.600.v20191014-2022/org.eclipse.equinox.launcher-1.5.600.v20191014-2022.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.hamcrest.core/1.3.0.v20180420-1519/org.hamcrest.core-1.3.0.v20180420-1519.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.091.tests
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/org/eclipse/tycho/org.eclipse.tycho.surefire.osgibooter/2.3.0/org.eclipse.tycho.surefire.osgibooter-2.3.0.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/org/eclipse/tycho/org.eclipse.tycho.surefire.junit4/2.3.0/org.eclipse.tycho.surefire.junit4-2.3.0.jar
+[INFO] Executing Test Runtime with timeout 0, logs (if any) will be placed at: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work\data\.metadata\.log
+[INFO] Command line:
+	[C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, -Dosgi.noShutdown=false, -Dosgi.os=win32, -Dosgi.ws=win32, -Dosgi.arch=x86_64, -Dosgi.clean=true, -jar, C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.launcher\1.5.600.v20191014-2022\org.eclipse.equinox.launcher-1.5.600.v20191014-2022.jar, -debug, -consolelog, -data, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work\data, -install, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work, -configuration, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\work\configuration, -application, org.eclipse.tycho.surefire.osgibooter.headlesstest, -testproperties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\target\surefire.properties]
+Configuration location:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.091.tests/target/work/configuration/
+Configuration file:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.091.tests/target/work/configuration/config.ini loaded
+Install location:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.091.tests/target/work/
+Framework located:
+    file:/C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi/3.15.100.v20191114-1701/org.eclipse.osgi-3.15.100.v20191114-1701.jar
+Framework classpath:
+    file:/C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi/3.15.100.v20191114-1701/org.eclipse.osgi-3.15.100.v20191114-1701.jar
+Debug options:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.091.tests/.options not found
+Time to load bundles: 125
+Starting application: 1288
+Running org.eclipse.app4mc.amalthea.converters091.tests.CustomPropertiesConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.15 s - in org.eclipse.app4mc.amalthea.converters091.tests.CustomPropertiesConverterTest
+testConversion[0: Test file: /customproperties/model.amxmi](org.eclipse.app4mc.amalthea.converters091.tests.CustomPropertiesConverterTest)  Time elapsed: 0.083 s
+verification[0: Test file: /customproperties/model.amxmi](org.eclipse.app4mc.amalthea.converters091.tests.CustomPropertiesConverterTest)  Time elapsed: 0.007 s
+Running org.eclipse.app4mc.amalthea.converters091.tests.NamespaceConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 s - in org.eclipse.app4mc.amalthea.converters091.tests.NamespaceConverterTest
+testConversion[0: Test file: /namespace/model.amxmi](org.eclipse.app4mc.amalthea.converters091.tests.NamespaceConverterTest)  Time elapsed: 0.009 s
+verification[0: Test file: /namespace/model.amxmi](org.eclipse.app4mc.amalthea.converters091.tests.NamespaceConverterTest)  Time elapsed: 0.004 s
+
+Results:
+
+Tests run: 4, Failures: 0, Errors: 0, Skipped: 0
+
+[INFO] All tests passed!
+[INFO] 
+[INFO] --< org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests >--
+[INFO] Building [test-bundle] APP4MC Amalthea Converters to 0.9.2 - Tests 1.1.0-SNAPSHOT [32/47]
+[INFO] ------------------------[ eclipse-test-plugin ]-------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): [compile, runtime]
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <baseDir>${project.basedir}</baseDir>
+  <execution>${mojoExecution}</execution>
+  <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
+  <format default-value="yyyyMMddHHmm"/>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id (default-validate-id)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version (default-validate-version)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <strictVersions default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources (default-resources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources default-value="${project.resources}"/>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile (default-compile)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <basedir>${basedir}</basedir>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <compilerId default-value="jdt">${maven.compiler.compilerId}</compilerId>
+  <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
+  <copyResources default-value="true"/>
+  <debug default-value="true">${maven.compiler.debug}</debug>
+  <deriveReleaseCompilerArgumentFromTargetLevel default-value="true"/>
+  <encoding>${project.build.sourceEncoding}</encoding>
+  <executable>${maven.compiler.executable}</executable>
+  <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
+  <fork default-value="false"/>
+  <generatedSourcesDirectory default-value="${project.build.directory}/generated-sources/annotations"/>
+  <logDirectory default-value="${project.build.directory}/compile-logs"/>
+  <mavenCompilerEncoding>${maven.compiler.encoding}</mavenCompilerEncoding>
+  <maxmem>${maven.compiler.maxmem}</maxmem>
+  <meminitial>${maven.compiler.meminitial}</meminitial>
+  <optimize default-value="false">${maven.compiler.optimize}</optimize>
+  <outputFileName>${project.build.finalName}</outputFileName>
+  <project>${project}</project>
+  <release>${maven.compiler.release}</release>
+  <requireJREPackageImports default-value="false"/>
+  <session>${session}</session>
+  <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
+  <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
+  <source>${maven.compiler.source}</source>
+  <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
+  <strictCompilerTarget default-value="false"/>
+  <target>${maven.compiler.target}</target>
+  <useJDK default-value="SYSTEM"/>
+  <useProjectSettings default-value="true"/>
+  <verbose default-value="false">${maven.compiler.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources (default-testResources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources>${project.testResources}</resources>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform (default-target-platform)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <finalName>${project.build.finalName}</finalName>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <strictBinIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attachP2Metadata default-value="true"/>
+  <baselineMode default-value="warn">${tycho.baseline}</baselineMode>
+  <baselineReplace default-value="all">none</baselineReplace>
+  <baselineRepositories>
+    <repository>
+      <url>https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/</url>
+    </repository>
+  </baselineRepositories>
+  <defaultP2Metadata default-value="true"/>
+  <execution>${mojoExecution}</execution>
+  <generateDownloadStatsProperty default-value="false">${tycho.generateDownloadStatsProperty}</generateDownloadStatsProperty>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test (default-test)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <argLine>${tycho.testArgLine}</argLine>
+  <debugPort>${debugPort}</debugPort>
+  <deleteOsgiDataDirectory default-value="true"/>
+  <enableAssertions default-value="false">${enableAssertions}</enableAssertions>
+  <excludedGroups>${excludedGroups}</excludedGroups>
+  <failIfNoTests default-value="true">${failIfNoTests}</failIfNoTests>
+  <forkedProcessTimeoutInSeconds>${surefire.timeout}</forkedProcessTimeoutInSeconds>
+  <groups>${groups}</groups>
+  <includes>
+    <forkMode>never</forkMode>
+    <include>**/*Test.java</include>
+    <include>**/*Tests.java</include>
+  </includes>
+  <osgiDataDirectory default-value="${project.build.directory}/work/data/"/>
+  <parallel>${parallel}</parallel>
+  <perCoreThreadCount default-value="true">${perCoreThreadCount}</perCoreThreadCount>
+  <pluginArtifacts>${plugin.artifacts}</pluginArtifacts>
+  <profileName default-value="DefaultProfile"/>
+  <project>${project}</project>
+  <redirectTestOutputToFile default-value="false">${maven.test.redirectTestOutputToFile}</redirectTestOutputToFile>
+  <reportsDirectory default-value="${project.build.directory}/surefire-reports"/>
+  <rerunFailingTestsCount default-value="0">${surefire.rerunFailingTestsCount}</rerunFailingTestsCount>
+  <runOrder default-value="filesystem"/>
+  <session>${session}</session>
+  <showEclipseLog default-value="false">${tycho.showEclipseLog}</showEclipseLog>
+  <skip>${maven.test.skip}</skip>
+  <skipAfterFailureCount default-value="0">${surefire.skipAfterFailureCount}</skipAfterFailureCount>
+  <skipExec>${maven.test.skipExec}</skipExec>
+  <skipTests>${skipTests}</skipTests>
+  <surefireProperties default-value="${project.build.directory}/surefire.properties"/>
+  <test>${test}</test>
+  <testClass>${testClass}</testClass>
+  <testClassesDirectory>${project.build.outputDirectory}</testClassesDirectory>
+  <testFailureIgnore default-value="false">${maven.test.failure.ignore}</testFailureIgnore>
+  <testRuntime default-value="default"/>
+  <threadCount>${threadCount}</threadCount>
+  <trimStackTrace default-value="true">${trimStackTrace}</trimStackTrace>
+  <useJDK default-value="SYSTEM"/>
+  <useUIHarness default-value="false"/>
+  <useUIThread default-value="true"/>
+  <useUnlimitedThreads default-value="false">${useUnlimitedThreads}</useUnlimitedThreads>
+  <work default-value="${project.build.directory}/work"/>
+</configuration>
+[DEBUG] =======================================================================
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=24800, ConflictMarker.markTime=20100, ConflictMarker.nodeCount=58, ConflictIdSorter.graphTime=13400, ConflictIdSorter.topsortTime=12400, ConflictIdSorter.conflictIdCount=21, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=102801, ConflictResolver.conflictItemCount=57, DefaultDependencyCollector.collectTime=507200, DefaultDependencyCollector.transformTime=187601}
+[DEBUG] org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:eclipse-test-plugin:1.1.0-SNAPSHOT
+[DEBUG]    p2.eclipse-plugin:javax.annotation:jar:1.2.0.v201602091430:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi:jar:3.15.100.v20191114-1701:system
+[DEBUG]    p2.eclipse-plugin:org.apache.felix.scr:jar:2.1.14.v20190123-1619:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.services:jar:3.8.0.v20190206-2147:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.util:jar:3.5.300.v20190708-1141:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.eclipse.app4mc.util.sessionlog:jar:1.1.0.202104211257:system
+[DEBUG]    p2.eclipse-plugin:org.jdom2:jar:2.0.6.v20191125-0928:system
+[DEBUG]    p2.eclipse-plugin:org.junit:jar:junit.jar:4.12.0.v201504281640:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.jaxen:jar:1.1.6.v20191106-1554:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.common:jar:3.10.600.v20191004-1420:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.runtime:jar:3.17.0.v20191122-2104:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.contenttype:jar:3.7.500.v20190916-2125:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.preferences:jar:3.7.600.v20191017-2055:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.registry:jar:3.8.600.v20191017-2055:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.jobs:jar:3.10.600.v20191122-2104:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.app:jar:1.4.300.v20190815-1535:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.launcher:jar:1.5.600.v20191014-2022:system
+[DEBUG]    p2.eclipse-plugin:org.hamcrest.core:jar:1.3.0.v20180420-1519:system
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ org.eclipse.app4mc.amalthea.converters.092.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\test-classes
+[DEBUG] -- end configuration --
+[INFO] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work\dev.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work\configuration\org.eclipse.osgi\framework.info.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-logger-api-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-booter-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-api-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\maven-surefire-common-2.22.2.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work\configuration\org.eclipse.osgi\22\0
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work\configuration\org.eclipse.osgi\22
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work\configuration\org.eclipse.osgi\10\0\.cp\junit.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work\configuration\org.eclipse.osgi\10\0\.cp
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work\configuration\org.eclipse.osgi\10\0
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work\configuration\org.eclipse.osgi\10
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTableLock
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTable.2
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTable.1
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work\configuration\org.eclipse.osgi\.manager
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work\configuration\org.eclipse.osgi
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work\configuration\org.eclipse.equinox.app\.manager\.fileTableLock
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work\configuration\org.eclipse.equinox.app\.manager
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work\configuration\org.eclipse.equinox.app
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work\configuration\org.eclipse.core.runtime\.table.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work\configuration\org.eclipse.core.runtime\.orphans.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work\configuration\org.eclipse.core.runtime\.namespaces.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTableLock
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTable.8
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTable.7
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work\configuration\org.eclipse.core.runtime\.manager
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work\configuration\org.eclipse.core.runtime\.mainData.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work\configuration\org.eclipse.core.runtime\.extraData.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work\configuration\org.eclipse.core.runtime\.contributors.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work\configuration\org.eclipse.core.runtime\.contributions.1
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work\configuration\org.eclipse.core.runtime
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work\configuration\config.ini
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work\configuration
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\surefire.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters092.tests.NamespaceConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters092.tests.NamespaceConverterTest.txt
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\surefire-reports
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\sourcebundle-l10n-gen\OSGI-INF\l10n\bundle-src.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\sourcebundle-l10n-gen\OSGI-INF\l10n
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\sourcebundle-l10n-gen\OSGI-INF
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\sourcebundle-l10n-gen
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\p2content.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\p2artifacts.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\org.eclipse.app4mc.amalthea.converters.092.tests-1.1.0-SNAPSHOT.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\org.eclipse.app4mc.amalthea.converters.092.tests-1.1.0-SNAPSHOT-sources.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\maven-archiver\pom.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\maven-archiver
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\MANIFEST.MF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\local-artifacts.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\generated-sources\annotations
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\generated-sources
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\classes\org\eclipse\app4mc\amalthea\converters092\tests\NamespaceConverterTest.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\classes\org\eclipse\app4mc\amalthea\converters092\tests
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\classes\org\eclipse\app4mc\amalthea\converters092
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\classes\org\eclipse\app4mc\amalthea
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\classes\org\eclipse\app4mc
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\classes\org\eclipse
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\classes\org
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\classes
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\site
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier) @ org.eclipse.app4mc.amalthea.converters.092.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier' with basic configurator -->
+[DEBUG]   (f) baseDir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier {execution: default-build-qualifier}
+[DEBUG]   (s) format = yyyyMMddHHmm
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] The project's OSGi version is 1.1.0.202104220626
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-id (default-validate-id) @ org.eclipse.app4mc.amalthea.converters.092.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-version (default-validate-version) @ org.eclipse.app4mc.amalthea.converters.092.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF
+[DEBUG]   (f) strictVersions = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ org.eclipse.app4mc.amalthea.converters.092.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.092.tests.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\src\main\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\src\main\resources
+[INFO] 
+[INFO] --- tycho-compiler-plugin:2.3.0:compile (default-compile) @ org.eclipse.app4mc.amalthea.converters.092.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-compiler-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile' with basic configurator -->
+[DEBUG]   (f) basedir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target
+[DEBUG]   (f) compilerId = jdt
+[DEBUG]   (f) copyResources = true
+[DEBUG]   (f) debug = true
+[DEBUG]   (f) deriveReleaseCompilerArgumentFromTargetLevel = true
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) failOnWarning = false
+[DEBUG]   (f) fork = false
+[DEBUG]   (f) generatedSourcesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\generated-sources\annotations
+[DEBUG]   (f) logDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\compile-logs
+[DEBUG]   (f) optimize = false
+[DEBUG]   (f) outputFileName = org.eclipse.app4mc.amalthea.converters.092.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF
+[DEBUG]   (f) requireJREPackageImports = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showDeprecation = false
+[DEBUG]   (f) showWarnings = false
+[DEBUG]   (f) staleMillis = 0
+[DEBUG]   (f) strictCompilerTarget = false
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useProjectSettings = true
+[DEBUG]   (f) verbose = false
+[DEBUG] -- end configuration --
+[DEBUG] Manifest BREEs: [OSGi profile 'JavaSE-1.8' { source level: 1.8, target level: 1.8}]
+[DEBUG] Target Platform EE: OSGi profile 'JavaSE-11' { source level: 11, target level: 11}
+[DEBUG] Effective source/target: 1.8/1.8
+[DEBUG] Using compiler 'jdt'.
+[DEBUG] Source directories: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\src]
+[DEBUG] Classpath: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\classes
+ C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\classes]
+[DEBUG] Output directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\classes
+[DEBUG] Classpath:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\classes
+[DEBUG]  C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\classes
+[DEBUG] Source roots:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\src
+[INFO] Compiling 1 source file to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\classes
+[DEBUG] JDT compiler args: [-properties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.settings\org.eclipse.jdt.core.prefs, -s, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\generated-sources\annotations, -d, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\classes, -classpath, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\target\classes;C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\classes, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\src\org\eclipse\app4mc\amalthea\converters092\tests\NamespaceConverterTest.java, -g, -nowarn, -target, 1.8, -source, 1.8, --release, 8, -encoding, UTF-8]
+[DEBUG] Original compiler output: 
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ org.eclipse.app4mc.amalthea.converters.092.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\test-classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\src\test\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.092.tests.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\src\test\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\src\test\resources
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ org.eclipse.app4mc.amalthea.converters.092.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.092.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\org.eclipse.app4mc.amalthea.converters.092.tests-1.1.0-SNAPSHOT-sources.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters092/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters092/tests/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters092/tests/NamespaceConverterTest.java
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding directory OSGI-INF/l10n/
+[DEBUG] adding entry OSGI-INF/l10n/bundle-src.properties
+[INFO] 
+[INFO] --- target-platform-configuration:2.3.0:target-platform (default-target-platform) @ org.eclipse.app4mc.amalthea.converters.092.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform from plugin realm ClassRealm[plugin>org.eclipse.tycho:target-platform-configuration:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin) @ org.eclipse.app4mc.amalthea.converters.092.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin' with basic configurator -->
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.092.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) strictBinIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\org.eclipse.app4mc.amalthea.converters.092.tests-1.1.0-SNAPSHOT.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters092/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters092/tests/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters092/tests/NamespaceConverterTest.class
+[DEBUG] adding directory META-INF/maven/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.092.tests/
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.092.tests/pom.xml
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.092.tests/pom.properties
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default) @ org.eclipse.app4mc.amalthea.converters.092.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default' with basic configurator -->
+[DEBUG]   (f) attachP2Metadata = true
+[DEBUG]   (f) baselineMode = warn
+[DEBUG]   (f) baselineReplace = none
+[DEBUG]   (f) url = https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/
+[DEBUG]   (f) baselineRepositories = [org.eclipse.tycho.plugins.p2.Repository@40a8a626]
+[DEBUG]   (f) defaultP2Metadata = true
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default {execution: default-p2-metadata-default}
+[DEBUG]   (f) generateDownloadStatsProperty = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] No baseline version MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-surefire-plugin:2.3.0:test (default-test) @ org.eclipse.app4mc.amalthea.converters.092.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-surefire-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test' with basic configurator -->
+[DEBUG]   (f) deleteOsgiDataDirectory = true
+[DEBUG]   (f) enableAssertions = false
+[DEBUG]   (f) failIfNoTests = true
+[DEBUG]   (f) includes = [never, **/*Test.java, **/*Tests.java]
+[DEBUG]   (f) osgiDataDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work\data
+[DEBUG]   (f) perCoreThreadCount = true
+[DEBUG]   (f) pluginArtifacts = [org.eclipse.tycho:tycho-surefire-plugin:maven-plugin:2.3.0:, org.apache.maven:maven-plugin-api:jar:3.6.3:compile, org.apache.maven:maven-model:jar:3.6.3:compile, org.apache.maven:maven-artifact:jar:3.6.3:compile, org.apache.commons:commons-lang3:jar:3.8.1:compile, org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4:compile, org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile, org.codehaus.plexus:plexus-utils:jar:3.3.0:compile, org.apache.maven:maven-core:jar:3.6.3:compile, org.apache.maven:maven-settings:jar:3.6.3:compile, org.apache.maven:maven-settings-builder:jar:3.6.3:compile, org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile, org.sonatype.plexus:plexus-cipher:jar:1.7:compile, org.apache.maven:maven-builder-support:jar:3.6.3:compile, org.apache.maven:maven-repository-metadata:jar:3.6.3:compile, org.apache.maven:maven-model-builder:jar:3.6.3:compile, org.apache.maven:maven-resolver-provider:jar:3.6.3:compile, org.slf4j:slf4j-api:jar:1.7.29:compile, org.apache.maven.resolver:maven-resolver-impl:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-api:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-spi:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-util:jar:1.4.1:compile, org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile, commons-io:commons-io:jar:2.5:compile, com.google.inject:guice:jar:no_aop:4.2.1:compile, aopalliance:aopalliance:jar:1.0:compile, com.google.guava:guava:jar:25.1-android:compile, com.google.code.findbugs:jsr305:jar:3.0.2:compile, org.checkerframework:checker-compat-qual:jar:2.0.0:compile, com.google.errorprone:error_prone_annotations:jar:2.1.3:compile, com.google.j2objc:j2objc-annotations:jar:1.1:compile, org.codehaus.mojo:animal-sniffer-annotations:jar:1.14:compile, javax.inject:javax.inject:jar:1:compile, org.codehaus.plexus:plexus-archiver:jar:4.2.2:compile, org.codehaus.plexus:plexus-io:jar:3.2.0:compile, org.apache.commons:commons-compress:jar:1.20:compile, org.iq80.snappy:snappy:jar:0.4:compile, org.tukaani:xz:jar:1.8:runtime, org.eclipse.platform:org.eclipse.osgi:jar:3.16.200:compile, org.apache.maven:maven-compat:jar:3.6.3:compile, org.codehaus.plexus:plexus-interpolation:jar:1.25:compile, org.apache.maven.wagon:wagon-provider-api:jar:3.3.4:compile, org.eclipse.tycho:sisu-equinox-launching:jar:2.3.0:compile, org.apache.commons:commons-exec:jar:1.3:compile, org.eclipse.tycho:org.eclipse.tycho.surefire.osgibooter:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit4:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit47:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit5:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit54:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit55:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit56:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit57:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.testng:jar:2.3.0:runtime, org.apache.maven.surefire:surefire-api:jar:2.22.2:compile, org.apache.maven.surefire:surefire-logger-api:jar:2.22.2:compile, org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile, org.apache.maven.surefire:maven-surefire-common:jar:2.22.2:compile, org.apache.maven.surefire:surefire-booter:jar:2.22.2:compile, org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile, org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile, classworlds:classworlds:jar:1.1-alpha-2:compile, org.apache.maven:maven-project:jar:2.2.1:compile, org.apache.maven:maven-profile:jar:2.2.1:compile, org.apache.maven:maven-artifact-manager:jar:2.2.1:compile, backport-util-concurrent:backport-util-concurrent:jar:3.1:compile, org.apache.maven:maven-plugin-registry:jar:2.2.1:compile, org.apache.maven:maven-toolchain:jar:2.2.1:compile, org.codehaus.plexus:plexus-java:jar:0.9.10:compile, org.ow2.asm:asm:jar:6.2:compile, com.thoughtworks.qdox:qdox:jar:2.0-M8:compile]
+[DEBUG]   (f) profileName = DefaultProfile
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF
+[DEBUG]   (f) redirectTestOutputToFile = false
+[DEBUG]   (f) reportsDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\surefire-reports
+[DEBUG]   (f) rerunFailingTestsCount = 0
+[DEBUG]   (f) runOrder = filesystem
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showEclipseLog = false
+[DEBUG]   (f) skipAfterFailureCount = 0
+[DEBUG]   (f) surefireProperties = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\surefire.properties
+[DEBUG]   (f) testClassesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\classes
+[DEBUG]   (f) testFailureIgnore = false
+[DEBUG]   (f) testRuntime = default
+[DEBUG]   (f) trimStackTrace = true
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useUIHarness = false
+[DEBUG]   (f) useUIThread = true
+[DEBUG]   (f) useUnlimitedThreads = false
+[DEBUG]   (f) work = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work
+[DEBUG] -- end configuration --
+[DEBUG] Using test framework provider org.eclipse.tycho.surefire.provider.impl.JUnit4Provider
+[DEBUG] Installation OSGI bundles:
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/javax.annotation/1.2.0.v201602091430/javax.annotation-1.2.0.v201602091430.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.apache.felix.scr/2.1.14.v20190123-1619/org.apache.felix.scr-2.1.14.v20190123-1619.jar@1:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi.services/3.8.0.v20190206-2147/org.eclipse.osgi.services-3.8.0.v20190206-2147.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi.util/3.5.300.v20190708-1141/org.eclipse.osgi.util-3.5.300.v20190708-1141.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.092/target/org.eclipse.app4mc.amalthea.converters.092-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.common/target/org.eclipse.app4mc.amalthea.converters.common-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.app4mc.util.sessionlog/1.1.0.202104211257/org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.jdom2/2.0.6.v20191125-0928/org.jdom2-2.0.6.v20191125-0928.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.092.tests
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.junit/4.12.0.v201504281640/org.junit-4.12.0.v201504281640.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.common.tests/target/org.eclipse.app4mc.amalthea.converters.common.tests-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.jaxen/1.1.6.v20191106-1554/org.jaxen-1.1.6.v20191106-1554.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.common/3.10.600.v20191004-1420/org.eclipse.equinox.common-3.10.600.v20191004-1420.jar@2:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.runtime/3.17.0.v20191122-2104/org.eclipse.core.runtime-3.17.0.v20191122-2104.jar@4:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.contenttype/3.7.500.v20190916-2125/org.eclipse.core.contenttype-3.7.500.v20190916-2125.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.preferences/3.7.600.v20191017-2055/org.eclipse.equinox.preferences-3.7.600.v20191017-2055.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.registry/3.8.600.v20191017-2055/org.eclipse.equinox.registry-3.8.600.v20191017-2055.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.jobs/3.10.600.v20191122-2104/org.eclipse.core.jobs-3.10.600.v20191122-2104.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.app/1.4.300.v20190815-1535/org.eclipse.equinox.app-1.4.300.v20190815-1535.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.launcher/1.5.600.v20191014-2022/org.eclipse.equinox.launcher-1.5.600.v20191014-2022.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.hamcrest.core/1.3.0.v20180420-1519/org.hamcrest.core-1.3.0.v20180420-1519.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.092.tests
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/org/eclipse/tycho/org.eclipse.tycho.surefire.osgibooter/2.3.0/org.eclipse.tycho.surefire.osgibooter-2.3.0.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/org/eclipse/tycho/org.eclipse.tycho.surefire.junit4/2.3.0/org.eclipse.tycho.surefire.junit4-2.3.0.jar
+[INFO] Executing Test Runtime with timeout 0, logs (if any) will be placed at: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work\data\.metadata\.log
+[INFO] Command line:
+	[C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, -Dosgi.noShutdown=false, -Dosgi.os=win32, -Dosgi.ws=win32, -Dosgi.arch=x86_64, -Dosgi.clean=true, -jar, C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.launcher\1.5.600.v20191014-2022\org.eclipse.equinox.launcher-1.5.600.v20191014-2022.jar, -debug, -consolelog, -data, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work\data, -install, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work, -configuration, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\work\configuration, -application, org.eclipse.tycho.surefire.osgibooter.headlesstest, -testproperties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\target\surefire.properties]
+Configuration location:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.092.tests/target/work/configuration/
+Configuration file:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.092.tests/target/work/configuration/config.ini loaded
+Install location:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.092.tests/target/work/
+Framework located:
+    file:/C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi/3.15.100.v20191114-1701/org.eclipse.osgi-3.15.100.v20191114-1701.jar
+Framework classpath:
+    file:/C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi/3.15.100.v20191114-1701/org.eclipse.osgi-3.15.100.v20191114-1701.jar
+Debug options:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.092.tests/.options not found
+Time to load bundles: 140
+Starting application: 1542
+Running org.eclipse.app4mc.amalthea.converters092.tests.NamespaceConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.175 s - in org.eclipse.app4mc.amalthea.converters092.tests.NamespaceConverterTest
+testConversion[0: Test file: /namespace/model.amxmi](org.eclipse.app4mc.amalthea.converters092.tests.NamespaceConverterTest)  Time elapsed: 0.099 s
+verification[0: Test file: /namespace/model.amxmi](org.eclipse.app4mc.amalthea.converters092.tests.NamespaceConverterTest)  Time elapsed: 0.006 s
+
+Results:
+
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0
+
+[INFO] All tests passed!
+[INFO] 
+[INFO] --< org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests >--
+[INFO] Building [test-bundle] APP4MC Amalthea Converters to 0.9.3 - Tests 1.1.0-SNAPSHOT [33/47]
+[INFO] ------------------------[ eclipse-test-plugin ]-------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): [compile, runtime]
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <baseDir>${project.basedir}</baseDir>
+  <execution>${mojoExecution}</execution>
+  <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
+  <format default-value="yyyyMMddHHmm"/>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id (default-validate-id)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version (default-validate-version)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <strictVersions default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources (default-resources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources default-value="${project.resources}"/>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile (default-compile)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <basedir>${basedir}</basedir>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <compilerId default-value="jdt">${maven.compiler.compilerId}</compilerId>
+  <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
+  <copyResources default-value="true"/>
+  <debug default-value="true">${maven.compiler.debug}</debug>
+  <deriveReleaseCompilerArgumentFromTargetLevel default-value="true"/>
+  <encoding>${project.build.sourceEncoding}</encoding>
+  <executable>${maven.compiler.executable}</executable>
+  <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
+  <fork default-value="false"/>
+  <generatedSourcesDirectory default-value="${project.build.directory}/generated-sources/annotations"/>
+  <logDirectory default-value="${project.build.directory}/compile-logs"/>
+  <mavenCompilerEncoding>${maven.compiler.encoding}</mavenCompilerEncoding>
+  <maxmem>${maven.compiler.maxmem}</maxmem>
+  <meminitial>${maven.compiler.meminitial}</meminitial>
+  <optimize default-value="false">${maven.compiler.optimize}</optimize>
+  <outputFileName>${project.build.finalName}</outputFileName>
+  <project>${project}</project>
+  <release>${maven.compiler.release}</release>
+  <requireJREPackageImports default-value="false"/>
+  <session>${session}</session>
+  <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
+  <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
+  <source>${maven.compiler.source}</source>
+  <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
+  <strictCompilerTarget default-value="false"/>
+  <target>${maven.compiler.target}</target>
+  <useJDK default-value="SYSTEM"/>
+  <useProjectSettings default-value="true"/>
+  <verbose default-value="false">${maven.compiler.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources (default-testResources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources>${project.testResources}</resources>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform (default-target-platform)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <finalName>${project.build.finalName}</finalName>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <strictBinIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attachP2Metadata default-value="true"/>
+  <baselineMode default-value="warn">${tycho.baseline}</baselineMode>
+  <baselineReplace default-value="all">none</baselineReplace>
+  <baselineRepositories>
+    <repository>
+      <url>https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/</url>
+    </repository>
+  </baselineRepositories>
+  <defaultP2Metadata default-value="true"/>
+  <execution>${mojoExecution}</execution>
+  <generateDownloadStatsProperty default-value="false">${tycho.generateDownloadStatsProperty}</generateDownloadStatsProperty>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test (default-test)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <argLine>${tycho.testArgLine}</argLine>
+  <debugPort>${debugPort}</debugPort>
+  <deleteOsgiDataDirectory default-value="true"/>
+  <enableAssertions default-value="false">${enableAssertions}</enableAssertions>
+  <excludedGroups>${excludedGroups}</excludedGroups>
+  <failIfNoTests default-value="true">${failIfNoTests}</failIfNoTests>
+  <forkedProcessTimeoutInSeconds>${surefire.timeout}</forkedProcessTimeoutInSeconds>
+  <groups>${groups}</groups>
+  <includes>
+    <forkMode>never</forkMode>
+    <include>**/*Test.java</include>
+    <include>**/*Tests.java</include>
+  </includes>
+  <osgiDataDirectory default-value="${project.build.directory}/work/data/"/>
+  <parallel>${parallel}</parallel>
+  <perCoreThreadCount default-value="true">${perCoreThreadCount}</perCoreThreadCount>
+  <pluginArtifacts>${plugin.artifacts}</pluginArtifacts>
+  <profileName default-value="DefaultProfile"/>
+  <project>${project}</project>
+  <redirectTestOutputToFile default-value="false">${maven.test.redirectTestOutputToFile}</redirectTestOutputToFile>
+  <reportsDirectory default-value="${project.build.directory}/surefire-reports"/>
+  <rerunFailingTestsCount default-value="0">${surefire.rerunFailingTestsCount}</rerunFailingTestsCount>
+  <runOrder default-value="filesystem"/>
+  <session>${session}</session>
+  <showEclipseLog default-value="false">${tycho.showEclipseLog}</showEclipseLog>
+  <skip>${maven.test.skip}</skip>
+  <skipAfterFailureCount default-value="0">${surefire.skipAfterFailureCount}</skipAfterFailureCount>
+  <skipExec>${maven.test.skipExec}</skipExec>
+  <skipTests>${skipTests}</skipTests>
+  <surefireProperties default-value="${project.build.directory}/surefire.properties"/>
+  <test>${test}</test>
+  <testClass>${testClass}</testClass>
+  <testClassesDirectory>${project.build.outputDirectory}</testClassesDirectory>
+  <testFailureIgnore default-value="false">${maven.test.failure.ignore}</testFailureIgnore>
+  <testRuntime default-value="default"/>
+  <threadCount>${threadCount}</threadCount>
+  <trimStackTrace default-value="true">${trimStackTrace}</trimStackTrace>
+  <useJDK default-value="SYSTEM"/>
+  <useUIHarness default-value="false"/>
+  <useUIThread default-value="true"/>
+  <useUnlimitedThreads default-value="false">${useUnlimitedThreads}</useUnlimitedThreads>
+  <work default-value="${project.build.directory}/work"/>
+</configuration>
+[DEBUG] =======================================================================
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=29001, ConflictMarker.markTime=21600, ConflictMarker.nodeCount=58, ConflictIdSorter.graphTime=13301, ConflictIdSorter.topsortTime=13499, ConflictIdSorter.conflictIdCount=21, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=112301, ConflictResolver.conflictItemCount=57, DefaultDependencyCollector.collectTime=536500, DefaultDependencyCollector.transformTime=212100}
+[DEBUG] org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:eclipse-test-plugin:1.1.0-SNAPSHOT
+[DEBUG]    p2.eclipse-plugin:javax.annotation:jar:1.2.0.v201602091430:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi:jar:3.15.100.v20191114-1701:system
+[DEBUG]    p2.eclipse-plugin:org.apache.felix.scr:jar:2.1.14.v20190123-1619:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.services:jar:3.8.0.v20190206-2147:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.util:jar:3.5.300.v20190708-1141:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.eclipse.app4mc.util.sessionlog:jar:1.1.0.202104211257:system
+[DEBUG]    p2.eclipse-plugin:org.jdom2:jar:2.0.6.v20191125-0928:system
+[DEBUG]    p2.eclipse-plugin:org.junit:jar:junit.jar:4.12.0.v201504281640:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.jaxen:jar:1.1.6.v20191106-1554:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.common:jar:3.10.600.v20191004-1420:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.runtime:jar:3.17.0.v20191122-2104:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.contenttype:jar:3.7.500.v20190916-2125:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.preferences:jar:3.7.600.v20191017-2055:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.registry:jar:3.8.600.v20191017-2055:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.jobs:jar:3.10.600.v20191122-2104:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.app:jar:1.4.300.v20190815-1535:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.launcher:jar:1.5.600.v20191014-2022:system
+[DEBUG]    p2.eclipse-plugin:org.hamcrest.core:jar:1.3.0.v20180420-1519:system
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ org.eclipse.app4mc.amalthea.converters.093.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\test-classes
+[DEBUG] -- end configuration --
+[INFO] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work\dev.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work\configuration\org.eclipse.osgi\framework.info.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-logger-api-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-booter-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-api-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\maven-surefire-common-2.22.2.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work\configuration\org.eclipse.osgi\22\0
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work\configuration\org.eclipse.osgi\22
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work\configuration\org.eclipse.osgi\10\0\.cp\junit.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work\configuration\org.eclipse.osgi\10\0\.cp
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work\configuration\org.eclipse.osgi\10\0
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work\configuration\org.eclipse.osgi\10
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTableLock
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTable.2
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTable.1
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work\configuration\org.eclipse.osgi\.manager
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work\configuration\org.eclipse.osgi
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work\configuration\org.eclipse.equinox.app\.manager\.fileTableLock
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work\configuration\org.eclipse.equinox.app\.manager
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work\configuration\org.eclipse.equinox.app
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work\configuration\org.eclipse.core.runtime\.table.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work\configuration\org.eclipse.core.runtime\.orphans.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work\configuration\org.eclipse.core.runtime\.namespaces.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTableLock
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTable.8
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTable.7
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work\configuration\org.eclipse.core.runtime\.manager
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work\configuration\org.eclipse.core.runtime\.mainData.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work\configuration\org.eclipse.core.runtime\.extraData.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work\configuration\org.eclipse.core.runtime\.contributors.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work\configuration\org.eclipse.core.runtime\.contributions.1
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work\configuration\org.eclipse.core.runtime
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work\configuration\config.ini
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work\configuration
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\surefire.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters093.tests.TransmissionPolicyConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters093.tests.StimuliConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters093.tests.OsConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters093.tests.NamespaceConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters093.tests.MeasurementConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters093.tests.HwConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters093.tests.ExecutionNeed_DeviationConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters093.tests.ActivationConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters093.tests.TransmissionPolicyConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters093.tests.StimuliConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters093.tests.OsConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters093.tests.NamespaceConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters093.tests.MeasurementConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters093.tests.HwConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters093.tests.ExecutionNeed_DeviationConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters093.tests.ActivationConverterTest.txt
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\surefire-reports
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\sourcebundle-l10n-gen\OSGI-INF\l10n\bundle-src.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\sourcebundle-l10n-gen\OSGI-INF\l10n
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\sourcebundle-l10n-gen\OSGI-INF
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\sourcebundle-l10n-gen
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\p2content.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\p2artifacts.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\org.eclipse.app4mc.amalthea.converters.093.tests-1.1.0-SNAPSHOT.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\org.eclipse.app4mc.amalthea.converters.093.tests-1.1.0-SNAPSHOT-sources.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\maven-archiver\pom.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\maven-archiver
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\MANIFEST.MF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\local-artifacts.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\generated-sources\annotations
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\generated-sources
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\classes\org\eclipse\app4mc\amalthea\converters093\tests\TransmissionPolicyConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\classes\org\eclipse\app4mc\amalthea\converters093\tests\StimuliConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\classes\org\eclipse\app4mc\amalthea\converters093\tests\OsConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\classes\org\eclipse\app4mc\amalthea\converters093\tests\NamespaceConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\classes\org\eclipse\app4mc\amalthea\converters093\tests\MeasurementConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\classes\org\eclipse\app4mc\amalthea\converters093\tests\HwConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\classes\org\eclipse\app4mc\amalthea\converters093\tests\ExecutionNeed_DeviationConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\classes\org\eclipse\app4mc\amalthea\converters093\tests\ActivationConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\classes\org\eclipse\app4mc\amalthea\converters093\tests\Abstract093ConverterTest.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\classes\org\eclipse\app4mc\amalthea\converters093\tests
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\classes\org\eclipse\app4mc\amalthea\converters093
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\classes\org\eclipse\app4mc\amalthea
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\classes\org\eclipse\app4mc
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\classes\org\eclipse
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\classes\org
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\classes
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\site
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier) @ org.eclipse.app4mc.amalthea.converters.093.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier' with basic configurator -->
+[DEBUG]   (f) baseDir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier {execution: default-build-qualifier}
+[DEBUG]   (s) format = yyyyMMddHHmm
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] The project's OSGi version is 1.1.0.202104220626
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-id (default-validate-id) @ org.eclipse.app4mc.amalthea.converters.093.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-version (default-validate-version) @ org.eclipse.app4mc.amalthea.converters.093.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF
+[DEBUG]   (f) strictVersions = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ org.eclipse.app4mc.amalthea.converters.093.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.093.tests.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\src\main\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\src\main\resources
+[INFO] 
+[INFO] --- tycho-compiler-plugin:2.3.0:compile (default-compile) @ org.eclipse.app4mc.amalthea.converters.093.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-compiler-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile' with basic configurator -->
+[DEBUG]   (f) basedir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target
+[DEBUG]   (f) compilerId = jdt
+[DEBUG]   (f) copyResources = true
+[DEBUG]   (f) debug = true
+[DEBUG]   (f) deriveReleaseCompilerArgumentFromTargetLevel = true
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) failOnWarning = false
+[DEBUG]   (f) fork = false
+[DEBUG]   (f) generatedSourcesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\generated-sources\annotations
+[DEBUG]   (f) logDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\compile-logs
+[DEBUG]   (f) optimize = false
+[DEBUG]   (f) outputFileName = org.eclipse.app4mc.amalthea.converters.093.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF
+[DEBUG]   (f) requireJREPackageImports = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showDeprecation = false
+[DEBUG]   (f) showWarnings = false
+[DEBUG]   (f) staleMillis = 0
+[DEBUG]   (f) strictCompilerTarget = false
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useProjectSettings = true
+[DEBUG]   (f) verbose = false
+[DEBUG] -- end configuration --
+[DEBUG] Manifest BREEs: [OSGi profile 'JavaSE-1.8' { source level: 1.8, target level: 1.8}]
+[DEBUG] Target Platform EE: OSGi profile 'JavaSE-11' { source level: 11, target level: 11}
+[DEBUG] Effective source/target: 1.8/1.8
+[DEBUG] Using compiler 'jdt'.
+[DEBUG] Source directories: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\src]
+[DEBUG] Classpath: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\classes
+ C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\classes]
+[DEBUG] Output directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\classes
+[DEBUG] Classpath:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\classes
+[DEBUG]  C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\classes
+[DEBUG] Source roots:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\src
+[INFO] Compiling 9 source files to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\classes
+[DEBUG] JDT compiler args: [-properties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.settings\org.eclipse.jdt.core.prefs, -s, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\generated-sources\annotations, -d, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\classes, -classpath, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\target\classes;C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\classes, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\src\org\eclipse\app4mc\amalthea\converters093\tests\MeasurementConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\src\org\eclipse\app4mc\amalthea\converters093\tests\ActivationConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\src\org\eclipse\app4mc\amalthea\converters093\tests\ExecutionNeed_DeviationConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\src\org\eclipse\app4mc\amalthea\converters093\tests\TransmissionPolicyConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\src\org\eclipse\app4mc\amalthea\converters093\tests\HwConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\src\org\eclipse\app4mc\amalthea\converters093\tests\NamespaceConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\src\org\eclipse\app4mc\amalthea\converters093\tests\OsConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\src\org\eclipse\app4mc\amalthea\converters093\tests\Abstract093ConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\src\org\eclipse\app4mc\amalthea\converters093\tests\StimuliConverterTest.java, -g, -nowarn, -target, 1.8, -source, 1.8, --release, 8, -encoding, UTF-8]
+[DEBUG] Original compiler output: 
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ org.eclipse.app4mc.amalthea.converters.093.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\test-classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\src\test\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.093.tests.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\src\test\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\src\test\resources
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ org.eclipse.app4mc.amalthea.converters.093.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.093.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\org.eclipse.app4mc.amalthea.converters.093.tests-1.1.0-SNAPSHOT-sources.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters093/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters093/tests/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters093/tests/Abstract093ConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters093/tests/ActivationConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters093/tests/ExecutionNeed_DeviationConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters093/tests/HwConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters093/tests/MeasurementConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters093/tests/NamespaceConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters093/tests/OsConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters093/tests/StimuliConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters093/tests/TransmissionPolicyConverterTest.java
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding directory OSGI-INF/l10n/
+[DEBUG] adding entry OSGI-INF/l10n/bundle-src.properties
+[INFO] 
+[INFO] --- target-platform-configuration:2.3.0:target-platform (default-target-platform) @ org.eclipse.app4mc.amalthea.converters.093.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform from plugin realm ClassRealm[plugin>org.eclipse.tycho:target-platform-configuration:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin) @ org.eclipse.app4mc.amalthea.converters.093.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin' with basic configurator -->
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.093.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) strictBinIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\org.eclipse.app4mc.amalthea.converters.093.tests-1.1.0-SNAPSHOT.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters093/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters093/tests/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters093/tests/Abstract093ConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters093/tests/ActivationConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters093/tests/ExecutionNeed_DeviationConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters093/tests/HwConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters093/tests/MeasurementConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters093/tests/NamespaceConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters093/tests/OsConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters093/tests/StimuliConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters093/tests/TransmissionPolicyConverterTest.class
+[DEBUG] adding directory META-INF/maven/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.093.tests/
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.093.tests/pom.xml
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.093.tests/pom.properties
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default) @ org.eclipse.app4mc.amalthea.converters.093.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default' with basic configurator -->
+[DEBUG]   (f) attachP2Metadata = true
+[DEBUG]   (f) baselineMode = warn
+[DEBUG]   (f) baselineReplace = none
+[DEBUG]   (f) url = https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/
+[DEBUG]   (f) baselineRepositories = [org.eclipse.tycho.plugins.p2.Repository@683361f6]
+[DEBUG]   (f) defaultP2Metadata = true
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default {execution: default-p2-metadata-default}
+[DEBUG]   (f) generateDownloadStatsProperty = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] No baseline version MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-surefire-plugin:2.3.0:test (default-test) @ org.eclipse.app4mc.amalthea.converters.093.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-surefire-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test' with basic configurator -->
+[DEBUG]   (f) deleteOsgiDataDirectory = true
+[DEBUG]   (f) enableAssertions = false
+[DEBUG]   (f) failIfNoTests = true
+[DEBUG]   (f) includes = [never, **/*Test.java, **/*Tests.java]
+[DEBUG]   (f) osgiDataDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work\data
+[DEBUG]   (f) perCoreThreadCount = true
+[DEBUG]   (f) pluginArtifacts = [org.eclipse.tycho:tycho-surefire-plugin:maven-plugin:2.3.0:, org.apache.maven:maven-plugin-api:jar:3.6.3:compile, org.apache.maven:maven-model:jar:3.6.3:compile, org.apache.maven:maven-artifact:jar:3.6.3:compile, org.apache.commons:commons-lang3:jar:3.8.1:compile, org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4:compile, org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile, org.codehaus.plexus:plexus-utils:jar:3.3.0:compile, org.apache.maven:maven-core:jar:3.6.3:compile, org.apache.maven:maven-settings:jar:3.6.3:compile, org.apache.maven:maven-settings-builder:jar:3.6.3:compile, org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile, org.sonatype.plexus:plexus-cipher:jar:1.7:compile, org.apache.maven:maven-builder-support:jar:3.6.3:compile, org.apache.maven:maven-repository-metadata:jar:3.6.3:compile, org.apache.maven:maven-model-builder:jar:3.6.3:compile, org.apache.maven:maven-resolver-provider:jar:3.6.3:compile, org.slf4j:slf4j-api:jar:1.7.29:compile, org.apache.maven.resolver:maven-resolver-impl:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-api:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-spi:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-util:jar:1.4.1:compile, org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile, commons-io:commons-io:jar:2.5:compile, com.google.inject:guice:jar:no_aop:4.2.1:compile, aopalliance:aopalliance:jar:1.0:compile, com.google.guava:guava:jar:25.1-android:compile, com.google.code.findbugs:jsr305:jar:3.0.2:compile, org.checkerframework:checker-compat-qual:jar:2.0.0:compile, com.google.errorprone:error_prone_annotations:jar:2.1.3:compile, com.google.j2objc:j2objc-annotations:jar:1.1:compile, org.codehaus.mojo:animal-sniffer-annotations:jar:1.14:compile, javax.inject:javax.inject:jar:1:compile, org.codehaus.plexus:plexus-archiver:jar:4.2.2:compile, org.codehaus.plexus:plexus-io:jar:3.2.0:compile, org.apache.commons:commons-compress:jar:1.20:compile, org.iq80.snappy:snappy:jar:0.4:compile, org.tukaani:xz:jar:1.8:runtime, org.eclipse.platform:org.eclipse.osgi:jar:3.16.200:compile, org.apache.maven:maven-compat:jar:3.6.3:compile, org.codehaus.plexus:plexus-interpolation:jar:1.25:compile, org.apache.maven.wagon:wagon-provider-api:jar:3.3.4:compile, org.eclipse.tycho:sisu-equinox-launching:jar:2.3.0:compile, org.apache.commons:commons-exec:jar:1.3:compile, org.eclipse.tycho:org.eclipse.tycho.surefire.osgibooter:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit4:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit47:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit5:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit54:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit55:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit56:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit57:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.testng:jar:2.3.0:runtime, org.apache.maven.surefire:surefire-api:jar:2.22.2:compile, org.apache.maven.surefire:surefire-logger-api:jar:2.22.2:compile, org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile, org.apache.maven.surefire:maven-surefire-common:jar:2.22.2:compile, org.apache.maven.surefire:surefire-booter:jar:2.22.2:compile, org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile, org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile, classworlds:classworlds:jar:1.1-alpha-2:compile, org.apache.maven:maven-project:jar:2.2.1:compile, org.apache.maven:maven-profile:jar:2.2.1:compile, org.apache.maven:maven-artifact-manager:jar:2.2.1:compile, backport-util-concurrent:backport-util-concurrent:jar:3.1:compile, org.apache.maven:maven-plugin-registry:jar:2.2.1:compile, org.apache.maven:maven-toolchain:jar:2.2.1:compile, org.codehaus.plexus:plexus-java:jar:0.9.10:compile, org.ow2.asm:asm:jar:6.2:compile, com.thoughtworks.qdox:qdox:jar:2.0-M8:compile]
+[DEBUG]   (f) profileName = DefaultProfile
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF
+[DEBUG]   (f) redirectTestOutputToFile = false
+[DEBUG]   (f) reportsDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\surefire-reports
+[DEBUG]   (f) rerunFailingTestsCount = 0
+[DEBUG]   (f) runOrder = filesystem
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showEclipseLog = false
+[DEBUG]   (f) skipAfterFailureCount = 0
+[DEBUG]   (f) surefireProperties = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\surefire.properties
+[DEBUG]   (f) testClassesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\classes
+[DEBUG]   (f) testFailureIgnore = false
+[DEBUG]   (f) testRuntime = default
+[DEBUG]   (f) trimStackTrace = true
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useUIHarness = false
+[DEBUG]   (f) useUIThread = true
+[DEBUG]   (f) useUnlimitedThreads = false
+[DEBUG]   (f) work = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work
+[DEBUG] -- end configuration --
+[DEBUG] Using test framework provider org.eclipse.tycho.surefire.provider.impl.JUnit4Provider
+[DEBUG] Installation OSGI bundles:
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/javax.annotation/1.2.0.v201602091430/javax.annotation-1.2.0.v201602091430.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.apache.felix.scr/2.1.14.v20190123-1619/org.apache.felix.scr-2.1.14.v20190123-1619.jar@1:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi.services/3.8.0.v20190206-2147/org.eclipse.osgi.services-3.8.0.v20190206-2147.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi.util/3.5.300.v20190708-1141/org.eclipse.osgi.util-3.5.300.v20190708-1141.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.093/target/org.eclipse.app4mc.amalthea.converters.093-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.common/target/org.eclipse.app4mc.amalthea.converters.common-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.app4mc.util.sessionlog/1.1.0.202104211257/org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.jdom2/2.0.6.v20191125-0928/org.jdom2-2.0.6.v20191125-0928.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.093.tests
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.junit/4.12.0.v201504281640/org.junit-4.12.0.v201504281640.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.common.tests/target/org.eclipse.app4mc.amalthea.converters.common.tests-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.jaxen/1.1.6.v20191106-1554/org.jaxen-1.1.6.v20191106-1554.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.common/3.10.600.v20191004-1420/org.eclipse.equinox.common-3.10.600.v20191004-1420.jar@2:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.runtime/3.17.0.v20191122-2104/org.eclipse.core.runtime-3.17.0.v20191122-2104.jar@4:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.contenttype/3.7.500.v20190916-2125/org.eclipse.core.contenttype-3.7.500.v20190916-2125.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.preferences/3.7.600.v20191017-2055/org.eclipse.equinox.preferences-3.7.600.v20191017-2055.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.registry/3.8.600.v20191017-2055/org.eclipse.equinox.registry-3.8.600.v20191017-2055.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.jobs/3.10.600.v20191122-2104/org.eclipse.core.jobs-3.10.600.v20191122-2104.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.app/1.4.300.v20190815-1535/org.eclipse.equinox.app-1.4.300.v20190815-1535.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.launcher/1.5.600.v20191014-2022/org.eclipse.equinox.launcher-1.5.600.v20191014-2022.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.hamcrest.core/1.3.0.v20180420-1519/org.hamcrest.core-1.3.0.v20180420-1519.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.093.tests
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/org/eclipse/tycho/org.eclipse.tycho.surefire.osgibooter/2.3.0/org.eclipse.tycho.surefire.osgibooter-2.3.0.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/org/eclipse/tycho/org.eclipse.tycho.surefire.junit4/2.3.0/org.eclipse.tycho.surefire.junit4-2.3.0.jar
+[INFO] Executing Test Runtime with timeout 0, logs (if any) will be placed at: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work\data\.metadata\.log
+[INFO] Command line:
+	[C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, -Dosgi.noShutdown=false, -Dosgi.os=win32, -Dosgi.ws=win32, -Dosgi.arch=x86_64, -Dosgi.clean=true, -jar, C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.launcher\1.5.600.v20191014-2022\org.eclipse.equinox.launcher-1.5.600.v20191014-2022.jar, -debug, -consolelog, -data, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work\data, -install, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work, -configuration, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\work\configuration, -application, org.eclipse.tycho.surefire.osgibooter.headlesstest, -testproperties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\target\surefire.properties]
+Configuration location:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.093.tests/target/work/configuration/
+Configuration file:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.093.tests/target/work/configuration/config.ini loaded
+Install location:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.093.tests/target/work/
+Framework located:
+    file:/C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi/3.15.100.v20191114-1701/org.eclipse.osgi-3.15.100.v20191114-1701.jar
+Framework classpath:
+    file:/C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi/3.15.100.v20191114-1701/org.eclipse.osgi-3.15.100.v20191114-1701.jar
+Debug options:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.093.tests/.options not found
+Time to load bundles: 125
+Starting application: 1256
+Running org.eclipse.app4mc.amalthea.converters093.tests.ActivationConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.157 s - in org.eclipse.app4mc.amalthea.converters093.tests.ActivationConverterTest
+testConversion[0: Test file: /activations/default.amxmi](org.eclipse.app4mc.amalthea.converters093.tests.ActivationConverterTest)  Time elapsed: 0.091 s
+verification[0: Test file: /activations/default.amxmi](org.eclipse.app4mc.amalthea.converters093.tests.ActivationConverterTest)  Time elapsed: 0.004 s
+Running org.eclipse.app4mc.amalthea.converters093.tests.ExecutionNeed_DeviationConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.032 s - in org.eclipse.app4mc.amalthea.converters093.tests.ExecutionNeed_DeviationConverterTest
+testConversion[0: Test file: /executionNeed_deviation/executionNeed_deviation.amxmi](org.eclipse.app4mc.amalthea.converters093.tests.ExecutionNeed_DeviationConverterTest)  Time elapsed: 0.025 s
+verification[0: Test file: /executionNeed_deviation/executionNeed_deviation.amxmi](org.eclipse.app4mc.amalthea.converters093.tests.ExecutionNeed_DeviationConverterTest)  Time elapsed: 0.005 s
+Running org.eclipse.app4mc.amalthea.converters093.tests.HwConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017 s - in org.eclipse.app4mc.amalthea.converters093.tests.HwConverterTest
+testConversion[0: Test file: /hwLatency/hw.amxmi](org.eclipse.app4mc.amalthea.converters093.tests.HwConverterTest)  Time elapsed: 0.012 s
+verification[0: Test file: /hwLatency/hw.amxmi](org.eclipse.app4mc.amalthea.converters093.tests.HwConverterTest)  Time elapsed: 0.004 s
+Running org.eclipse.app4mc.amalthea.converters093.tests.MeasurementConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.014 s - in org.eclipse.app4mc.amalthea.converters093.tests.MeasurementConverterTest
+testConversion[0: Test file: /measurement/measurement.amxmi](org.eclipse.app4mc.amalthea.converters093.tests.MeasurementConverterTest)  Time elapsed: 0.009 s
+verification[0: Test file: /measurement/measurement.amxmi](org.eclipse.app4mc.amalthea.converters093.tests.MeasurementConverterTest)  Time elapsed: 0.002 s
+Running org.eclipse.app4mc.amalthea.converters093.tests.NamespaceConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.011 s - in org.eclipse.app4mc.amalthea.converters093.tests.NamespaceConverterTest
+testConversion[0: Test file: /namespace/model.amxmi](org.eclipse.app4mc.amalthea.converters093.tests.NamespaceConverterTest)  Time elapsed: 0.007 s
+verification[0: Test file: /namespace/model.amxmi](org.eclipse.app4mc.amalthea.converters093.tests.NamespaceConverterTest)  Time elapsed: 0.003 s
+Running org.eclipse.app4mc.amalthea.converters093.tests.OsConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.026 s - in org.eclipse.app4mc.amalthea.converters093.tests.OsConverterTest
+testConversion[0: Test file: /os_instructions/instructionsExample.amxmi](org.eclipse.app4mc.amalthea.converters093.tests.OsConverterTest)  Time elapsed: 0.018 s
+verification[0: Test file: /os_instructions/instructionsExample.amxmi](org.eclipse.app4mc.amalthea.converters093.tests.OsConverterTest)  Time elapsed: 0.005 s
+Running org.eclipse.app4mc.amalthea.converters093.tests.StimuliConverterTest
+Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.026 s - in org.eclipse.app4mc.amalthea.converters093.tests.StimuliConverterTest
+testConversion[0: Test file: /stimuli/default.amxmi](org.eclipse.app4mc.amalthea.converters093.tests.StimuliConverterTest)  Time elapsed: 0.01 s
+verification[0: Test file: /stimuli/default.amxmi](org.eclipse.app4mc.amalthea.converters093.tests.StimuliConverterTest)  Time elapsed: 0.003 s
+testConversion[1: Test file: /stimuli/stimulus.amxmi](org.eclipse.app4mc.amalthea.converters093.tests.StimuliConverterTest)  Time elapsed: 0.007 s
+verification[1: Test file: /stimuli/stimulus.amxmi](org.eclipse.app4mc.amalthea.converters093.tests.StimuliConverterTest)  Time elapsed: 0.004 s
+Running org.eclipse.app4mc.amalthea.converters093.tests.TransmissionPolicyConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.015 s - in org.eclipse.app4mc.amalthea.converters093.tests.TransmissionPolicyConverterTest
+testConversion[0: Test file: /transmissionPolicy/default.amxmi](org.eclipse.app4mc.amalthea.converters093.tests.TransmissionPolicyConverterTest)  Time elapsed: 0.009 s
+verification[0: Test file: /transmissionPolicy/default.amxmi](org.eclipse.app4mc.amalthea.converters093.tests.TransmissionPolicyConverterTest)  Time elapsed: 0.004 s
+
+Results:
+
+Tests run: 18, Failures: 0, Errors: 0, Skipped: 0
+
+[INFO] All tests passed!
+[INFO] 
+[INFO] --< org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests >--
+[INFO] Building [test-bundle] APP4MC Amalthea Converters to 0.9.4 - Tests 1.1.0-SNAPSHOT [34/47]
+[INFO] ------------------------[ eclipse-test-plugin ]-------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): [compile, runtime]
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <baseDir>${project.basedir}</baseDir>
+  <execution>${mojoExecution}</execution>
+  <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
+  <format default-value="yyyyMMddHHmm"/>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id (default-validate-id)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version (default-validate-version)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <strictVersions default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources (default-resources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources default-value="${project.resources}"/>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile (default-compile)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <basedir>${basedir}</basedir>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <compilerId default-value="jdt">${maven.compiler.compilerId}</compilerId>
+  <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
+  <copyResources default-value="true"/>
+  <debug default-value="true">${maven.compiler.debug}</debug>
+  <deriveReleaseCompilerArgumentFromTargetLevel default-value="true"/>
+  <encoding>${project.build.sourceEncoding}</encoding>
+  <executable>${maven.compiler.executable}</executable>
+  <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
+  <fork default-value="false"/>
+  <generatedSourcesDirectory default-value="${project.build.directory}/generated-sources/annotations"/>
+  <logDirectory default-value="${project.build.directory}/compile-logs"/>
+  <mavenCompilerEncoding>${maven.compiler.encoding}</mavenCompilerEncoding>
+  <maxmem>${maven.compiler.maxmem}</maxmem>
+  <meminitial>${maven.compiler.meminitial}</meminitial>
+  <optimize default-value="false">${maven.compiler.optimize}</optimize>
+  <outputFileName>${project.build.finalName}</outputFileName>
+  <project>${project}</project>
+  <release>${maven.compiler.release}</release>
+  <requireJREPackageImports default-value="false"/>
+  <session>${session}</session>
+  <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
+  <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
+  <source>${maven.compiler.source}</source>
+  <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
+  <strictCompilerTarget default-value="false"/>
+  <target>${maven.compiler.target}</target>
+  <useJDK default-value="SYSTEM"/>
+  <useProjectSettings default-value="true"/>
+  <verbose default-value="false">${maven.compiler.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources (default-testResources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources>${project.testResources}</resources>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform (default-target-platform)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <finalName>${project.build.finalName}</finalName>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <strictBinIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attachP2Metadata default-value="true"/>
+  <baselineMode default-value="warn">${tycho.baseline}</baselineMode>
+  <baselineReplace default-value="all">none</baselineReplace>
+  <baselineRepositories>
+    <repository>
+      <url>https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/</url>
+    </repository>
+  </baselineRepositories>
+  <defaultP2Metadata default-value="true"/>
+  <execution>${mojoExecution}</execution>
+  <generateDownloadStatsProperty default-value="false">${tycho.generateDownloadStatsProperty}</generateDownloadStatsProperty>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test (default-test)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <argLine>${tycho.testArgLine}</argLine>
+  <debugPort>${debugPort}</debugPort>
+  <deleteOsgiDataDirectory default-value="true"/>
+  <enableAssertions default-value="false">${enableAssertions}</enableAssertions>
+  <excludedGroups>${excludedGroups}</excludedGroups>
+  <failIfNoTests default-value="true">${failIfNoTests}</failIfNoTests>
+  <forkedProcessTimeoutInSeconds>${surefire.timeout}</forkedProcessTimeoutInSeconds>
+  <groups>${groups}</groups>
+  <includes>
+    <forkMode>never</forkMode>
+    <include>**/*Test.java</include>
+    <include>**/*Tests.java</include>
+  </includes>
+  <osgiDataDirectory default-value="${project.build.directory}/work/data/"/>
+  <parallel>${parallel}</parallel>
+  <perCoreThreadCount default-value="true">${perCoreThreadCount}</perCoreThreadCount>
+  <pluginArtifacts>${plugin.artifacts}</pluginArtifacts>
+  <profileName default-value="DefaultProfile"/>
+  <project>${project}</project>
+  <redirectTestOutputToFile default-value="false">${maven.test.redirectTestOutputToFile}</redirectTestOutputToFile>
+  <reportsDirectory default-value="${project.build.directory}/surefire-reports"/>
+  <rerunFailingTestsCount default-value="0">${surefire.rerunFailingTestsCount}</rerunFailingTestsCount>
+  <runOrder default-value="filesystem"/>
+  <session>${session}</session>
+  <showEclipseLog default-value="false">${tycho.showEclipseLog}</showEclipseLog>
+  <skip>${maven.test.skip}</skip>
+  <skipAfterFailureCount default-value="0">${surefire.skipAfterFailureCount}</skipAfterFailureCount>
+  <skipExec>${maven.test.skipExec}</skipExec>
+  <skipTests>${skipTests}</skipTests>
+  <surefireProperties default-value="${project.build.directory}/surefire.properties"/>
+  <test>${test}</test>
+  <testClass>${testClass}</testClass>
+  <testClassesDirectory>${project.build.outputDirectory}</testClassesDirectory>
+  <testFailureIgnore default-value="false">${maven.test.failure.ignore}</testFailureIgnore>
+  <testRuntime default-value="default"/>
+  <threadCount>${threadCount}</threadCount>
+  <trimStackTrace default-value="true">${trimStackTrace}</trimStackTrace>
+  <useJDK default-value="SYSTEM"/>
+  <useUIHarness default-value="false"/>
+  <useUIThread default-value="true"/>
+  <useUnlimitedThreads default-value="false">${useUnlimitedThreads}</useUnlimitedThreads>
+  <work default-value="${project.build.directory}/work"/>
+</configuration>
+[DEBUG] =======================================================================
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=25200, ConflictMarker.markTime=19700, ConflictMarker.nodeCount=58, ConflictIdSorter.graphTime=13199, ConflictIdSorter.topsortTime=12401, ConflictIdSorter.conflictIdCount=21, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=105100, ConflictResolver.conflictItemCount=57, DefaultDependencyCollector.collectTime=528501, DefaultDependencyCollector.transformTime=189400}
+[DEBUG] org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:eclipse-test-plugin:1.1.0-SNAPSHOT
+[DEBUG]    p2.eclipse-plugin:javax.annotation:jar:1.2.0.v201602091430:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi:jar:3.15.100.v20191114-1701:system
+[DEBUG]    p2.eclipse-plugin:org.apache.felix.scr:jar:2.1.14.v20190123-1619:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.services:jar:3.8.0.v20190206-2147:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.util:jar:3.5.300.v20190708-1141:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.eclipse.app4mc.util.sessionlog:jar:1.1.0.202104211257:system
+[DEBUG]    p2.eclipse-plugin:org.jdom2:jar:2.0.6.v20191125-0928:system
+[DEBUG]    p2.eclipse-plugin:org.junit:jar:junit.jar:4.12.0.v201504281640:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.jaxen:jar:1.1.6.v20191106-1554:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.common:jar:3.10.600.v20191004-1420:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.runtime:jar:3.17.0.v20191122-2104:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.contenttype:jar:3.7.500.v20190916-2125:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.preferences:jar:3.7.600.v20191017-2055:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.registry:jar:3.8.600.v20191017-2055:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.jobs:jar:3.10.600.v20191122-2104:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.app:jar:1.4.300.v20190815-1535:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.launcher:jar:1.5.600.v20191014-2022:system
+[DEBUG]    p2.eclipse-plugin:org.hamcrest.core:jar:1.3.0.v20180420-1519:system
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ org.eclipse.app4mc.amalthea.converters.094.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\test-classes
+[DEBUG] -- end configuration --
+[INFO] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work\dev.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work\configuration\org.eclipse.osgi\framework.info.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-logger-api-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-booter-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-api-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\maven-surefire-common-2.22.2.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work\configuration\org.eclipse.osgi\22\0
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work\configuration\org.eclipse.osgi\22
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work\configuration\org.eclipse.osgi\10\0\.cp\junit.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work\configuration\org.eclipse.osgi\10\0\.cp
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work\configuration\org.eclipse.osgi\10\0
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work\configuration\org.eclipse.osgi\10
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTableLock
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTable.2
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTable.1
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work\configuration\org.eclipse.osgi\.manager
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work\configuration\org.eclipse.osgi
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work\configuration\org.eclipse.equinox.app\.manager\.fileTableLock
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work\configuration\org.eclipse.equinox.app\.manager
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work\configuration\org.eclipse.equinox.app
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work\configuration\org.eclipse.core.runtime\.table.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work\configuration\org.eclipse.core.runtime\.orphans.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work\configuration\org.eclipse.core.runtime\.namespaces.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTableLock
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTable.8
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTable.7
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work\configuration\org.eclipse.core.runtime\.manager
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work\configuration\org.eclipse.core.runtime\.mainData.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work\configuration\org.eclipse.core.runtime\.extraData.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work\configuration\org.eclipse.core.runtime\.contributors.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work\configuration\org.eclipse.core.runtime\.contributions.1
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work\configuration\org.eclipse.core.runtime
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work\configuration\config.ini
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work\configuration
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\surefire.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters094.tests.RunnableConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters094.tests.NamespaceConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters094.tests.ModeConditionConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters094.tests.ModeAndModeLabelConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters094.tests.HwConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters094.tests.DatatypeConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters094.tests.RunnableConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters094.tests.NamespaceConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters094.tests.ModeConditionConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters094.tests.ModeAndModeLabelConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters094.tests.HwConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters094.tests.DatatypeConverterTest.txt
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\surefire-reports
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\sourcebundle-l10n-gen\OSGI-INF\l10n\bundle-src.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\sourcebundle-l10n-gen\OSGI-INF\l10n
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\sourcebundle-l10n-gen\OSGI-INF
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\sourcebundle-l10n-gen
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\p2content.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\p2artifacts.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\org.eclipse.app4mc.amalthea.converters.094.tests-1.1.0-SNAPSHOT.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\org.eclipse.app4mc.amalthea.converters.094.tests-1.1.0-SNAPSHOT-sources.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\maven-archiver\pom.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\maven-archiver
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\MANIFEST.MF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\local-artifacts.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\generated-sources\annotations
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\generated-sources
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\classes\org\eclipse\app4mc\amalthea\converters094\tests\RunnableConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\classes\org\eclipse\app4mc\amalthea\converters094\tests\NamespaceConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\classes\org\eclipse\app4mc\amalthea\converters094\tests\ModeConditionConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\classes\org\eclipse\app4mc\amalthea\converters094\tests\ModeAndModeLabelConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\classes\org\eclipse\app4mc\amalthea\converters094\tests\HwConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\classes\org\eclipse\app4mc\amalthea\converters094\tests\debug\RunModeConditionConverter.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\classes\org\eclipse\app4mc\amalthea\converters094\tests\debug
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\classes\org\eclipse\app4mc\amalthea\converters094\tests\DatatypeConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\classes\org\eclipse\app4mc\amalthea\converters094\tests\Abstract094ConverterTest.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\classes\org\eclipse\app4mc\amalthea\converters094\tests
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\classes\org\eclipse\app4mc\amalthea\converters094
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\classes\org\eclipse\app4mc\amalthea
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\classes\org\eclipse\app4mc
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\classes\org\eclipse
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\classes\org
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\classes
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\site
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier) @ org.eclipse.app4mc.amalthea.converters.094.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier' with basic configurator -->
+[DEBUG]   (f) baseDir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier {execution: default-build-qualifier}
+[DEBUG]   (s) format = yyyyMMddHHmm
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] The project's OSGi version is 1.1.0.202104220626
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-id (default-validate-id) @ org.eclipse.app4mc.amalthea.converters.094.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-version (default-validate-version) @ org.eclipse.app4mc.amalthea.converters.094.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF
+[DEBUG]   (f) strictVersions = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ org.eclipse.app4mc.amalthea.converters.094.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.094.tests.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\src\main\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\src\main\resources
+[INFO] 
+[INFO] --- tycho-compiler-plugin:2.3.0:compile (default-compile) @ org.eclipse.app4mc.amalthea.converters.094.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-compiler-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile' with basic configurator -->
+[DEBUG]   (f) basedir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target
+[DEBUG]   (f) compilerId = jdt
+[DEBUG]   (f) copyResources = true
+[DEBUG]   (f) debug = true
+[DEBUG]   (f) deriveReleaseCompilerArgumentFromTargetLevel = true
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) failOnWarning = false
+[DEBUG]   (f) fork = false
+[DEBUG]   (f) generatedSourcesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\generated-sources\annotations
+[DEBUG]   (f) logDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\compile-logs
+[DEBUG]   (f) optimize = false
+[DEBUG]   (f) outputFileName = org.eclipse.app4mc.amalthea.converters.094.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF
+[DEBUG]   (f) requireJREPackageImports = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showDeprecation = false
+[DEBUG]   (f) showWarnings = false
+[DEBUG]   (f) staleMillis = 0
+[DEBUG]   (f) strictCompilerTarget = false
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useProjectSettings = true
+[DEBUG]   (f) verbose = false
+[DEBUG] -- end configuration --
+[DEBUG] Manifest BREEs: [OSGi profile 'JavaSE-1.8' { source level: 1.8, target level: 1.8}]
+[DEBUG] Target Platform EE: OSGi profile 'JavaSE-11' { source level: 11, target level: 11}
+[DEBUG] Effective source/target: 1.8/1.8
+[DEBUG] Using compiler 'jdt'.
+[DEBUG] Source directories: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\src]
+[DEBUG] Classpath: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\classes
+ C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\classes]
+[DEBUG] Output directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\classes
+[DEBUG] Classpath:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\classes
+[DEBUG]  C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\classes
+[DEBUG] Source roots:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\src
+[INFO] Compiling 8 source files to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\classes
+[DEBUG] JDT compiler args: [-properties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.settings\org.eclipse.jdt.core.prefs, -s, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\generated-sources\annotations, -d, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\classes, -classpath, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\target\classes;C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\classes, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\src\org\eclipse\app4mc\amalthea\converters094\tests\ModeAndModeLabelConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\src\org\eclipse\app4mc\amalthea\converters094\tests\HwConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\src\org\eclipse\app4mc\amalthea\converters094\tests\DatatypeConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\src\org\eclipse\app4mc\amalthea\converters094\tests\Abstract094ConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\src\org\eclipse\app4mc\amalthea\converters094\tests\debug\RunModeConditionConverter.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\src\org\eclipse\app4mc\amalthea\converters094\tests\ModeConditionConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\src\org\eclipse\app4mc\amalthea\converters094\tests\NamespaceConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\src\org\eclipse\app4mc\amalthea\converters094\tests\RunnableConverterTest.java, -g, -nowarn, -target, 1.8, -source, 1.8, --release, 8, -encoding, UTF-8]
+[DEBUG] Original compiler output: 
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ org.eclipse.app4mc.amalthea.converters.094.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\test-classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\src\test\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.094.tests.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\src\test\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\src\test\resources
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ org.eclipse.app4mc.amalthea.converters.094.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.094.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\org.eclipse.app4mc.amalthea.converters.094.tests-1.1.0-SNAPSHOT-sources.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters094/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters094/tests/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters094/tests/debug/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters094/tests/Abstract094ConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters094/tests/DatatypeConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters094/tests/debug/RunModeConditionConverter.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters094/tests/HwConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters094/tests/ModeAndModeLabelConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters094/tests/ModeConditionConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters094/tests/NamespaceConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters094/tests/RunnableConverterTest.java
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding directory OSGI-INF/l10n/
+[DEBUG] adding entry OSGI-INF/l10n/bundle-src.properties
+[INFO] 
+[INFO] --- target-platform-configuration:2.3.0:target-platform (default-target-platform) @ org.eclipse.app4mc.amalthea.converters.094.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform from plugin realm ClassRealm[plugin>org.eclipse.tycho:target-platform-configuration:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin) @ org.eclipse.app4mc.amalthea.converters.094.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin' with basic configurator -->
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.094.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) strictBinIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\org.eclipse.app4mc.amalthea.converters.094.tests-1.1.0-SNAPSHOT.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters094/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters094/tests/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters094/tests/debug/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters094/tests/Abstract094ConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters094/tests/DatatypeConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters094/tests/debug/RunModeConditionConverter.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters094/tests/HwConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters094/tests/ModeAndModeLabelConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters094/tests/ModeConditionConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters094/tests/NamespaceConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters094/tests/RunnableConverterTest.class
+[DEBUG] adding directory META-INF/maven/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.094.tests/
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.094.tests/pom.xml
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.094.tests/pom.properties
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default) @ org.eclipse.app4mc.amalthea.converters.094.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default' with basic configurator -->
+[DEBUG]   (f) attachP2Metadata = true
+[DEBUG]   (f) baselineMode = warn
+[DEBUG]   (f) baselineReplace = none
+[DEBUG]   (f) url = https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/
+[DEBUG]   (f) baselineRepositories = [org.eclipse.tycho.plugins.p2.Repository@2a06a2d5]
+[DEBUG]   (f) defaultP2Metadata = true
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default {execution: default-p2-metadata-default}
+[DEBUG]   (f) generateDownloadStatsProperty = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] No baseline version MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-surefire-plugin:2.3.0:test (default-test) @ org.eclipse.app4mc.amalthea.converters.094.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-surefire-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test' with basic configurator -->
+[DEBUG]   (f) deleteOsgiDataDirectory = true
+[DEBUG]   (f) enableAssertions = false
+[DEBUG]   (f) failIfNoTests = true
+[DEBUG]   (f) includes = [never, **/*Test.java, **/*Tests.java]
+[DEBUG]   (f) osgiDataDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work\data
+[DEBUG]   (f) perCoreThreadCount = true
+[DEBUG]   (f) pluginArtifacts = [org.eclipse.tycho:tycho-surefire-plugin:maven-plugin:2.3.0:, org.apache.maven:maven-plugin-api:jar:3.6.3:compile, org.apache.maven:maven-model:jar:3.6.3:compile, org.apache.maven:maven-artifact:jar:3.6.3:compile, org.apache.commons:commons-lang3:jar:3.8.1:compile, org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4:compile, org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile, org.codehaus.plexus:plexus-utils:jar:3.3.0:compile, org.apache.maven:maven-core:jar:3.6.3:compile, org.apache.maven:maven-settings:jar:3.6.3:compile, org.apache.maven:maven-settings-builder:jar:3.6.3:compile, org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile, org.sonatype.plexus:plexus-cipher:jar:1.7:compile, org.apache.maven:maven-builder-support:jar:3.6.3:compile, org.apache.maven:maven-repository-metadata:jar:3.6.3:compile, org.apache.maven:maven-model-builder:jar:3.6.3:compile, org.apache.maven:maven-resolver-provider:jar:3.6.3:compile, org.slf4j:slf4j-api:jar:1.7.29:compile, org.apache.maven.resolver:maven-resolver-impl:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-api:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-spi:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-util:jar:1.4.1:compile, org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile, commons-io:commons-io:jar:2.5:compile, com.google.inject:guice:jar:no_aop:4.2.1:compile, aopalliance:aopalliance:jar:1.0:compile, com.google.guava:guava:jar:25.1-android:compile, com.google.code.findbugs:jsr305:jar:3.0.2:compile, org.checkerframework:checker-compat-qual:jar:2.0.0:compile, com.google.errorprone:error_prone_annotations:jar:2.1.3:compile, com.google.j2objc:j2objc-annotations:jar:1.1:compile, org.codehaus.mojo:animal-sniffer-annotations:jar:1.14:compile, javax.inject:javax.inject:jar:1:compile, org.codehaus.plexus:plexus-archiver:jar:4.2.2:compile, org.codehaus.plexus:plexus-io:jar:3.2.0:compile, org.apache.commons:commons-compress:jar:1.20:compile, org.iq80.snappy:snappy:jar:0.4:compile, org.tukaani:xz:jar:1.8:runtime, org.eclipse.platform:org.eclipse.osgi:jar:3.16.200:compile, org.apache.maven:maven-compat:jar:3.6.3:compile, org.codehaus.plexus:plexus-interpolation:jar:1.25:compile, org.apache.maven.wagon:wagon-provider-api:jar:3.3.4:compile, org.eclipse.tycho:sisu-equinox-launching:jar:2.3.0:compile, org.apache.commons:commons-exec:jar:1.3:compile, org.eclipse.tycho:org.eclipse.tycho.surefire.osgibooter:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit4:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit47:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit5:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit54:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit55:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit56:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit57:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.testng:jar:2.3.0:runtime, org.apache.maven.surefire:surefire-api:jar:2.22.2:compile, org.apache.maven.surefire:surefire-logger-api:jar:2.22.2:compile, org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile, org.apache.maven.surefire:maven-surefire-common:jar:2.22.2:compile, org.apache.maven.surefire:surefire-booter:jar:2.22.2:compile, org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile, org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile, classworlds:classworlds:jar:1.1-alpha-2:compile, org.apache.maven:maven-project:jar:2.2.1:compile, org.apache.maven:maven-profile:jar:2.2.1:compile, org.apache.maven:maven-artifact-manager:jar:2.2.1:compile, backport-util-concurrent:backport-util-concurrent:jar:3.1:compile, org.apache.maven:maven-plugin-registry:jar:2.2.1:compile, org.apache.maven:maven-toolchain:jar:2.2.1:compile, org.codehaus.plexus:plexus-java:jar:0.9.10:compile, org.ow2.asm:asm:jar:6.2:compile, com.thoughtworks.qdox:qdox:jar:2.0-M8:compile]
+[DEBUG]   (f) profileName = DefaultProfile
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF
+[DEBUG]   (f) redirectTestOutputToFile = false
+[DEBUG]   (f) reportsDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\surefire-reports
+[DEBUG]   (f) rerunFailingTestsCount = 0
+[DEBUG]   (f) runOrder = filesystem
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showEclipseLog = false
+[DEBUG]   (f) skipAfterFailureCount = 0
+[DEBUG]   (f) surefireProperties = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\surefire.properties
+[DEBUG]   (f) testClassesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\classes
+[DEBUG]   (f) testFailureIgnore = false
+[DEBUG]   (f) testRuntime = default
+[DEBUG]   (f) trimStackTrace = true
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useUIHarness = false
+[DEBUG]   (f) useUIThread = true
+[DEBUG]   (f) useUnlimitedThreads = false
+[DEBUG]   (f) work = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work
+[DEBUG] -- end configuration --
+[DEBUG] Using test framework provider org.eclipse.tycho.surefire.provider.impl.JUnit4Provider
+[DEBUG] Installation OSGI bundles:
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/javax.annotation/1.2.0.v201602091430/javax.annotation-1.2.0.v201602091430.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.apache.felix.scr/2.1.14.v20190123-1619/org.apache.felix.scr-2.1.14.v20190123-1619.jar@1:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi.services/3.8.0.v20190206-2147/org.eclipse.osgi.services-3.8.0.v20190206-2147.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi.util/3.5.300.v20190708-1141/org.eclipse.osgi.util-3.5.300.v20190708-1141.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.094/target/org.eclipse.app4mc.amalthea.converters.094-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.common/target/org.eclipse.app4mc.amalthea.converters.common-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.app4mc.util.sessionlog/1.1.0.202104211257/org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.jdom2/2.0.6.v20191125-0928/org.jdom2-2.0.6.v20191125-0928.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.094.tests
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.junit/4.12.0.v201504281640/org.junit-4.12.0.v201504281640.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.common.tests/target/org.eclipse.app4mc.amalthea.converters.common.tests-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.jaxen/1.1.6.v20191106-1554/org.jaxen-1.1.6.v20191106-1554.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.common/3.10.600.v20191004-1420/org.eclipse.equinox.common-3.10.600.v20191004-1420.jar@2:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.runtime/3.17.0.v20191122-2104/org.eclipse.core.runtime-3.17.0.v20191122-2104.jar@4:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.contenttype/3.7.500.v20190916-2125/org.eclipse.core.contenttype-3.7.500.v20190916-2125.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.preferences/3.7.600.v20191017-2055/org.eclipse.equinox.preferences-3.7.600.v20191017-2055.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.registry/3.8.600.v20191017-2055/org.eclipse.equinox.registry-3.8.600.v20191017-2055.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.jobs/3.10.600.v20191122-2104/org.eclipse.core.jobs-3.10.600.v20191122-2104.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.app/1.4.300.v20190815-1535/org.eclipse.equinox.app-1.4.300.v20190815-1535.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.launcher/1.5.600.v20191014-2022/org.eclipse.equinox.launcher-1.5.600.v20191014-2022.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.hamcrest.core/1.3.0.v20180420-1519/org.hamcrest.core-1.3.0.v20180420-1519.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.094.tests
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/org/eclipse/tycho/org.eclipse.tycho.surefire.osgibooter/2.3.0/org.eclipse.tycho.surefire.osgibooter-2.3.0.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/org/eclipse/tycho/org.eclipse.tycho.surefire.junit4/2.3.0/org.eclipse.tycho.surefire.junit4-2.3.0.jar
+[INFO] Executing Test Runtime with timeout 0, logs (if any) will be placed at: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work\data\.metadata\.log
+[INFO] Command line:
+	[C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, -Dosgi.noShutdown=false, -Dosgi.os=win32, -Dosgi.ws=win32, -Dosgi.arch=x86_64, -Dosgi.clean=true, -jar, C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.launcher\1.5.600.v20191014-2022\org.eclipse.equinox.launcher-1.5.600.v20191014-2022.jar, -debug, -consolelog, -data, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work\data, -install, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work, -configuration, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\work\configuration, -application, org.eclipse.tycho.surefire.osgibooter.headlesstest, -testproperties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\target\surefire.properties]
+Configuration location:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.094.tests/target/work/configuration/
+Configuration file:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.094.tests/target/work/configuration/config.ini loaded
+Install location:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.094.tests/target/work/
+Framework located:
+    file:/C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi/3.15.100.v20191114-1701/org.eclipse.osgi-3.15.100.v20191114-1701.jar
+Framework classpath:
+    file:/C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi/3.15.100.v20191114-1701/org.eclipse.osgi-3.15.100.v20191114-1701.jar
+Debug options:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.094.tests/.options not found
+Time to load bundles: 123
+Starting application: 1259
+Running org.eclipse.app4mc.amalthea.converters094.tests.DatatypeConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.135 s - in org.eclipse.app4mc.amalthea.converters094.tests.DatatypeConverterTest
+testConversion[0: Test file: /swModel/datatype-mapping/mapping.amxmi](org.eclipse.app4mc.amalthea.converters094.tests.DatatypeConverterTest)  Time elapsed: 0.079 s
+verification[0: Test file: /swModel/datatype-mapping/mapping.amxmi](org.eclipse.app4mc.amalthea.converters094.tests.DatatypeConverterTest)  Time elapsed: 0.004 s
+Running org.eclipse.app4mc.amalthea.converters094.tests.HwConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013 s - in org.eclipse.app4mc.amalthea.converters094.tests.HwConverterTest
+testConversion[0: Test file: /hwModel/hw.amxmi](org.eclipse.app4mc.amalthea.converters094.tests.HwConverterTest)  Time elapsed: 0.008 s
+verification[0: Test file: /hwModel/hw.amxmi](org.eclipse.app4mc.amalthea.converters094.tests.HwConverterTest)  Time elapsed: 0.003 s
+Running org.eclipse.app4mc.amalthea.converters094.tests.ModeAndModeLabelConverterTest
+Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.041 s - in org.eclipse.app4mc.amalthea.converters094.tests.ModeAndModeLabelConverterTest
+testConversion[0: Test file: /swModel/mode-labels/mode-labels.amxmi](org.eclipse.app4mc.amalthea.converters094.tests.ModeAndModeLabelConverterTest)  Time elapsed: 0.015 s
+verification[0: Test file: /swModel/mode-labels/mode-labels.amxmi](org.eclipse.app4mc.amalthea.converters094.tests.ModeAndModeLabelConverterTest)  Time elapsed: 0.005 s
+testConversion[1: Test file: /swModel/mode-labels/mode-labels2.amxmi](org.eclipse.app4mc.amalthea.converters094.tests.ModeAndModeLabelConverterTest)  Time elapsed: 0.006 s
+verification[1: Test file: /swModel/mode-labels/mode-labels2.amxmi](org.eclipse.app4mc.amalthea.converters094.tests.ModeAndModeLabelConverterTest)  Time elapsed: 0.002 s
+testConversion[2: Test file: /swModel/mode-labels/modes.amxmi](org.eclipse.app4mc.amalthea.converters094.tests.ModeAndModeLabelConverterTest)  Time elapsed: 0.005 s
+verification[2: Test file: /swModel/mode-labels/modes.amxmi](org.eclipse.app4mc.amalthea.converters094.tests.ModeAndModeLabelConverterTest)  Time elapsed: 0.004 s
+Running org.eclipse.app4mc.amalthea.converters094.tests.ModeConditionConverterTest
+Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.038 s - in org.eclipse.app4mc.amalthea.converters094.tests.ModeConditionConverterTest
+testConversion[0: Test file: /swModel/mode-conditions/conditions.amxmi](org.eclipse.app4mc.amalthea.converters094.tests.ModeConditionConverterTest)  Time elapsed: 0.022 s
+verification[0: Test file: /swModel/mode-conditions/conditions.amxmi](org.eclipse.app4mc.amalthea.converters094.tests.ModeConditionConverterTest)  Time elapsed: 0.007 s
+testConversion[1: Test file: /swModel/mode-conditions/modes2.amxmi](org.eclipse.app4mc.amalthea.converters094.tests.ModeConditionConverterTest)  Time elapsed: 0.005 s
+verification[1: Test file: /swModel/mode-conditions/modes2.amxmi](org.eclipse.app4mc.amalthea.converters094.tests.ModeConditionConverterTest)  Time elapsed: 0.002 s
+Running org.eclipse.app4mc.amalthea.converters094.tests.NamespaceConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.01 s - in org.eclipse.app4mc.amalthea.converters094.tests.NamespaceConverterTest
+testConversion[0: Test file: /namespace/model.amxmi](org.eclipse.app4mc.amalthea.converters094.tests.NamespaceConverterTest)  Time elapsed: 0.005 s
+verification[0: Test file: /namespace/model.amxmi](org.eclipse.app4mc.amalthea.converters094.tests.NamespaceConverterTest)  Time elapsed: 0.003 s
+Running org.eclipse.app4mc.amalthea.converters094.tests.RunnableConverterTest
+Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.019 s - in org.eclipse.app4mc.amalthea.converters094.tests.RunnableConverterTest
+testConversion[0: Test file: /swModel/runnable-deadline/runnable.amxmi](org.eclipse.app4mc.amalthea.converters094.tests.RunnableConverterTest)  Time elapsed: 0.008 s
+verification[0: Test file: /swModel/runnable-deadline/runnable.amxmi](org.eclipse.app4mc.amalthea.converters094.tests.RunnableConverterTest)  Time elapsed: 0.003 s
+testConversion[1: Test file: /swModel/runnable-deadline/runnable2.amxmi](org.eclipse.app4mc.amalthea.converters094.tests.RunnableConverterTest)  Time elapsed: 0.004 s
+verification[1: Test file: /swModel/runnable-deadline/runnable2.amxmi](org.eclipse.app4mc.amalthea.converters094.tests.RunnableConverterTest)  Time elapsed: 0.003 s
+
+Results:
+
+Tests run: 20, Failures: 0, Errors: 0, Skipped: 0
+
+[INFO] All tests passed!
+[INFO] 
+[INFO] --< org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests >--
+[INFO] Building [test-bundle] APP4MC Amalthea Converters to 0.9.5 - Tests 1.1.0-SNAPSHOT [35/47]
+[INFO] ------------------------[ eclipse-test-plugin ]-------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): [compile, runtime]
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <baseDir>${project.basedir}</baseDir>
+  <execution>${mojoExecution}</execution>
+  <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
+  <format default-value="yyyyMMddHHmm"/>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id (default-validate-id)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version (default-validate-version)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <strictVersions default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources (default-resources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources default-value="${project.resources}"/>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile (default-compile)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <basedir>${basedir}</basedir>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <compilerId default-value="jdt">${maven.compiler.compilerId}</compilerId>
+  <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
+  <copyResources default-value="true"/>
+  <debug default-value="true">${maven.compiler.debug}</debug>
+  <deriveReleaseCompilerArgumentFromTargetLevel default-value="true"/>
+  <encoding>${project.build.sourceEncoding}</encoding>
+  <executable>${maven.compiler.executable}</executable>
+  <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
+  <fork default-value="false"/>
+  <generatedSourcesDirectory default-value="${project.build.directory}/generated-sources/annotations"/>
+  <logDirectory default-value="${project.build.directory}/compile-logs"/>
+  <mavenCompilerEncoding>${maven.compiler.encoding}</mavenCompilerEncoding>
+  <maxmem>${maven.compiler.maxmem}</maxmem>
+  <meminitial>${maven.compiler.meminitial}</meminitial>
+  <optimize default-value="false">${maven.compiler.optimize}</optimize>
+  <outputFileName>${project.build.finalName}</outputFileName>
+  <project>${project}</project>
+  <release>${maven.compiler.release}</release>
+  <requireJREPackageImports default-value="false"/>
+  <session>${session}</session>
+  <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
+  <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
+  <source>${maven.compiler.source}</source>
+  <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
+  <strictCompilerTarget default-value="false"/>
+  <target>${maven.compiler.target}</target>
+  <useJDK default-value="SYSTEM"/>
+  <useProjectSettings default-value="true"/>
+  <verbose default-value="false">${maven.compiler.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources (default-testResources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources>${project.testResources}</resources>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform (default-target-platform)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <finalName>${project.build.finalName}</finalName>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <strictBinIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attachP2Metadata default-value="true"/>
+  <baselineMode default-value="warn">${tycho.baseline}</baselineMode>
+  <baselineReplace default-value="all">none</baselineReplace>
+  <baselineRepositories>
+    <repository>
+      <url>https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/</url>
+    </repository>
+  </baselineRepositories>
+  <defaultP2Metadata default-value="true"/>
+  <execution>${mojoExecution}</execution>
+  <generateDownloadStatsProperty default-value="false">${tycho.generateDownloadStatsProperty}</generateDownloadStatsProperty>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test (default-test)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <argLine>${tycho.testArgLine}</argLine>
+  <debugPort>${debugPort}</debugPort>
+  <deleteOsgiDataDirectory default-value="true"/>
+  <enableAssertions default-value="false">${enableAssertions}</enableAssertions>
+  <excludedGroups>${excludedGroups}</excludedGroups>
+  <failIfNoTests default-value="true">${failIfNoTests}</failIfNoTests>
+  <forkedProcessTimeoutInSeconds>${surefire.timeout}</forkedProcessTimeoutInSeconds>
+  <groups>${groups}</groups>
+  <includes>
+    <forkMode>never</forkMode>
+    <include>**/*Test.java</include>
+    <include>**/*Tests.java</include>
+  </includes>
+  <osgiDataDirectory default-value="${project.build.directory}/work/data/"/>
+  <parallel>${parallel}</parallel>
+  <perCoreThreadCount default-value="true">${perCoreThreadCount}</perCoreThreadCount>
+  <pluginArtifacts>${plugin.artifacts}</pluginArtifacts>
+  <profileName default-value="DefaultProfile"/>
+  <project>${project}</project>
+  <redirectTestOutputToFile default-value="false">${maven.test.redirectTestOutputToFile}</redirectTestOutputToFile>
+  <reportsDirectory default-value="${project.build.directory}/surefire-reports"/>
+  <rerunFailingTestsCount default-value="0">${surefire.rerunFailingTestsCount}</rerunFailingTestsCount>
+  <runOrder default-value="filesystem"/>
+  <session>${session}</session>
+  <showEclipseLog default-value="false">${tycho.showEclipseLog}</showEclipseLog>
+  <skip>${maven.test.skip}</skip>
+  <skipAfterFailureCount default-value="0">${surefire.skipAfterFailureCount}</skipAfterFailureCount>
+  <skipExec>${maven.test.skipExec}</skipExec>
+  <skipTests>${skipTests}</skipTests>
+  <surefireProperties default-value="${project.build.directory}/surefire.properties"/>
+  <test>${test}</test>
+  <testClass>${testClass}</testClass>
+  <testClassesDirectory>${project.build.outputDirectory}</testClassesDirectory>
+  <testFailureIgnore default-value="false">${maven.test.failure.ignore}</testFailureIgnore>
+  <testRuntime default-value="default"/>
+  <threadCount>${threadCount}</threadCount>
+  <trimStackTrace default-value="true">${trimStackTrace}</trimStackTrace>
+  <useJDK default-value="SYSTEM"/>
+  <useUIHarness default-value="false"/>
+  <useUIThread default-value="true"/>
+  <useUnlimitedThreads default-value="false">${useUnlimitedThreads}</useUnlimitedThreads>
+  <work default-value="${project.build.directory}/work"/>
+</configuration>
+[DEBUG] =======================================================================
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=26500, ConflictMarker.markTime=18500, ConflictMarker.nodeCount=58, ConflictIdSorter.graphTime=12400, ConflictIdSorter.topsortTime=12500, ConflictIdSorter.conflictIdCount=21, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=100601, ConflictResolver.conflictItemCount=57, DefaultDependencyCollector.collectTime=574600, DefaultDependencyCollector.transformTime=184200}
+[DEBUG] org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:eclipse-test-plugin:1.1.0-SNAPSHOT
+[DEBUG]    p2.eclipse-plugin:javax.annotation:jar:1.2.0.v201602091430:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi:jar:3.15.100.v20191114-1701:system
+[DEBUG]    p2.eclipse-plugin:org.apache.felix.scr:jar:2.1.14.v20190123-1619:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.services:jar:3.8.0.v20190206-2147:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.util:jar:3.5.300.v20190708-1141:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.eclipse.app4mc.util.sessionlog:jar:1.1.0.202104211257:system
+[DEBUG]    p2.eclipse-plugin:org.jdom2:jar:2.0.6.v20191125-0928:system
+[DEBUG]    p2.eclipse-plugin:org.junit:jar:junit.jar:4.12.0.v201504281640:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.jaxen:jar:1.1.6.v20191106-1554:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.common:jar:3.10.600.v20191004-1420:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.runtime:jar:3.17.0.v20191122-2104:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.contenttype:jar:3.7.500.v20190916-2125:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.preferences:jar:3.7.600.v20191017-2055:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.registry:jar:3.8.600.v20191017-2055:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.jobs:jar:3.10.600.v20191122-2104:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.app:jar:1.4.300.v20190815-1535:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.launcher:jar:1.5.600.v20191014-2022:system
+[DEBUG]    p2.eclipse-plugin:org.hamcrest.core:jar:1.3.0.v20180420-1519:system
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ org.eclipse.app4mc.amalthea.converters.095.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\test-classes
+[DEBUG] -- end configuration --
+[INFO] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work\dev.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work\configuration\org.eclipse.osgi\framework.info.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-logger-api-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-booter-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-api-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\maven-surefire-common-2.22.2.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work\configuration\org.eclipse.osgi\22\0
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work\configuration\org.eclipse.osgi\22
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work\configuration\org.eclipse.osgi\10\0\.cp\junit.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work\configuration\org.eclipse.osgi\10\0\.cp
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work\configuration\org.eclipse.osgi\10\0
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work\configuration\org.eclipse.osgi\10
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTableLock
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTable.2
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTable.1
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work\configuration\org.eclipse.osgi\.manager
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work\configuration\org.eclipse.osgi
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work\configuration\org.eclipse.equinox.app\.manager\.fileTableLock
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work\configuration\org.eclipse.equinox.app\.manager
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work\configuration\org.eclipse.equinox.app
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work\configuration\org.eclipse.core.runtime\.table.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work\configuration\org.eclipse.core.runtime\.orphans.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work\configuration\org.eclipse.core.runtime\.namespaces.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTableLock
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTable.8
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTable.7
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work\configuration\org.eclipse.core.runtime\.manager
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work\configuration\org.eclipse.core.runtime\.mainData.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work\configuration\org.eclipse.core.runtime\.extraData.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work\configuration\org.eclipse.core.runtime\.contributors.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work\configuration\org.eclipse.core.runtime\.contributions.1
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work\configuration\org.eclipse.core.runtime
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work\configuration\config.ini
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work\configuration
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\surefire.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters095.tests.SwConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters095.tests.StimuliConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters095.tests.NamespaceConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters095.tests.SwConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters095.tests.StimuliConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters095.tests.NamespaceConverterTest.txt
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\surefire-reports
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\sourcebundle-l10n-gen\OSGI-INF\l10n\bundle-src.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\sourcebundle-l10n-gen\OSGI-INF\l10n
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\sourcebundle-l10n-gen\OSGI-INF
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\sourcebundle-l10n-gen
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\p2content.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\p2artifacts.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\org.eclipse.app4mc.amalthea.converters.095.tests-1.1.0-SNAPSHOT.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\org.eclipse.app4mc.amalthea.converters.095.tests-1.1.0-SNAPSHOT-sources.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\maven-archiver\pom.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\maven-archiver
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\MANIFEST.MF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\local-artifacts.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\generated-sources\annotations
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\generated-sources
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\classes\org\eclipse\app4mc\amalthea\converters095\tests\SwConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\classes\org\eclipse\app4mc\amalthea\converters095\tests\StimuliConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\classes\org\eclipse\app4mc\amalthea\converters095\tests\NamespaceConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\classes\org\eclipse\app4mc\amalthea\converters095\tests\Abstract095ConverterTest.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\classes\org\eclipse\app4mc\amalthea\converters095\tests
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\classes\org\eclipse\app4mc\amalthea\converters095
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\classes\org\eclipse\app4mc\amalthea
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\classes\org\eclipse\app4mc
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\classes\org\eclipse
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\classes\org
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\classes
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\site
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier) @ org.eclipse.app4mc.amalthea.converters.095.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier' with basic configurator -->
+[DEBUG]   (f) baseDir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier {execution: default-build-qualifier}
+[DEBUG]   (s) format = yyyyMMddHHmm
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] The project's OSGi version is 1.1.0.202104220626
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-id (default-validate-id) @ org.eclipse.app4mc.amalthea.converters.095.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-version (default-validate-version) @ org.eclipse.app4mc.amalthea.converters.095.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF
+[DEBUG]   (f) strictVersions = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ org.eclipse.app4mc.amalthea.converters.095.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.095.tests.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\src\main\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\src\main\resources
+[INFO] 
+[INFO] --- tycho-compiler-plugin:2.3.0:compile (default-compile) @ org.eclipse.app4mc.amalthea.converters.095.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-compiler-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile' with basic configurator -->
+[DEBUG]   (f) basedir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target
+[DEBUG]   (f) compilerId = jdt
+[DEBUG]   (f) copyResources = true
+[DEBUG]   (f) debug = true
+[DEBUG]   (f) deriveReleaseCompilerArgumentFromTargetLevel = true
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) failOnWarning = false
+[DEBUG]   (f) fork = false
+[DEBUG]   (f) generatedSourcesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\generated-sources\annotations
+[DEBUG]   (f) logDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\compile-logs
+[DEBUG]   (f) optimize = false
+[DEBUG]   (f) outputFileName = org.eclipse.app4mc.amalthea.converters.095.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF
+[DEBUG]   (f) requireJREPackageImports = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showDeprecation = false
+[DEBUG]   (f) showWarnings = false
+[DEBUG]   (f) staleMillis = 0
+[DEBUG]   (f) strictCompilerTarget = false
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useProjectSettings = true
+[DEBUG]   (f) verbose = false
+[DEBUG] -- end configuration --
+[DEBUG] Manifest BREEs: [OSGi profile 'JavaSE-1.8' { source level: 1.8, target level: 1.8}]
+[DEBUG] Target Platform EE: OSGi profile 'JavaSE-11' { source level: 11, target level: 11}
+[DEBUG] Effective source/target: 1.8/1.8
+[DEBUG] Using compiler 'jdt'.
+[DEBUG] Source directories: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\src]
+[DEBUG] Classpath: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\classes
+ C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\classes]
+[DEBUG] Output directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\classes
+[DEBUG] Classpath:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\classes
+[DEBUG]  C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\classes
+[DEBUG] Source roots:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\src
+[INFO] Compiling 4 source files to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\classes
+[DEBUG] JDT compiler args: [-properties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.settings\org.eclipse.jdt.core.prefs, -s, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\generated-sources\annotations, -d, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\classes, -classpath, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\target\classes;C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\classes, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\src\org\eclipse\app4mc\amalthea\converters095\tests\NamespaceConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\src\org\eclipse\app4mc\amalthea\converters095\tests\Abstract095ConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\src\org\eclipse\app4mc\amalthea\converters095\tests\SwConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\src\org\eclipse\app4mc\amalthea\converters095\tests\StimuliConverterTest.java, -g, -nowarn, -target, 1.8, -source, 1.8, --release, 8, -encoding, UTF-8]
+[DEBUG] Original compiler output: 
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ org.eclipse.app4mc.amalthea.converters.095.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\test-classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\src\test\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.095.tests.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\src\test\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\src\test\resources
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ org.eclipse.app4mc.amalthea.converters.095.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.095.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\org.eclipse.app4mc.amalthea.converters.095.tests-1.1.0-SNAPSHOT-sources.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters095/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters095/tests/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters095/tests/Abstract095ConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters095/tests/NamespaceConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters095/tests/StimuliConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters095/tests/SwConverterTest.java
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding directory OSGI-INF/l10n/
+[DEBUG] adding entry OSGI-INF/l10n/bundle-src.properties
+[INFO] 
+[INFO] --- target-platform-configuration:2.3.0:target-platform (default-target-platform) @ org.eclipse.app4mc.amalthea.converters.095.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform from plugin realm ClassRealm[plugin>org.eclipse.tycho:target-platform-configuration:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin) @ org.eclipse.app4mc.amalthea.converters.095.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin' with basic configurator -->
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.095.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) strictBinIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\org.eclipse.app4mc.amalthea.converters.095.tests-1.1.0-SNAPSHOT.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters095/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters095/tests/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters095/tests/Abstract095ConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters095/tests/NamespaceConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters095/tests/StimuliConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters095/tests/SwConverterTest.class
+[DEBUG] adding directory META-INF/maven/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.095.tests/
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.095.tests/pom.xml
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.095.tests/pom.properties
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default) @ org.eclipse.app4mc.amalthea.converters.095.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default' with basic configurator -->
+[DEBUG]   (f) attachP2Metadata = true
+[DEBUG]   (f) baselineMode = warn
+[DEBUG]   (f) baselineReplace = none
+[DEBUG]   (f) url = https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/
+[DEBUG]   (f) baselineRepositories = [org.eclipse.tycho.plugins.p2.Repository@4215cdc4]
+[DEBUG]   (f) defaultP2Metadata = true
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default {execution: default-p2-metadata-default}
+[DEBUG]   (f) generateDownloadStatsProperty = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] No baseline version MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-surefire-plugin:2.3.0:test (default-test) @ org.eclipse.app4mc.amalthea.converters.095.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-surefire-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test' with basic configurator -->
+[DEBUG]   (f) deleteOsgiDataDirectory = true
+[DEBUG]   (f) enableAssertions = false
+[DEBUG]   (f) failIfNoTests = true
+[DEBUG]   (f) includes = [never, **/*Test.java, **/*Tests.java]
+[DEBUG]   (f) osgiDataDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work\data
+[DEBUG]   (f) perCoreThreadCount = true
+[DEBUG]   (f) pluginArtifacts = [org.eclipse.tycho:tycho-surefire-plugin:maven-plugin:2.3.0:, org.apache.maven:maven-plugin-api:jar:3.6.3:compile, org.apache.maven:maven-model:jar:3.6.3:compile, org.apache.maven:maven-artifact:jar:3.6.3:compile, org.apache.commons:commons-lang3:jar:3.8.1:compile, org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4:compile, org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile, org.codehaus.plexus:plexus-utils:jar:3.3.0:compile, org.apache.maven:maven-core:jar:3.6.3:compile, org.apache.maven:maven-settings:jar:3.6.3:compile, org.apache.maven:maven-settings-builder:jar:3.6.3:compile, org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile, org.sonatype.plexus:plexus-cipher:jar:1.7:compile, org.apache.maven:maven-builder-support:jar:3.6.3:compile, org.apache.maven:maven-repository-metadata:jar:3.6.3:compile, org.apache.maven:maven-model-builder:jar:3.6.3:compile, org.apache.maven:maven-resolver-provider:jar:3.6.3:compile, org.slf4j:slf4j-api:jar:1.7.29:compile, org.apache.maven.resolver:maven-resolver-impl:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-api:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-spi:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-util:jar:1.4.1:compile, org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile, commons-io:commons-io:jar:2.5:compile, com.google.inject:guice:jar:no_aop:4.2.1:compile, aopalliance:aopalliance:jar:1.0:compile, com.google.guava:guava:jar:25.1-android:compile, com.google.code.findbugs:jsr305:jar:3.0.2:compile, org.checkerframework:checker-compat-qual:jar:2.0.0:compile, com.google.errorprone:error_prone_annotations:jar:2.1.3:compile, com.google.j2objc:j2objc-annotations:jar:1.1:compile, org.codehaus.mojo:animal-sniffer-annotations:jar:1.14:compile, javax.inject:javax.inject:jar:1:compile, org.codehaus.plexus:plexus-archiver:jar:4.2.2:compile, org.codehaus.plexus:plexus-io:jar:3.2.0:compile, org.apache.commons:commons-compress:jar:1.20:compile, org.iq80.snappy:snappy:jar:0.4:compile, org.tukaani:xz:jar:1.8:runtime, org.eclipse.platform:org.eclipse.osgi:jar:3.16.200:compile, org.apache.maven:maven-compat:jar:3.6.3:compile, org.codehaus.plexus:plexus-interpolation:jar:1.25:compile, org.apache.maven.wagon:wagon-provider-api:jar:3.3.4:compile, org.eclipse.tycho:sisu-equinox-launching:jar:2.3.0:compile, org.apache.commons:commons-exec:jar:1.3:compile, org.eclipse.tycho:org.eclipse.tycho.surefire.osgibooter:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit4:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit47:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit5:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit54:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit55:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit56:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit57:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.testng:jar:2.3.0:runtime, org.apache.maven.surefire:surefire-api:jar:2.22.2:compile, org.apache.maven.surefire:surefire-logger-api:jar:2.22.2:compile, org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile, org.apache.maven.surefire:maven-surefire-common:jar:2.22.2:compile, org.apache.maven.surefire:surefire-booter:jar:2.22.2:compile, org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile, org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile, classworlds:classworlds:jar:1.1-alpha-2:compile, org.apache.maven:maven-project:jar:2.2.1:compile, org.apache.maven:maven-profile:jar:2.2.1:compile, org.apache.maven:maven-artifact-manager:jar:2.2.1:compile, backport-util-concurrent:backport-util-concurrent:jar:3.1:compile, org.apache.maven:maven-plugin-registry:jar:2.2.1:compile, org.apache.maven:maven-toolchain:jar:2.2.1:compile, org.codehaus.plexus:plexus-java:jar:0.9.10:compile, org.ow2.asm:asm:jar:6.2:compile, com.thoughtworks.qdox:qdox:jar:2.0-M8:compile]
+[DEBUG]   (f) profileName = DefaultProfile
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF
+[DEBUG]   (f) redirectTestOutputToFile = false
+[DEBUG]   (f) reportsDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\surefire-reports
+[DEBUG]   (f) rerunFailingTestsCount = 0
+[DEBUG]   (f) runOrder = filesystem
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showEclipseLog = false
+[DEBUG]   (f) skipAfterFailureCount = 0
+[DEBUG]   (f) surefireProperties = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\surefire.properties
+[DEBUG]   (f) testClassesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\classes
+[DEBUG]   (f) testFailureIgnore = false
+[DEBUG]   (f) testRuntime = default
+[DEBUG]   (f) trimStackTrace = true
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useUIHarness = false
+[DEBUG]   (f) useUIThread = true
+[DEBUG]   (f) useUnlimitedThreads = false
+[DEBUG]   (f) work = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work
+[DEBUG] -- end configuration --
+[DEBUG] Using test framework provider org.eclipse.tycho.surefire.provider.impl.JUnit4Provider
+[DEBUG] Installation OSGI bundles:
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/javax.annotation/1.2.0.v201602091430/javax.annotation-1.2.0.v201602091430.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.apache.felix.scr/2.1.14.v20190123-1619/org.apache.felix.scr-2.1.14.v20190123-1619.jar@1:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi.services/3.8.0.v20190206-2147/org.eclipse.osgi.services-3.8.0.v20190206-2147.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi.util/3.5.300.v20190708-1141/org.eclipse.osgi.util-3.5.300.v20190708-1141.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.095/target/org.eclipse.app4mc.amalthea.converters.095-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.common/target/org.eclipse.app4mc.amalthea.converters.common-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.app4mc.util.sessionlog/1.1.0.202104211257/org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.jdom2/2.0.6.v20191125-0928/org.jdom2-2.0.6.v20191125-0928.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.095.tests
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.junit/4.12.0.v201504281640/org.junit-4.12.0.v201504281640.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.common.tests/target/org.eclipse.app4mc.amalthea.converters.common.tests-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.jaxen/1.1.6.v20191106-1554/org.jaxen-1.1.6.v20191106-1554.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.common/3.10.600.v20191004-1420/org.eclipse.equinox.common-3.10.600.v20191004-1420.jar@2:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.runtime/3.17.0.v20191122-2104/org.eclipse.core.runtime-3.17.0.v20191122-2104.jar@4:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.contenttype/3.7.500.v20190916-2125/org.eclipse.core.contenttype-3.7.500.v20190916-2125.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.preferences/3.7.600.v20191017-2055/org.eclipse.equinox.preferences-3.7.600.v20191017-2055.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.registry/3.8.600.v20191017-2055/org.eclipse.equinox.registry-3.8.600.v20191017-2055.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.jobs/3.10.600.v20191122-2104/org.eclipse.core.jobs-3.10.600.v20191122-2104.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.app/1.4.300.v20190815-1535/org.eclipse.equinox.app-1.4.300.v20190815-1535.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.launcher/1.5.600.v20191014-2022/org.eclipse.equinox.launcher-1.5.600.v20191014-2022.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.hamcrest.core/1.3.0.v20180420-1519/org.hamcrest.core-1.3.0.v20180420-1519.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.095.tests
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/org/eclipse/tycho/org.eclipse.tycho.surefire.osgibooter/2.3.0/org.eclipse.tycho.surefire.osgibooter-2.3.0.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/org/eclipse/tycho/org.eclipse.tycho.surefire.junit4/2.3.0/org.eclipse.tycho.surefire.junit4-2.3.0.jar
+[INFO] Executing Test Runtime with timeout 0, logs (if any) will be placed at: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work\data\.metadata\.log
+[INFO] Command line:
+	[C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, -Dosgi.noShutdown=false, -Dosgi.os=win32, -Dosgi.ws=win32, -Dosgi.arch=x86_64, -Dosgi.clean=true, -jar, C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.launcher\1.5.600.v20191014-2022\org.eclipse.equinox.launcher-1.5.600.v20191014-2022.jar, -debug, -consolelog, -data, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work\data, -install, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work, -configuration, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\work\configuration, -application, org.eclipse.tycho.surefire.osgibooter.headlesstest, -testproperties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\target\surefire.properties]
+Configuration location:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.095.tests/target/work/configuration/
+Configuration file:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.095.tests/target/work/configuration/config.ini loaded
+Install location:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.095.tests/target/work/
+Framework located:
+    file:/C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi/3.15.100.v20191114-1701/org.eclipse.osgi-3.15.100.v20191114-1701.jar
+Framework classpath:
+    file:/C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi/3.15.100.v20191114-1701/org.eclipse.osgi-3.15.100.v20191114-1701.jar
+Debug options:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.095.tests/.options not found
+Time to load bundles: 128
+Starting application: 1252
+Running org.eclipse.app4mc.amalthea.converters095.tests.NamespaceConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.139 s - in org.eclipse.app4mc.amalthea.converters095.tests.NamespaceConverterTest
+testConversion[0: Test file: \namespace\model.amxmi](org.eclipse.app4mc.amalthea.converters095.tests.NamespaceConverterTest)  Time elapsed: 0.065 s
+verification[0: Test file: \namespace\model.amxmi](org.eclipse.app4mc.amalthea.converters095.tests.NamespaceConverterTest)  Time elapsed: 0.003 s
+Running org.eclipse.app4mc.amalthea.converters095.tests.StimuliConverterTest
+Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.138 s - in org.eclipse.app4mc.amalthea.converters095.tests.StimuliConverterTest
+testConversion[0: Test file: \democar\democar.amxmi](org.eclipse.app4mc.amalthea.converters095.tests.StimuliConverterTest)  Time elapsed: 0.089 s
+verification[0: Test file: \democar\democar.amxmi](org.eclipse.app4mc.amalthea.converters095.tests.StimuliConverterTest)  Time elapsed: 0.025 s
+testConversion[1: Test file: /stimuli/model.amxmi](org.eclipse.app4mc.amalthea.converters095.tests.StimuliConverterTest)  Time elapsed: 0.014 s
+verification[1: Test file: /stimuli/model.amxmi](org.eclipse.app4mc.amalthea.converters095.tests.StimuliConverterTest)  Time elapsed: 0.004 s
+Running org.eclipse.app4mc.amalthea.converters095.tests.SwConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.048 s - in org.eclipse.app4mc.amalthea.converters095.tests.SwConverterTest
+testConversion[0: Test file: \democar\democar.amxmi](org.eclipse.app4mc.amalthea.converters095.tests.SwConverterTest)  Time elapsed: 0.036 s
+verification[0: Test file: \democar\democar.amxmi](org.eclipse.app4mc.amalthea.converters095.tests.SwConverterTest)  Time elapsed: 0.009 s
+
+Results:
+
+Tests run: 8, Failures: 0, Errors: 0, Skipped: 0
+
+[INFO] All tests passed!
+[INFO] 
+[INFO] --< org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests >--
+[INFO] Building [test-bundle] APP4MC Amalthea Converters to 0.9.6 - Tests 1.1.0-SNAPSHOT [36/47]
+[INFO] ------------------------[ eclipse-test-plugin ]-------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): [compile, runtime]
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <baseDir>${project.basedir}</baseDir>
+  <execution>${mojoExecution}</execution>
+  <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
+  <format default-value="yyyyMMddHHmm"/>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id (default-validate-id)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version (default-validate-version)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <strictVersions default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources (default-resources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources default-value="${project.resources}"/>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile (default-compile)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <basedir>${basedir}</basedir>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <compilerId default-value="jdt">${maven.compiler.compilerId}</compilerId>
+  <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
+  <copyResources default-value="true"/>
+  <debug default-value="true">${maven.compiler.debug}</debug>
+  <deriveReleaseCompilerArgumentFromTargetLevel default-value="true"/>
+  <encoding>${project.build.sourceEncoding}</encoding>
+  <executable>${maven.compiler.executable}</executable>
+  <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
+  <fork default-value="false"/>
+  <generatedSourcesDirectory default-value="${project.build.directory}/generated-sources/annotations"/>
+  <logDirectory default-value="${project.build.directory}/compile-logs"/>
+  <mavenCompilerEncoding>${maven.compiler.encoding}</mavenCompilerEncoding>
+  <maxmem>${maven.compiler.maxmem}</maxmem>
+  <meminitial>${maven.compiler.meminitial}</meminitial>
+  <optimize default-value="false">${maven.compiler.optimize}</optimize>
+  <outputFileName>${project.build.finalName}</outputFileName>
+  <project>${project}</project>
+  <release>${maven.compiler.release}</release>
+  <requireJREPackageImports default-value="false"/>
+  <session>${session}</session>
+  <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
+  <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
+  <source>${maven.compiler.source}</source>
+  <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
+  <strictCompilerTarget default-value="false"/>
+  <target>${maven.compiler.target}</target>
+  <useJDK default-value="SYSTEM"/>
+  <useProjectSettings default-value="true"/>
+  <verbose default-value="false">${maven.compiler.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources (default-testResources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources>${project.testResources}</resources>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform (default-target-platform)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <finalName>${project.build.finalName}</finalName>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <strictBinIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attachP2Metadata default-value="true"/>
+  <baselineMode default-value="warn">${tycho.baseline}</baselineMode>
+  <baselineReplace default-value="all">none</baselineReplace>
+  <baselineRepositories>
+    <repository>
+      <url>https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/</url>
+    </repository>
+  </baselineRepositories>
+  <defaultP2Metadata default-value="true"/>
+  <execution>${mojoExecution}</execution>
+  <generateDownloadStatsProperty default-value="false">${tycho.generateDownloadStatsProperty}</generateDownloadStatsProperty>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test (default-test)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <argLine>${tycho.testArgLine}</argLine>
+  <debugPort>${debugPort}</debugPort>
+  <deleteOsgiDataDirectory default-value="true"/>
+  <enableAssertions default-value="false">${enableAssertions}</enableAssertions>
+  <excludedGroups>${excludedGroups}</excludedGroups>
+  <failIfNoTests default-value="true">${failIfNoTests}</failIfNoTests>
+  <forkedProcessTimeoutInSeconds>${surefire.timeout}</forkedProcessTimeoutInSeconds>
+  <groups>${groups}</groups>
+  <includes>
+    <forkMode>never</forkMode>
+    <include>**/*Test.java</include>
+    <include>**/*Tests.java</include>
+  </includes>
+  <osgiDataDirectory default-value="${project.build.directory}/work/data/"/>
+  <parallel>${parallel}</parallel>
+  <perCoreThreadCount default-value="true">${perCoreThreadCount}</perCoreThreadCount>
+  <pluginArtifacts>${plugin.artifacts}</pluginArtifacts>
+  <profileName default-value="DefaultProfile"/>
+  <project>${project}</project>
+  <redirectTestOutputToFile default-value="false">${maven.test.redirectTestOutputToFile}</redirectTestOutputToFile>
+  <reportsDirectory default-value="${project.build.directory}/surefire-reports"/>
+  <rerunFailingTestsCount default-value="0">${surefire.rerunFailingTestsCount}</rerunFailingTestsCount>
+  <runOrder default-value="filesystem"/>
+  <session>${session}</session>
+  <showEclipseLog default-value="false">${tycho.showEclipseLog}</showEclipseLog>
+  <skip>${maven.test.skip}</skip>
+  <skipAfterFailureCount default-value="0">${surefire.skipAfterFailureCount}</skipAfterFailureCount>
+  <skipExec>${maven.test.skipExec}</skipExec>
+  <skipTests>${skipTests}</skipTests>
+  <surefireProperties default-value="${project.build.directory}/surefire.properties"/>
+  <test>${test}</test>
+  <testClass>${testClass}</testClass>
+  <testClassesDirectory>${project.build.outputDirectory}</testClassesDirectory>
+  <testFailureIgnore default-value="false">${maven.test.failure.ignore}</testFailureIgnore>
+  <testRuntime default-value="default"/>
+  <threadCount>${threadCount}</threadCount>
+  <trimStackTrace default-value="true">${trimStackTrace}</trimStackTrace>
+  <useJDK default-value="SYSTEM"/>
+  <useUIHarness default-value="false"/>
+  <useUIThread default-value="true"/>
+  <useUnlimitedThreads default-value="false">${useUnlimitedThreads}</useUnlimitedThreads>
+  <work default-value="${project.build.directory}/work"/>
+</configuration>
+[DEBUG] =======================================================================
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=40301, ConflictMarker.markTime=21700, ConflictMarker.nodeCount=58, ConflictIdSorter.graphTime=12900, ConflictIdSorter.topsortTime=13500, ConflictIdSorter.conflictIdCount=21, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=111700, ConflictResolver.conflictItemCount=57, DefaultDependencyCollector.collectTime=518400, DefaultDependencyCollector.transformTime=216000}
+[DEBUG] org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:eclipse-test-plugin:1.1.0-SNAPSHOT
+[DEBUG]    p2.eclipse-plugin:javax.annotation:jar:1.2.0.v201602091430:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi:jar:3.15.100.v20191114-1701:system
+[DEBUG]    p2.eclipse-plugin:org.apache.felix.scr:jar:2.1.14.v20190123-1619:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.services:jar:3.8.0.v20190206-2147:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.util:jar:3.5.300.v20190708-1141:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.eclipse.app4mc.util.sessionlog:jar:1.1.0.202104211257:system
+[DEBUG]    p2.eclipse-plugin:org.jdom2:jar:2.0.6.v20191125-0928:system
+[DEBUG]    p2.eclipse-plugin:org.junit:jar:junit.jar:4.12.0.v201504281640:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.jaxen:jar:1.1.6.v20191106-1554:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.common:jar:3.10.600.v20191004-1420:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.runtime:jar:3.17.0.v20191122-2104:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.contenttype:jar:3.7.500.v20190916-2125:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.preferences:jar:3.7.600.v20191017-2055:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.registry:jar:3.8.600.v20191017-2055:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.jobs:jar:3.10.600.v20191122-2104:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.app:jar:1.4.300.v20190815-1535:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.launcher:jar:1.5.600.v20191014-2022:system
+[DEBUG]    p2.eclipse-plugin:org.hamcrest.core:jar:1.3.0.v20180420-1519:system
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ org.eclipse.app4mc.amalthea.converters.096.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\test-classes
+[DEBUG] -- end configuration --
+[INFO] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work\dev.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work\configuration\org.eclipse.osgi\framework.info.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-logger-api-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-booter-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-api-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\maven-surefire-common-2.22.2.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work\configuration\org.eclipse.osgi\22\0
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work\configuration\org.eclipse.osgi\22
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work\configuration\org.eclipse.osgi\10\0\.cp\junit.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work\configuration\org.eclipse.osgi\10\0\.cp
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work\configuration\org.eclipse.osgi\10\0
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work\configuration\org.eclipse.osgi\10
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTableLock
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTable.2
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTable.1
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work\configuration\org.eclipse.osgi\.manager
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work\configuration\org.eclipse.osgi
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work\configuration\org.eclipse.equinox.app\.manager\.fileTableLock
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work\configuration\org.eclipse.equinox.app\.manager
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work\configuration\org.eclipse.equinox.app
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work\configuration\org.eclipse.core.runtime\.table.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work\configuration\org.eclipse.core.runtime\.orphans.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work\configuration\org.eclipse.core.runtime\.namespaces.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTableLock
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTable.8
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTable.7
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work\configuration\org.eclipse.core.runtime\.manager
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work\configuration\org.eclipse.core.runtime\.mainData.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work\configuration\org.eclipse.core.runtime\.extraData.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work\configuration\org.eclipse.core.runtime\.contributors.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work\configuration\org.eclipse.core.runtime\.contributions.1
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work\configuration\org.eclipse.core.runtime
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work\configuration\config.ini
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work\configuration
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\surefire.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters096.tests.SwConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters096.tests.NamespaceConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters096.tests.ConstraintsConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters096.tests.SwConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters096.tests.NamespaceConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters096.tests.ConstraintsConverterTest.txt
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\surefire-reports
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\sourcebundle-l10n-gen\OSGI-INF\l10n\bundle-src.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\sourcebundle-l10n-gen\OSGI-INF\l10n
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\sourcebundle-l10n-gen\OSGI-INF
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\sourcebundle-l10n-gen
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\p2content.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\p2artifacts.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\org.eclipse.app4mc.amalthea.converters.096.tests-1.1.0-SNAPSHOT.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\org.eclipse.app4mc.amalthea.converters.096.tests-1.1.0-SNAPSHOT-sources.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\maven-archiver\pom.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\maven-archiver
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\MANIFEST.MF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\local-artifacts.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\generated-sources\annotations
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\generated-sources
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\classes\org\eclipse\app4mc\amalthea\converters096\tests\SwConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\classes\org\eclipse\app4mc\amalthea\converters096\tests\NamespaceConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\classes\org\eclipse\app4mc\amalthea\converters096\tests\ConstraintsConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\classes\org\eclipse\app4mc\amalthea\converters096\tests\Abstract096ConverterTest.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\classes\org\eclipse\app4mc\amalthea\converters096\tests
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\classes\org\eclipse\app4mc\amalthea\converters096
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\classes\org\eclipse\app4mc\amalthea
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\classes\org\eclipse\app4mc
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\classes\org\eclipse
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\classes\org
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\classes
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\site
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier) @ org.eclipse.app4mc.amalthea.converters.096.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier' with basic configurator -->
+[DEBUG]   (f) baseDir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier {execution: default-build-qualifier}
+[DEBUG]   (s) format = yyyyMMddHHmm
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] The project's OSGi version is 1.1.0.202104220626
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-id (default-validate-id) @ org.eclipse.app4mc.amalthea.converters.096.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-version (default-validate-version) @ org.eclipse.app4mc.amalthea.converters.096.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF
+[DEBUG]   (f) strictVersions = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ org.eclipse.app4mc.amalthea.converters.096.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.096.tests.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\src\main\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\src\main\resources
+[INFO] 
+[INFO] --- tycho-compiler-plugin:2.3.0:compile (default-compile) @ org.eclipse.app4mc.amalthea.converters.096.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-compiler-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile' with basic configurator -->
+[DEBUG]   (f) basedir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target
+[DEBUG]   (f) compilerId = jdt
+[DEBUG]   (f) copyResources = true
+[DEBUG]   (f) debug = true
+[DEBUG]   (f) deriveReleaseCompilerArgumentFromTargetLevel = true
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) failOnWarning = false
+[DEBUG]   (f) fork = false
+[DEBUG]   (f) generatedSourcesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\generated-sources\annotations
+[DEBUG]   (f) logDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\compile-logs
+[DEBUG]   (f) optimize = false
+[DEBUG]   (f) outputFileName = org.eclipse.app4mc.amalthea.converters.096.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF
+[DEBUG]   (f) requireJREPackageImports = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showDeprecation = false
+[DEBUG]   (f) showWarnings = false
+[DEBUG]   (f) staleMillis = 0
+[DEBUG]   (f) strictCompilerTarget = false
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useProjectSettings = true
+[DEBUG]   (f) verbose = false
+[DEBUG] -- end configuration --
+[DEBUG] Manifest BREEs: [OSGi profile 'JavaSE-1.8' { source level: 1.8, target level: 1.8}]
+[DEBUG] Target Platform EE: OSGi profile 'JavaSE-11' { source level: 11, target level: 11}
+[DEBUG] Effective source/target: 1.8/1.8
+[DEBUG] Using compiler 'jdt'.
+[DEBUG] Source directories: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\src]
+[DEBUG] Classpath: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\classes
+ C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\classes]
+[DEBUG] Output directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\classes
+[DEBUG] Classpath:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\classes
+[DEBUG]  C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\classes
+[DEBUG] Source roots:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\src
+[INFO] Compiling 4 source files to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\classes
+[DEBUG] JDT compiler args: [-properties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.settings\org.eclipse.jdt.core.prefs, -s, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\generated-sources\annotations, -d, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\classes, -classpath, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\target\classes;C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\classes, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\src\org\eclipse\app4mc\amalthea\converters096\tests\NamespaceConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\src\org\eclipse\app4mc\amalthea\converters096\tests\ConstraintsConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\src\org\eclipse\app4mc\amalthea\converters096\tests\SwConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\src\org\eclipse\app4mc\amalthea\converters096\tests\Abstract096ConverterTest.java, -g, -nowarn, -target, 1.8, -source, 1.8, --release, 8, -encoding, UTF-8]
+[DEBUG] Original compiler output: 
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ org.eclipse.app4mc.amalthea.converters.096.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\test-classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\src\test\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.096.tests.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\src\test\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\src\test\resources
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ org.eclipse.app4mc.amalthea.converters.096.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.096.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\org.eclipse.app4mc.amalthea.converters.096.tests-1.1.0-SNAPSHOT-sources.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters096/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters096/tests/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters096/tests/Abstract096ConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters096/tests/ConstraintsConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters096/tests/NamespaceConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters096/tests/SwConverterTest.java
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding directory OSGI-INF/l10n/
+[DEBUG] adding entry OSGI-INF/l10n/bundle-src.properties
+[INFO] 
+[INFO] --- target-platform-configuration:2.3.0:target-platform (default-target-platform) @ org.eclipse.app4mc.amalthea.converters.096.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform from plugin realm ClassRealm[plugin>org.eclipse.tycho:target-platform-configuration:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin) @ org.eclipse.app4mc.amalthea.converters.096.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin' with basic configurator -->
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.096.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) strictBinIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\org.eclipse.app4mc.amalthea.converters.096.tests-1.1.0-SNAPSHOT.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters096/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters096/tests/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters096/tests/Abstract096ConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters096/tests/ConstraintsConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters096/tests/NamespaceConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters096/tests/SwConverterTest.class
+[DEBUG] adding directory META-INF/maven/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.096.tests/
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.096.tests/pom.xml
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.096.tests/pom.properties
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default) @ org.eclipse.app4mc.amalthea.converters.096.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default' with basic configurator -->
+[DEBUG]   (f) attachP2Metadata = true
+[DEBUG]   (f) baselineMode = warn
+[DEBUG]   (f) baselineReplace = none
+[DEBUG]   (f) url = https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/
+[DEBUG]   (f) baselineRepositories = [org.eclipse.tycho.plugins.p2.Repository@432b7b7d]
+[DEBUG]   (f) defaultP2Metadata = true
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default {execution: default-p2-metadata-default}
+[DEBUG]   (f) generateDownloadStatsProperty = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] No baseline version MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-surefire-plugin:2.3.0:test (default-test) @ org.eclipse.app4mc.amalthea.converters.096.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-surefire-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test' with basic configurator -->
+[DEBUG]   (f) deleteOsgiDataDirectory = true
+[DEBUG]   (f) enableAssertions = false
+[DEBUG]   (f) failIfNoTests = true
+[DEBUG]   (f) includes = [never, **/*Test.java, **/*Tests.java]
+[DEBUG]   (f) osgiDataDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work\data
+[DEBUG]   (f) perCoreThreadCount = true
+[DEBUG]   (f) pluginArtifacts = [org.eclipse.tycho:tycho-surefire-plugin:maven-plugin:2.3.0:, org.apache.maven:maven-plugin-api:jar:3.6.3:compile, org.apache.maven:maven-model:jar:3.6.3:compile, org.apache.maven:maven-artifact:jar:3.6.3:compile, org.apache.commons:commons-lang3:jar:3.8.1:compile, org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4:compile, org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile, org.codehaus.plexus:plexus-utils:jar:3.3.0:compile, org.apache.maven:maven-core:jar:3.6.3:compile, org.apache.maven:maven-settings:jar:3.6.3:compile, org.apache.maven:maven-settings-builder:jar:3.6.3:compile, org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile, org.sonatype.plexus:plexus-cipher:jar:1.7:compile, org.apache.maven:maven-builder-support:jar:3.6.3:compile, org.apache.maven:maven-repository-metadata:jar:3.6.3:compile, org.apache.maven:maven-model-builder:jar:3.6.3:compile, org.apache.maven:maven-resolver-provider:jar:3.6.3:compile, org.slf4j:slf4j-api:jar:1.7.29:compile, org.apache.maven.resolver:maven-resolver-impl:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-api:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-spi:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-util:jar:1.4.1:compile, org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile, commons-io:commons-io:jar:2.5:compile, com.google.inject:guice:jar:no_aop:4.2.1:compile, aopalliance:aopalliance:jar:1.0:compile, com.google.guava:guava:jar:25.1-android:compile, com.google.code.findbugs:jsr305:jar:3.0.2:compile, org.checkerframework:checker-compat-qual:jar:2.0.0:compile, com.google.errorprone:error_prone_annotations:jar:2.1.3:compile, com.google.j2objc:j2objc-annotations:jar:1.1:compile, org.codehaus.mojo:animal-sniffer-annotations:jar:1.14:compile, javax.inject:javax.inject:jar:1:compile, org.codehaus.plexus:plexus-archiver:jar:4.2.2:compile, org.codehaus.plexus:plexus-io:jar:3.2.0:compile, org.apache.commons:commons-compress:jar:1.20:compile, org.iq80.snappy:snappy:jar:0.4:compile, org.tukaani:xz:jar:1.8:runtime, org.eclipse.platform:org.eclipse.osgi:jar:3.16.200:compile, org.apache.maven:maven-compat:jar:3.6.3:compile, org.codehaus.plexus:plexus-interpolation:jar:1.25:compile, org.apache.maven.wagon:wagon-provider-api:jar:3.3.4:compile, org.eclipse.tycho:sisu-equinox-launching:jar:2.3.0:compile, org.apache.commons:commons-exec:jar:1.3:compile, org.eclipse.tycho:org.eclipse.tycho.surefire.osgibooter:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit4:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit47:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit5:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit54:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit55:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit56:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit57:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.testng:jar:2.3.0:runtime, org.apache.maven.surefire:surefire-api:jar:2.22.2:compile, org.apache.maven.surefire:surefire-logger-api:jar:2.22.2:compile, org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile, org.apache.maven.surefire:maven-surefire-common:jar:2.22.2:compile, org.apache.maven.surefire:surefire-booter:jar:2.22.2:compile, org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile, org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile, classworlds:classworlds:jar:1.1-alpha-2:compile, org.apache.maven:maven-project:jar:2.2.1:compile, org.apache.maven:maven-profile:jar:2.2.1:compile, org.apache.maven:maven-artifact-manager:jar:2.2.1:compile, backport-util-concurrent:backport-util-concurrent:jar:3.1:compile, org.apache.maven:maven-plugin-registry:jar:2.2.1:compile, org.apache.maven:maven-toolchain:jar:2.2.1:compile, org.codehaus.plexus:plexus-java:jar:0.9.10:compile, org.ow2.asm:asm:jar:6.2:compile, com.thoughtworks.qdox:qdox:jar:2.0-M8:compile]
+[DEBUG]   (f) profileName = DefaultProfile
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF
+[DEBUG]   (f) redirectTestOutputToFile = false
+[DEBUG]   (f) reportsDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\surefire-reports
+[DEBUG]   (f) rerunFailingTestsCount = 0
+[DEBUG]   (f) runOrder = filesystem
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showEclipseLog = false
+[DEBUG]   (f) skipAfterFailureCount = 0
+[DEBUG]   (f) surefireProperties = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\surefire.properties
+[DEBUG]   (f) testClassesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\classes
+[DEBUG]   (f) testFailureIgnore = false
+[DEBUG]   (f) testRuntime = default
+[DEBUG]   (f) trimStackTrace = true
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useUIHarness = false
+[DEBUG]   (f) useUIThread = true
+[DEBUG]   (f) useUnlimitedThreads = false
+[DEBUG]   (f) work = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work
+[DEBUG] -- end configuration --
+[DEBUG] Using test framework provider org.eclipse.tycho.surefire.provider.impl.JUnit4Provider
+[DEBUG] Installation OSGI bundles:
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/javax.annotation/1.2.0.v201602091430/javax.annotation-1.2.0.v201602091430.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.apache.felix.scr/2.1.14.v20190123-1619/org.apache.felix.scr-2.1.14.v20190123-1619.jar@1:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi.services/3.8.0.v20190206-2147/org.eclipse.osgi.services-3.8.0.v20190206-2147.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi.util/3.5.300.v20190708-1141/org.eclipse.osgi.util-3.5.300.v20190708-1141.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.096/target/org.eclipse.app4mc.amalthea.converters.096-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.common/target/org.eclipse.app4mc.amalthea.converters.common-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.app4mc.util.sessionlog/1.1.0.202104211257/org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.jdom2/2.0.6.v20191125-0928/org.jdom2-2.0.6.v20191125-0928.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.096.tests
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.junit/4.12.0.v201504281640/org.junit-4.12.0.v201504281640.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.common.tests/target/org.eclipse.app4mc.amalthea.converters.common.tests-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.jaxen/1.1.6.v20191106-1554/org.jaxen-1.1.6.v20191106-1554.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.common/3.10.600.v20191004-1420/org.eclipse.equinox.common-3.10.600.v20191004-1420.jar@2:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.runtime/3.17.0.v20191122-2104/org.eclipse.core.runtime-3.17.0.v20191122-2104.jar@4:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.contenttype/3.7.500.v20190916-2125/org.eclipse.core.contenttype-3.7.500.v20190916-2125.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.preferences/3.7.600.v20191017-2055/org.eclipse.equinox.preferences-3.7.600.v20191017-2055.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.registry/3.8.600.v20191017-2055/org.eclipse.equinox.registry-3.8.600.v20191017-2055.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.jobs/3.10.600.v20191122-2104/org.eclipse.core.jobs-3.10.600.v20191122-2104.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.app/1.4.300.v20190815-1535/org.eclipse.equinox.app-1.4.300.v20190815-1535.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.launcher/1.5.600.v20191014-2022/org.eclipse.equinox.launcher-1.5.600.v20191014-2022.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.hamcrest.core/1.3.0.v20180420-1519/org.hamcrest.core-1.3.0.v20180420-1519.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.096.tests
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/org/eclipse/tycho/org.eclipse.tycho.surefire.osgibooter/2.3.0/org.eclipse.tycho.surefire.osgibooter-2.3.0.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/org/eclipse/tycho/org.eclipse.tycho.surefire.junit4/2.3.0/org.eclipse.tycho.surefire.junit4-2.3.0.jar
+[INFO] Executing Test Runtime with timeout 0, logs (if any) will be placed at: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work\data\.metadata\.log
+[INFO] Command line:
+	[C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, -Dosgi.noShutdown=false, -Dosgi.os=win32, -Dosgi.ws=win32, -Dosgi.arch=x86_64, -Dosgi.clean=true, -jar, C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.launcher\1.5.600.v20191014-2022\org.eclipse.equinox.launcher-1.5.600.v20191014-2022.jar, -debug, -consolelog, -data, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work\data, -install, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work, -configuration, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\work\configuration, -application, org.eclipse.tycho.surefire.osgibooter.headlesstest, -testproperties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\target\surefire.properties]
+Configuration location:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.096.tests/target/work/configuration/
+Configuration file:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.096.tests/target/work/configuration/config.ini loaded
+Install location:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.096.tests/target/work/
+Framework located:
+    file:/C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi/3.15.100.v20191114-1701/org.eclipse.osgi-3.15.100.v20191114-1701.jar
+Framework classpath:
+    file:/C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi/3.15.100.v20191114-1701/org.eclipse.osgi-3.15.100.v20191114-1701.jar
+Debug options:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.096.tests/.options not found
+Time to load bundles: 117
+Starting application: 1228
+Running org.eclipse.app4mc.amalthea.converters096.tests.ConstraintsConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.193 s - in org.eclipse.app4mc.amalthea.converters096.tests.ConstraintsConverterTest
+testConversion[0: Test file: /eventchain/democar.amxmi](org.eclipse.app4mc.amalthea.converters096.tests.ConstraintsConverterTest)  Time elapsed: 0.114 s
+verification[0: Test file: /eventchain/democar.amxmi](org.eclipse.app4mc.amalthea.converters096.tests.ConstraintsConverterTest)  Time elapsed: 0.017 s
+Running org.eclipse.app4mc.amalthea.converters096.tests.NamespaceConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.013 s - in org.eclipse.app4mc.amalthea.converters096.tests.NamespaceConverterTest
+testConversion[0: Test file: /namespace2/model.amxmi](org.eclipse.app4mc.amalthea.converters096.tests.NamespaceConverterTest)  Time elapsed: 0.008 s
+verification[0: Test file: /namespace2/model.amxmi](org.eclipse.app4mc.amalthea.converters096.tests.NamespaceConverterTest)  Time elapsed: 0.003 s
+Running org.eclipse.app4mc.amalthea.converters096.tests.SwConverterTest
+Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.087 s - in org.eclipse.app4mc.amalthea.converters096.tests.SwConverterTest
+testConversion[0: Test file: /democar/democar.amxmi](org.eclipse.app4mc.amalthea.converters096.tests.SwConverterTest)  Time elapsed: 0.048 s
+verification[0: Test file: /democar/democar.amxmi](org.eclipse.app4mc.amalthea.converters096.tests.SwConverterTest)  Time elapsed: 0.017 s
+testConversion[1: Test file: /modecondition/modecondition.amxmi](org.eclipse.app4mc.amalthea.converters096.tests.SwConverterTest)  Time elapsed: 0.014 s
+verification[1: Test file: /modecondition/modecondition.amxmi](org.eclipse.app4mc.amalthea.converters096.tests.SwConverterTest)  Time elapsed: 0.005 s
+
+Results:
+
+Tests run: 8, Failures: 0, Errors: 0, Skipped: 0
+
+[INFO] All tests passed!
+[INFO] 
+[INFO] --< org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests >--
+[INFO] Building [test-bundle] APP4MC Amalthea Converters to 0.9.7 - Tests 1.1.0-SNAPSHOT [37/47]
+[INFO] ------------------------[ eclipse-test-plugin ]-------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): [compile, runtime]
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <baseDir>${project.basedir}</baseDir>
+  <execution>${mojoExecution}</execution>
+  <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
+  <format default-value="yyyyMMddHHmm"/>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id (default-validate-id)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version (default-validate-version)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <strictVersions default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources (default-resources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources default-value="${project.resources}"/>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile (default-compile)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <basedir>${basedir}</basedir>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <compilerId default-value="jdt">${maven.compiler.compilerId}</compilerId>
+  <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
+  <copyResources default-value="true"/>
+  <debug default-value="true">${maven.compiler.debug}</debug>
+  <deriveReleaseCompilerArgumentFromTargetLevel default-value="true"/>
+  <encoding>${project.build.sourceEncoding}</encoding>
+  <executable>${maven.compiler.executable}</executable>
+  <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
+  <fork default-value="false"/>
+  <generatedSourcesDirectory default-value="${project.build.directory}/generated-sources/annotations"/>
+  <logDirectory default-value="${project.build.directory}/compile-logs"/>
+  <mavenCompilerEncoding>${maven.compiler.encoding}</mavenCompilerEncoding>
+  <maxmem>${maven.compiler.maxmem}</maxmem>
+  <meminitial>${maven.compiler.meminitial}</meminitial>
+  <optimize default-value="false">${maven.compiler.optimize}</optimize>
+  <outputFileName>${project.build.finalName}</outputFileName>
+  <project>${project}</project>
+  <release>${maven.compiler.release}</release>
+  <requireJREPackageImports default-value="false"/>
+  <session>${session}</session>
+  <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
+  <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
+  <source>${maven.compiler.source}</source>
+  <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
+  <strictCompilerTarget default-value="false"/>
+  <target>${maven.compiler.target}</target>
+  <useJDK default-value="SYSTEM"/>
+  <useProjectSettings default-value="true"/>
+  <verbose default-value="false">${maven.compiler.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources (default-testResources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources>${project.testResources}</resources>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform (default-target-platform)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <finalName>${project.build.finalName}</finalName>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <strictBinIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attachP2Metadata default-value="true"/>
+  <baselineMode default-value="warn">${tycho.baseline}</baselineMode>
+  <baselineReplace default-value="all">none</baselineReplace>
+  <baselineRepositories>
+    <repository>
+      <url>https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/</url>
+    </repository>
+  </baselineRepositories>
+  <defaultP2Metadata default-value="true"/>
+  <execution>${mojoExecution}</execution>
+  <generateDownloadStatsProperty default-value="false">${tycho.generateDownloadStatsProperty}</generateDownloadStatsProperty>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test (default-test)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <argLine>${tycho.testArgLine}</argLine>
+  <debugPort>${debugPort}</debugPort>
+  <deleteOsgiDataDirectory default-value="true"/>
+  <enableAssertions default-value="false">${enableAssertions}</enableAssertions>
+  <excludedGroups>${excludedGroups}</excludedGroups>
+  <failIfNoTests default-value="true">${failIfNoTests}</failIfNoTests>
+  <forkedProcessTimeoutInSeconds>${surefire.timeout}</forkedProcessTimeoutInSeconds>
+  <groups>${groups}</groups>
+  <includes>
+    <forkMode>never</forkMode>
+    <include>**/*Test.java</include>
+    <include>**/*Tests.java</include>
+  </includes>
+  <osgiDataDirectory default-value="${project.build.directory}/work/data/"/>
+  <parallel>${parallel}</parallel>
+  <perCoreThreadCount default-value="true">${perCoreThreadCount}</perCoreThreadCount>
+  <pluginArtifacts>${plugin.artifacts}</pluginArtifacts>
+  <profileName default-value="DefaultProfile"/>
+  <project>${project}</project>
+  <redirectTestOutputToFile default-value="false">${maven.test.redirectTestOutputToFile}</redirectTestOutputToFile>
+  <reportsDirectory default-value="${project.build.directory}/surefire-reports"/>
+  <rerunFailingTestsCount default-value="0">${surefire.rerunFailingTestsCount}</rerunFailingTestsCount>
+  <runOrder default-value="filesystem"/>
+  <session>${session}</session>
+  <showEclipseLog default-value="false">${tycho.showEclipseLog}</showEclipseLog>
+  <skip>${maven.test.skip}</skip>
+  <skipAfterFailureCount default-value="0">${surefire.skipAfterFailureCount}</skipAfterFailureCount>
+  <skipExec>${maven.test.skipExec}</skipExec>
+  <skipTests>${skipTests}</skipTests>
+  <surefireProperties default-value="${project.build.directory}/surefire.properties"/>
+  <test>${test}</test>
+  <testClass>${testClass}</testClass>
+  <testClassesDirectory>${project.build.outputDirectory}</testClassesDirectory>
+  <testFailureIgnore default-value="false">${maven.test.failure.ignore}</testFailureIgnore>
+  <testRuntime default-value="default"/>
+  <threadCount>${threadCount}</threadCount>
+  <trimStackTrace default-value="true">${trimStackTrace}</trimStackTrace>
+  <useJDK default-value="SYSTEM"/>
+  <useUIHarness default-value="false"/>
+  <useUIThread default-value="true"/>
+  <useUnlimitedThreads default-value="false">${useUnlimitedThreads}</useUnlimitedThreads>
+  <work default-value="${project.build.directory}/work"/>
+</configuration>
+[DEBUG] =======================================================================
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=62700, ConflictMarker.markTime=21200, ConflictMarker.nodeCount=58, ConflictIdSorter.graphTime=12600, ConflictIdSorter.topsortTime=14999, ConflictIdSorter.conflictIdCount=21, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=111200, ConflictResolver.conflictItemCount=57, DefaultDependencyCollector.collectTime=584800, DefaultDependencyCollector.transformTime=238000}
+[DEBUG] org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:eclipse-test-plugin:1.1.0-SNAPSHOT
+[DEBUG]    p2.eclipse-plugin:javax.annotation:jar:1.2.0.v201602091430:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi:jar:3.15.100.v20191114-1701:system
+[DEBUG]    p2.eclipse-plugin:org.apache.felix.scr:jar:2.1.14.v20190123-1619:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.services:jar:3.8.0.v20190206-2147:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.util:jar:3.5.300.v20190708-1141:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.eclipse.app4mc.util.sessionlog:jar:1.1.0.202104211257:system
+[DEBUG]    p2.eclipse-plugin:org.jdom2:jar:2.0.6.v20191125-0928:system
+[DEBUG]    p2.eclipse-plugin:org.junit:jar:junit.jar:4.12.0.v201504281640:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.jaxen:jar:1.1.6.v20191106-1554:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.common:jar:3.10.600.v20191004-1420:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.runtime:jar:3.17.0.v20191122-2104:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.contenttype:jar:3.7.500.v20190916-2125:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.preferences:jar:3.7.600.v20191017-2055:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.registry:jar:3.8.600.v20191017-2055:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.jobs:jar:3.10.600.v20191122-2104:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.app:jar:1.4.300.v20190815-1535:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.launcher:jar:1.5.600.v20191014-2022:system
+[DEBUG]    p2.eclipse-plugin:org.hamcrest.core:jar:1.3.0.v20180420-1519:system
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ org.eclipse.app4mc.amalthea.converters.097.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\test-classes
+[DEBUG] -- end configuration --
+[INFO] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work\dev.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work\configuration\org.eclipse.osgi\framework.info.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-logger-api-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-booter-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-api-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\maven-surefire-common-2.22.2.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work\configuration\org.eclipse.osgi\22\0
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work\configuration\org.eclipse.osgi\22
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work\configuration\org.eclipse.osgi\10\0\.cp\junit.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work\configuration\org.eclipse.osgi\10\0\.cp
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work\configuration\org.eclipse.osgi\10\0
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work\configuration\org.eclipse.osgi\10
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTableLock
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTable.2
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTable.1
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work\configuration\org.eclipse.osgi\.manager
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work\configuration\org.eclipse.osgi
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work\configuration\org.eclipse.equinox.app\.manager\.fileTableLock
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work\configuration\org.eclipse.equinox.app\.manager
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work\configuration\org.eclipse.equinox.app
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work\configuration\org.eclipse.core.runtime\.table.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work\configuration\org.eclipse.core.runtime\.orphans.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work\configuration\org.eclipse.core.runtime\.namespaces.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTableLock
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTable.8
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTable.7
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work\configuration\org.eclipse.core.runtime\.manager
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work\configuration\org.eclipse.core.runtime\.mainData.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work\configuration\org.eclipse.core.runtime\.extraData.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work\configuration\org.eclipse.core.runtime\.contributors.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work\configuration\org.eclipse.core.runtime\.contributions.1
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work\configuration\org.eclipse.core.runtime
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work\configuration\config.ini
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work\configuration
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\surefire.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters097.tests.NamespaceConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters097.tests.ComponentsModelConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters097.tests.AmltModelReferencePostProcessorTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters097.tests.NamespaceConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters097.tests.ComponentsModelConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters097.tests.AmltModelReferencePostProcessorTest.txt
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\surefire-reports
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\sourcebundle-l10n-gen\OSGI-INF\l10n\bundle-src.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\sourcebundle-l10n-gen\OSGI-INF\l10n
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\sourcebundle-l10n-gen\OSGI-INF
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\sourcebundle-l10n-gen
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\p2content.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\p2artifacts.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\org.eclipse.app4mc.amalthea.converters.097.tests-1.1.0-SNAPSHOT.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\org.eclipse.app4mc.amalthea.converters.097.tests-1.1.0-SNAPSHOT-sources.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\maven-archiver\pom.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\maven-archiver
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\MANIFEST.MF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\local-artifacts.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\generated-sources\annotations
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\generated-sources
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\classes\org\eclipse\app4mc\amalthea\converters097\tests\NamespaceConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\classes\org\eclipse\app4mc\amalthea\converters097\tests\ComponentsModelConverterTest2.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\classes\org\eclipse\app4mc\amalthea\converters097\tests\ComponentsModelConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\classes\org\eclipse\app4mc\amalthea\converters097\tests\AmltModelReferencePostProcessorTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\classes\org\eclipse\app4mc\amalthea\converters097\tests\Abstract097ConverterTest.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\classes\org\eclipse\app4mc\amalthea\converters097\tests
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\classes\org\eclipse\app4mc\amalthea\converters097
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\classes\org\eclipse\app4mc\amalthea
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\classes\org\eclipse\app4mc
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\classes\org\eclipse
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\classes\org
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\classes
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\site
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier) @ org.eclipse.app4mc.amalthea.converters.097.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier' with basic configurator -->
+[DEBUG]   (f) baseDir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier {execution: default-build-qualifier}
+[DEBUG]   (s) format = yyyyMMddHHmm
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] The project's OSGi version is 1.1.0.202104220626
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-id (default-validate-id) @ org.eclipse.app4mc.amalthea.converters.097.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-version (default-validate-version) @ org.eclipse.app4mc.amalthea.converters.097.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF
+[DEBUG]   (f) strictVersions = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ org.eclipse.app4mc.amalthea.converters.097.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.097.tests.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\src\main\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\src\main\resources
+[INFO] 
+[INFO] --- tycho-compiler-plugin:2.3.0:compile (default-compile) @ org.eclipse.app4mc.amalthea.converters.097.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-compiler-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile' with basic configurator -->
+[DEBUG]   (f) basedir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target
+[DEBUG]   (f) compilerId = jdt
+[DEBUG]   (f) copyResources = true
+[DEBUG]   (f) debug = true
+[DEBUG]   (f) deriveReleaseCompilerArgumentFromTargetLevel = true
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) failOnWarning = false
+[DEBUG]   (f) fork = false
+[DEBUG]   (f) generatedSourcesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\generated-sources\annotations
+[DEBUG]   (f) logDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\compile-logs
+[DEBUG]   (f) optimize = false
+[DEBUG]   (f) outputFileName = org.eclipse.app4mc.amalthea.converters.097.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF
+[DEBUG]   (f) requireJREPackageImports = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showDeprecation = false
+[DEBUG]   (f) showWarnings = false
+[DEBUG]   (f) staleMillis = 0
+[DEBUG]   (f) strictCompilerTarget = false
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useProjectSettings = true
+[DEBUG]   (f) verbose = false
+[DEBUG] -- end configuration --
+[DEBUG] Manifest BREEs: [OSGi profile 'JavaSE-1.8' { source level: 1.8, target level: 1.8}]
+[DEBUG] Target Platform EE: OSGi profile 'JavaSE-11' { source level: 11, target level: 11}
+[DEBUG] Effective source/target: 1.8/1.8
+[DEBUG] Using compiler 'jdt'.
+[DEBUG] Source directories: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\src]
+[DEBUG] Classpath: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\classes
+ C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\classes]
+[DEBUG] Output directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\classes
+[DEBUG] Classpath:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\classes
+[DEBUG]  C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\classes
+[DEBUG] Source roots:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\src
+[INFO] Compiling 5 source files to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\classes
+[DEBUG] JDT compiler args: [-properties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.settings\org.eclipse.jdt.core.prefs, -s, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\generated-sources\annotations, -d, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\classes, -classpath, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\target\classes;C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\classes, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\src\org\eclipse\app4mc\amalthea\converters097\tests\AmltModelReferencePostProcessorTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\src\org\eclipse\app4mc\amalthea\converters097\tests\ComponentsModelConverterTest2.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\src\org\eclipse\app4mc\amalthea\converters097\tests\NamespaceConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\src\org\eclipse\app4mc\amalthea\converters097\tests\ComponentsModelConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\src\org\eclipse\app4mc\amalthea\converters097\tests\Abstract097ConverterTest.java, -g, -nowarn, -target, 1.8, -source, 1.8, --release, 8, -encoding, UTF-8]
+[DEBUG] Original compiler output: 
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ org.eclipse.app4mc.amalthea.converters.097.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\test-classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\src\test\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.097.tests.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\src\test\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\src\test\resources
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ org.eclipse.app4mc.amalthea.converters.097.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.097.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\org.eclipse.app4mc.amalthea.converters.097.tests-1.1.0-SNAPSHOT-sources.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters097/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters097/tests/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters097/tests/Abstract097ConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters097/tests/AmltModelReferencePostProcessorTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters097/tests/ComponentsModelConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters097/tests/ComponentsModelConverterTest2.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters097/tests/NamespaceConverterTest.java
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding directory OSGI-INF/l10n/
+[DEBUG] adding entry OSGI-INF/l10n/bundle-src.properties
+[INFO] 
+[INFO] --- target-platform-configuration:2.3.0:target-platform (default-target-platform) @ org.eclipse.app4mc.amalthea.converters.097.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform from plugin realm ClassRealm[plugin>org.eclipse.tycho:target-platform-configuration:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin) @ org.eclipse.app4mc.amalthea.converters.097.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin' with basic configurator -->
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.097.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) strictBinIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\org.eclipse.app4mc.amalthea.converters.097.tests-1.1.0-SNAPSHOT.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters097/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters097/tests/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters097/tests/Abstract097ConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters097/tests/AmltModelReferencePostProcessorTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters097/tests/ComponentsModelConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters097/tests/ComponentsModelConverterTest2.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters097/tests/NamespaceConverterTest.class
+[DEBUG] adding directory META-INF/maven/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.097.tests/
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.097.tests/pom.xml
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.097.tests/pom.properties
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default) @ org.eclipse.app4mc.amalthea.converters.097.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default' with basic configurator -->
+[DEBUG]   (f) attachP2Metadata = true
+[DEBUG]   (f) baselineMode = warn
+[DEBUG]   (f) baselineReplace = none
+[DEBUG]   (f) url = https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/
+[DEBUG]   (f) baselineRepositories = [org.eclipse.tycho.plugins.p2.Repository@3b72a58]
+[DEBUG]   (f) defaultP2Metadata = true
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default {execution: default-p2-metadata-default}
+[DEBUG]   (f) generateDownloadStatsProperty = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] No baseline version MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-surefire-plugin:2.3.0:test (default-test) @ org.eclipse.app4mc.amalthea.converters.097.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-surefire-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test' with basic configurator -->
+[DEBUG]   (f) deleteOsgiDataDirectory = true
+[DEBUG]   (f) enableAssertions = false
+[DEBUG]   (f) failIfNoTests = true
+[DEBUG]   (f) includes = [never, **/*Test.java, **/*Tests.java]
+[DEBUG]   (f) osgiDataDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work\data
+[DEBUG]   (f) perCoreThreadCount = true
+[DEBUG]   (f) pluginArtifacts = [org.eclipse.tycho:tycho-surefire-plugin:maven-plugin:2.3.0:, org.apache.maven:maven-plugin-api:jar:3.6.3:compile, org.apache.maven:maven-model:jar:3.6.3:compile, org.apache.maven:maven-artifact:jar:3.6.3:compile, org.apache.commons:commons-lang3:jar:3.8.1:compile, org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4:compile, org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile, org.codehaus.plexus:plexus-utils:jar:3.3.0:compile, org.apache.maven:maven-core:jar:3.6.3:compile, org.apache.maven:maven-settings:jar:3.6.3:compile, org.apache.maven:maven-settings-builder:jar:3.6.3:compile, org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile, org.sonatype.plexus:plexus-cipher:jar:1.7:compile, org.apache.maven:maven-builder-support:jar:3.6.3:compile, org.apache.maven:maven-repository-metadata:jar:3.6.3:compile, org.apache.maven:maven-model-builder:jar:3.6.3:compile, org.apache.maven:maven-resolver-provider:jar:3.6.3:compile, org.slf4j:slf4j-api:jar:1.7.29:compile, org.apache.maven.resolver:maven-resolver-impl:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-api:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-spi:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-util:jar:1.4.1:compile, org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile, commons-io:commons-io:jar:2.5:compile, com.google.inject:guice:jar:no_aop:4.2.1:compile, aopalliance:aopalliance:jar:1.0:compile, com.google.guava:guava:jar:25.1-android:compile, com.google.code.findbugs:jsr305:jar:3.0.2:compile, org.checkerframework:checker-compat-qual:jar:2.0.0:compile, com.google.errorprone:error_prone_annotations:jar:2.1.3:compile, com.google.j2objc:j2objc-annotations:jar:1.1:compile, org.codehaus.mojo:animal-sniffer-annotations:jar:1.14:compile, javax.inject:javax.inject:jar:1:compile, org.codehaus.plexus:plexus-archiver:jar:4.2.2:compile, org.codehaus.plexus:plexus-io:jar:3.2.0:compile, org.apache.commons:commons-compress:jar:1.20:compile, org.iq80.snappy:snappy:jar:0.4:compile, org.tukaani:xz:jar:1.8:runtime, org.eclipse.platform:org.eclipse.osgi:jar:3.16.200:compile, org.apache.maven:maven-compat:jar:3.6.3:compile, org.codehaus.plexus:plexus-interpolation:jar:1.25:compile, org.apache.maven.wagon:wagon-provider-api:jar:3.3.4:compile, org.eclipse.tycho:sisu-equinox-launching:jar:2.3.0:compile, org.apache.commons:commons-exec:jar:1.3:compile, org.eclipse.tycho:org.eclipse.tycho.surefire.osgibooter:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit4:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit47:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit5:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit54:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit55:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit56:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit57:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.testng:jar:2.3.0:runtime, org.apache.maven.surefire:surefire-api:jar:2.22.2:compile, org.apache.maven.surefire:surefire-logger-api:jar:2.22.2:compile, org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile, org.apache.maven.surefire:maven-surefire-common:jar:2.22.2:compile, org.apache.maven.surefire:surefire-booter:jar:2.22.2:compile, org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile, org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile, classworlds:classworlds:jar:1.1-alpha-2:compile, org.apache.maven:maven-project:jar:2.2.1:compile, org.apache.maven:maven-profile:jar:2.2.1:compile, org.apache.maven:maven-artifact-manager:jar:2.2.1:compile, backport-util-concurrent:backport-util-concurrent:jar:3.1:compile, org.apache.maven:maven-plugin-registry:jar:2.2.1:compile, org.apache.maven:maven-toolchain:jar:2.2.1:compile, org.codehaus.plexus:plexus-java:jar:0.9.10:compile, org.ow2.asm:asm:jar:6.2:compile, com.thoughtworks.qdox:qdox:jar:2.0-M8:compile]
+[DEBUG]   (f) profileName = DefaultProfile
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF
+[DEBUG]   (f) redirectTestOutputToFile = false
+[DEBUG]   (f) reportsDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\surefire-reports
+[DEBUG]   (f) rerunFailingTestsCount = 0
+[DEBUG]   (f) runOrder = filesystem
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showEclipseLog = false
+[DEBUG]   (f) skipAfterFailureCount = 0
+[DEBUG]   (f) surefireProperties = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\surefire.properties
+[DEBUG]   (f) testClassesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\classes
+[DEBUG]   (f) testFailureIgnore = false
+[DEBUG]   (f) testRuntime = default
+[DEBUG]   (f) trimStackTrace = true
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useUIHarness = false
+[DEBUG]   (f) useUIThread = true
+[DEBUG]   (f) useUnlimitedThreads = false
+[DEBUG]   (f) work = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work
+[DEBUG] -- end configuration --
+[DEBUG] Using test framework provider org.eclipse.tycho.surefire.provider.impl.JUnit4Provider
+[DEBUG] Installation OSGI bundles:
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/javax.annotation/1.2.0.v201602091430/javax.annotation-1.2.0.v201602091430.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.apache.felix.scr/2.1.14.v20190123-1619/org.apache.felix.scr-2.1.14.v20190123-1619.jar@1:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi.services/3.8.0.v20190206-2147/org.eclipse.osgi.services-3.8.0.v20190206-2147.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi.util/3.5.300.v20190708-1141/org.eclipse.osgi.util-3.5.300.v20190708-1141.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.097/target/org.eclipse.app4mc.amalthea.converters.097-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.common/target/org.eclipse.app4mc.amalthea.converters.common-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.app4mc.util.sessionlog/1.1.0.202104211257/org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.jdom2/2.0.6.v20191125-0928/org.jdom2-2.0.6.v20191125-0928.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.097.tests
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.junit/4.12.0.v201504281640/org.junit-4.12.0.v201504281640.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.common.tests/target/org.eclipse.app4mc.amalthea.converters.common.tests-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.jaxen/1.1.6.v20191106-1554/org.jaxen-1.1.6.v20191106-1554.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.common/3.10.600.v20191004-1420/org.eclipse.equinox.common-3.10.600.v20191004-1420.jar@2:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.runtime/3.17.0.v20191122-2104/org.eclipse.core.runtime-3.17.0.v20191122-2104.jar@4:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.contenttype/3.7.500.v20190916-2125/org.eclipse.core.contenttype-3.7.500.v20190916-2125.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.preferences/3.7.600.v20191017-2055/org.eclipse.equinox.preferences-3.7.600.v20191017-2055.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.registry/3.8.600.v20191017-2055/org.eclipse.equinox.registry-3.8.600.v20191017-2055.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.jobs/3.10.600.v20191122-2104/org.eclipse.core.jobs-3.10.600.v20191122-2104.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.app/1.4.300.v20190815-1535/org.eclipse.equinox.app-1.4.300.v20190815-1535.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.launcher/1.5.600.v20191014-2022/org.eclipse.equinox.launcher-1.5.600.v20191014-2022.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.hamcrest.core/1.3.0.v20180420-1519/org.hamcrest.core-1.3.0.v20180420-1519.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.097.tests
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/org/eclipse/tycho/org.eclipse.tycho.surefire.osgibooter/2.3.0/org.eclipse.tycho.surefire.osgibooter-2.3.0.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/org/eclipse/tycho/org.eclipse.tycho.surefire.junit4/2.3.0/org.eclipse.tycho.surefire.junit4-2.3.0.jar
+[INFO] Executing Test Runtime with timeout 0, logs (if any) will be placed at: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work\data\.metadata\.log
+[INFO] Command line:
+	[C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, -Dosgi.noShutdown=false, -Dosgi.os=win32, -Dosgi.ws=win32, -Dosgi.arch=x86_64, -Dosgi.clean=true, -jar, C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.launcher\1.5.600.v20191014-2022\org.eclipse.equinox.launcher-1.5.600.v20191014-2022.jar, -debug, -consolelog, -data, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work\data, -install, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work, -configuration, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\work\configuration, -application, org.eclipse.tycho.surefire.osgibooter.headlesstest, -testproperties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\target\surefire.properties]
+Configuration location:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.097.tests/target/work/configuration/
+Configuration file:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.097.tests/target/work/configuration/config.ini loaded
+Install location:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.097.tests/target/work/
+Framework located:
+    file:/C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi/3.15.100.v20191114-1701/org.eclipse.osgi-3.15.100.v20191114-1701.jar
+Framework classpath:
+    file:/C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi/3.15.100.v20191114-1701/org.eclipse.osgi-3.15.100.v20191114-1701.jar
+Debug options:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.097.tests/.options not found
+Time to load bundles: 118
+Starting application: 1243
+Running org.eclipse.app4mc.amalthea.converters097.tests.AmltModelReferencePostProcessorTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.177 s - in org.eclipse.app4mc.amalthea.converters097.tests.AmltModelReferencePostProcessorTest
+testConversion[0: Test file: /modelreference/model.amxmi](org.eclipse.app4mc.amalthea.converters097.tests.AmltModelReferencePostProcessorTest)  Time elapsed: 0.104 s
+verification[0: Test file: /modelreference/model.amxmi](org.eclipse.app4mc.amalthea.converters097.tests.AmltModelReferencePostProcessorTest)  Time elapsed: 0.01 s
+Running org.eclipse.app4mc.amalthea.converters097.tests.ComponentsModelConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.102 s - in org.eclipse.app4mc.amalthea.converters097.tests.ComponentsModelConverterTest
+testConversion[0: Test file: /component/model.amxmi](org.eclipse.app4mc.amalthea.converters097.tests.ComponentsModelConverterTest)  Time elapsed: 0.073 s
+verification[0: Test file: /component/model.amxmi](org.eclipse.app4mc.amalthea.converters097.tests.ComponentsModelConverterTest)  Time elapsed: 0.027 s
+Running org.eclipse.app4mc.amalthea.converters097.tests.NamespaceConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.012 s - in org.eclipse.app4mc.amalthea.converters097.tests.NamespaceConverterTest
+testConversion[0: Test file: /namespace/model.amxmi](org.eclipse.app4mc.amalthea.converters097.tests.NamespaceConverterTest)  Time elapsed: 0.007 s
+verification[0: Test file: /namespace/model.amxmi](org.eclipse.app4mc.amalthea.converters097.tests.NamespaceConverterTest)  Time elapsed: 0.003 s
+
+Results:
+
+Tests run: 6, Failures: 0, Errors: 0, Skipped: 0
+
+[INFO] All tests passed!
+[INFO] 
+[INFO] --< org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests >--
+[INFO] Building [test-bundle] APP4MC Amalthea Converters to 1.0.0 - Tests 1.1.0-SNAPSHOT [38/47]
+[INFO] ------------------------[ eclipse-test-plugin ]-------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): [compile, runtime]
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <baseDir>${project.basedir}</baseDir>
+  <execution>${mojoExecution}</execution>
+  <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
+  <format default-value="yyyyMMddHHmm"/>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id (default-validate-id)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version (default-validate-version)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <strictVersions default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources (default-resources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources default-value="${project.resources}"/>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile (default-compile)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <basedir>${basedir}</basedir>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <compilerId default-value="jdt">${maven.compiler.compilerId}</compilerId>
+  <compilerVersion>${maven.compiler.compilerVersion}</compilerVersion>
+  <copyResources default-value="true"/>
+  <debug default-value="true">${maven.compiler.debug}</debug>
+  <deriveReleaseCompilerArgumentFromTargetLevel default-value="true"/>
+  <encoding>${project.build.sourceEncoding}</encoding>
+  <executable>${maven.compiler.executable}</executable>
+  <failOnWarning default-value="false">${maven.compiler.failOnWarning}</failOnWarning>
+  <fork default-value="false"/>
+  <generatedSourcesDirectory default-value="${project.build.directory}/generated-sources/annotations"/>
+  <logDirectory default-value="${project.build.directory}/compile-logs"/>
+  <mavenCompilerEncoding>${maven.compiler.encoding}</mavenCompilerEncoding>
+  <maxmem>${maven.compiler.maxmem}</maxmem>
+  <meminitial>${maven.compiler.meminitial}</meminitial>
+  <optimize default-value="false">${maven.compiler.optimize}</optimize>
+  <outputFileName>${project.build.finalName}</outputFileName>
+  <project>${project}</project>
+  <release>${maven.compiler.release}</release>
+  <requireJREPackageImports default-value="false"/>
+  <session>${session}</session>
+  <showDeprecation default-value="false">${maven.compiler.showDeprecation}</showDeprecation>
+  <showWarnings default-value="false">${maven.compiler.showWarnings}</showWarnings>
+  <source>${maven.compiler.source}</source>
+  <staleMillis default-value="0">${lastModGranularityMs}</staleMillis>
+  <strictCompilerTarget default-value="false"/>
+  <target>${maven.compiler.target}</target>
+  <useJDK default-value="SYSTEM"/>
+  <useProjectSettings default-value="true"/>
+  <verbose default-value="false">${maven.compiler.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources (default-testResources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory>${project.build.testOutputDirectory}</outputDirectory>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources>${project.testResources}</resources>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform (default-target-platform)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildDirectory>${project.build.directory}</buildDirectory>
+  <finalName>${project.build.finalName}</finalName>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <strictBinIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attachP2Metadata default-value="true"/>
+  <baselineMode default-value="warn">${tycho.baseline}</baselineMode>
+  <baselineReplace default-value="all">none</baselineReplace>
+  <baselineRepositories>
+    <repository>
+      <url>https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/</url>
+    </repository>
+  </baselineRepositories>
+  <defaultP2Metadata default-value="true"/>
+  <execution>${mojoExecution}</execution>
+  <generateDownloadStatsProperty default-value="false">${tycho.generateDownloadStatsProperty}</generateDownloadStatsProperty>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test (default-test)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <argLine>${tycho.testArgLine}</argLine>
+  <debugPort>${debugPort}</debugPort>
+  <deleteOsgiDataDirectory default-value="true"/>
+  <enableAssertions default-value="false">${enableAssertions}</enableAssertions>
+  <excludedGroups>${excludedGroups}</excludedGroups>
+  <failIfNoTests default-value="true">${failIfNoTests}</failIfNoTests>
+  <forkedProcessTimeoutInSeconds>${surefire.timeout}</forkedProcessTimeoutInSeconds>
+  <groups>${groups}</groups>
+  <includes>
+    <forkMode>never</forkMode>
+    <include>**/*Test.java</include>
+    <include>**/*Tests.java</include>
+  </includes>
+  <osgiDataDirectory default-value="${project.build.directory}/work/data/"/>
+  <parallel>${parallel}</parallel>
+  <perCoreThreadCount default-value="true">${perCoreThreadCount}</perCoreThreadCount>
+  <pluginArtifacts>${plugin.artifacts}</pluginArtifacts>
+  <profileName default-value="DefaultProfile"/>
+  <project>${project}</project>
+  <redirectTestOutputToFile default-value="false">${maven.test.redirectTestOutputToFile}</redirectTestOutputToFile>
+  <reportsDirectory default-value="${project.build.directory}/surefire-reports"/>
+  <rerunFailingTestsCount default-value="0">${surefire.rerunFailingTestsCount}</rerunFailingTestsCount>
+  <runOrder default-value="filesystem"/>
+  <session>${session}</session>
+  <showEclipseLog default-value="false">${tycho.showEclipseLog}</showEclipseLog>
+  <skip>${maven.test.skip}</skip>
+  <skipAfterFailureCount default-value="0">${surefire.skipAfterFailureCount}</skipAfterFailureCount>
+  <skipExec>${maven.test.skipExec}</skipExec>
+  <skipTests>${skipTests}</skipTests>
+  <surefireProperties default-value="${project.build.directory}/surefire.properties"/>
+  <test>${test}</test>
+  <testClass>${testClass}</testClass>
+  <testClassesDirectory>${project.build.outputDirectory}</testClassesDirectory>
+  <testFailureIgnore default-value="false">${maven.test.failure.ignore}</testFailureIgnore>
+  <testRuntime default-value="default"/>
+  <threadCount>${threadCount}</threadCount>
+  <trimStackTrace default-value="true">${trimStackTrace}</trimStackTrace>
+  <useJDK default-value="SYSTEM"/>
+  <useUIHarness default-value="false"/>
+  <useUIThread default-value="true"/>
+  <useUnlimitedThreads default-value="false">${useUnlimitedThreads}</useUnlimitedThreads>
+  <work default-value="${project.build.directory}/work"/>
+</configuration>
+[DEBUG] =======================================================================
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=29100, ConflictMarker.markTime=24999, ConflictMarker.nodeCount=58, ConflictIdSorter.graphTime=14401, ConflictIdSorter.topsortTime=15100, ConflictIdSorter.conflictIdCount=21, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=128201, ConflictResolver.conflictItemCount=57, DefaultDependencyCollector.collectTime=699400, DefaultDependencyCollector.transformTime=228700}
+[DEBUG] org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:eclipse-test-plugin:1.1.0-SNAPSHOT
+[DEBUG]    p2.eclipse-plugin:javax.annotation:jar:1.2.0.v201602091430:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi:jar:3.15.100.v20191114-1701:system
+[DEBUG]    p2.eclipse-plugin:org.apache.felix.scr:jar:2.1.14.v20190123-1619:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.services:jar:3.8.0.v20190206-2147:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.osgi.util:jar:3.5.300.v20190708-1141:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.eclipse.app4mc.util.sessionlog:jar:1.1.0.202104211257:system
+[DEBUG]    p2.eclipse-plugin:org.jdom2:jar:2.0.6.v20191125-0928:system
+[DEBUG]    p2.eclipse-plugin:org.junit:jar:junit.jar:4.12.0.v201504281640:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    p2.eclipse-plugin:org.jaxen:jar:1.1.6.v20191106-1554:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.common:jar:3.10.600.v20191004-1420:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.runtime:jar:3.17.0.v20191122-2104:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.contenttype:jar:3.7.500.v20190916-2125:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.preferences:jar:3.7.600.v20191017-2055:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.registry:jar:3.8.600.v20191017-2055:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.core.jobs:jar:3.10.600.v20191122-2104:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.app:jar:1.4.300.v20190815-1535:system
+[DEBUG]    p2.eclipse-plugin:org.eclipse.equinox.launcher:jar:1.5.600.v20191014-2022:system
+[DEBUG]    p2.eclipse-plugin:org.hamcrest.core:jar:1.3.0.v20180420-1519:system
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ org.eclipse.app4mc.amalthea.converters.100.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\test-classes
+[DEBUG] -- end configuration --
+[INFO] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work\dev.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work\configuration\org.eclipse.osgi\framework.info.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-logger-api-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-booter-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\surefire-api-2.22.2.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars\maven-surefire-common-2.22.2.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp\jars
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work\configuration\org.eclipse.osgi\22\0\.cp
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work\configuration\org.eclipse.osgi\22\0
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work\configuration\org.eclipse.osgi\22
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work\configuration\org.eclipse.osgi\10\0\.cp\junit.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work\configuration\org.eclipse.osgi\10\0\.cp
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work\configuration\org.eclipse.osgi\10\0
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work\configuration\org.eclipse.osgi\10
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTableLock
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTable.2
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work\configuration\org.eclipse.osgi\.manager\.fileTable.1
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work\configuration\org.eclipse.osgi\.manager
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work\configuration\org.eclipse.osgi
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work\configuration\org.eclipse.equinox.app\.manager\.fileTableLock
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work\configuration\org.eclipse.equinox.app\.manager
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work\configuration\org.eclipse.equinox.app
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work\configuration\org.eclipse.core.runtime\.table.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work\configuration\org.eclipse.core.runtime\.orphans.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work\configuration\org.eclipse.core.runtime\.namespaces.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTableLock
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTable.8
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work\configuration\org.eclipse.core.runtime\.manager\.fileTable.7
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work\configuration\org.eclipse.core.runtime\.manager
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work\configuration\org.eclipse.core.runtime\.mainData.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work\configuration\org.eclipse.core.runtime\.extraData.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work\configuration\org.eclipse.core.runtime\.contributors.1
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work\configuration\org.eclipse.core.runtime\.contributions.1
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work\configuration\org.eclipse.core.runtime
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work\configuration\config.ini
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work\configuration
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\surefire.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters100.tests.NamespaceConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters100.tests.MeasurementModelConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\surefire-reports\TEST-org.eclipse.app4mc.amalthea.converters100.tests.EventModelConverterTest.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters100.tests.NamespaceConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters100.tests.MeasurementModelConverterTest.txt
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\surefire-reports\org.eclipse.app4mc.amalthea.converters100.tests.EventModelConverterTest.txt
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\surefire-reports
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\sourcebundle-l10n-gen\OSGI-INF\l10n\bundle-src.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\sourcebundle-l10n-gen\OSGI-INF\l10n
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\sourcebundle-l10n-gen\OSGI-INF
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\sourcebundle-l10n-gen
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\p2content.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\p2artifacts.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\org.eclipse.app4mc.amalthea.converters.100.tests-1.1.0-SNAPSHOT.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\org.eclipse.app4mc.amalthea.converters.100.tests-1.1.0-SNAPSHOT-sources.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\maven-archiver\pom.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\maven-archiver
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\MANIFEST.MF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\local-artifacts.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\generated-sources\annotations
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\generated-sources
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\classes\org\eclipse\app4mc\amalthea\converters100\tests\NamespaceConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\classes\org\eclipse\app4mc\amalthea\converters100\tests\MeasurementModelConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\classes\org\eclipse\app4mc\amalthea\converters100\tests\EventModelConverterTest.class
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\classes\org\eclipse\app4mc\amalthea\converters100\tests\Abstract100ConverterTest.class
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\classes\org\eclipse\app4mc\amalthea\converters100\tests
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\classes\org\eclipse\app4mc\amalthea\converters100
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\classes\org\eclipse\app4mc\amalthea
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\classes\org\eclipse\app4mc
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\classes\org\eclipse
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\classes\org
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\classes
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\site
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:build-qualifier (default-build-qualifier) @ org.eclipse.app4mc.amalthea.converters.100.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier' with basic configurator -->
+[DEBUG]   (f) baseDir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier {execution: default-build-qualifier}
+[DEBUG]   (s) format = yyyyMMddHHmm
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] The project's OSGi version is 1.1.0.202104220626
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-id (default-validate-id) @ org.eclipse.app4mc.amalthea.converters.100.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-version (default-validate-version) @ org.eclipse.app4mc.amalthea.converters.100.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-test-plugin
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF
+[DEBUG]   (f) strictVersions = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ org.eclipse.app4mc.amalthea.converters.100.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.100.tests.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\src\main\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\src\main\resources
+[INFO] 
+[INFO] --- tycho-compiler-plugin:2.3.0:compile (default-compile) @ org.eclipse.app4mc.amalthea.converters.100.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-compiler-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-compiler-plugin:2.3.0:compile' with basic configurator -->
+[DEBUG]   (f) basedir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target
+[DEBUG]   (f) compilerId = jdt
+[DEBUG]   (f) copyResources = true
+[DEBUG]   (f) debug = true
+[DEBUG]   (f) deriveReleaseCompilerArgumentFromTargetLevel = true
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) failOnWarning = false
+[DEBUG]   (f) fork = false
+[DEBUG]   (f) generatedSourcesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\generated-sources\annotations
+[DEBUG]   (f) logDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\compile-logs
+[DEBUG]   (f) optimize = false
+[DEBUG]   (f) outputFileName = org.eclipse.app4mc.amalthea.converters.100.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF
+[DEBUG]   (f) requireJREPackageImports = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showDeprecation = false
+[DEBUG]   (f) showWarnings = false
+[DEBUG]   (f) staleMillis = 0
+[DEBUG]   (f) strictCompilerTarget = false
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useProjectSettings = true
+[DEBUG]   (f) verbose = false
+[DEBUG] -- end configuration --
+[DEBUG] Manifest BREEs: [OSGi profile 'JavaSE-1.8' { source level: 1.8, target level: 1.8}]
+[DEBUG] Target Platform EE: OSGi profile 'JavaSE-11' { source level: 11, target level: 11}
+[DEBUG] Effective source/target: 1.8/1.8
+[DEBUG] Using compiler 'jdt'.
+[DEBUG] Source directories: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\src]
+[DEBUG] Classpath: [C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\classes
+ C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*]
+ C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*]
+ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\classes]
+[DEBUG] Output directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\classes
+[DEBUG] Classpath:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\classes
+[DEBUG]  C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*]
+[DEBUG]  C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*]
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\classes
+[DEBUG] Source roots:
+[DEBUG]  C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\src
+[INFO] Compiling 4 source files to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\classes
+[DEBUG] JDT compiler args: [-properties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.settings\org.eclipse.jdt.core.prefs, -s, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\generated-sources\annotations, -d, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\classes, -classpath, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\target\classes;C:\Users\fad8pl\.m2\repository\.cache\tycho\org.junit-4.12.0.v201504281640.jar\junit.jar[+junit/extensions/*;+junit/framework/*;+junit/runner/*;+junit/textui/*;+org/junit/*;+org/junit/experimental/*;+org/junit/experimental/categories/*;+org/junit/experimental/max/*;+org/junit/experimental/results/*;+org/junit/experimental/runners/*;+org/junit/experimental/theories/*;~org/junit/experimental/theories/internal/*;+org/junit/experimental/theories/suppliers/*;~org/junit/internal/*;~org/junit/internal/builders/*;~org/junit/internal/matchers/*;~org/junit/internal/requests/*;~org/junit/internal/runners/*;~org/junit/internal/runners/model/*;~org/junit/internal/runners/rules/*;~org/junit/internal/runners/statements/*;+org/junit/matchers/*;+org/junit/rules/*;+org/junit/runner/*;+org/junit/runner/manipulation/*;+org/junit/runner/notification/*;+org/junit/runners/*;+org/junit/runners/model/*;+org/junit/runners/parameterized/*;+org/junit/validator/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.hamcrest.core\1.3.0.v20180420-1519\org.hamcrest.core-1.3.0.v20180420-1519.jar[+org/hamcrest/*;+org/hamcrest/core/*;~org/hamcrest/internal/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\target\classes[+org/eclipse/app4mc/amalthea/converters/common/*;+org/eclipse/app4mc/amalthea/converters/common/base/*;+org/eclipse/app4mc/amalthea/converters/common/converter/*;+org/eclipse/app4mc/amalthea/converters/common/utils/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.app4mc.util.sessionlog\1.1.0.202104211257\org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar[+org/eclipse/app4mc/util/sessionlog/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jdom2\2.0.6.v20191125-0928\org.jdom2-2.0.6.v20191125-0928.jar[+org/jdom2/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.osgi.services\3.8.0.v20190206-2147\org.eclipse.osgi.services-3.8.0.v20190206-2147.jar[+org/osgi/service/component/annotations/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\target\classes[+org/eclipse/app4mc/amalthea/converters/common/tests/*;?**/*];C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.jaxen\1.1.6.v20191106-1554\org.jaxen-1.1.6.v20191106-1554.jar[+org/jaxen/*;?**/*];C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\classes, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\src\org\eclipse\app4mc\amalthea\converters100\tests\EventModelConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\src\org\eclipse\app4mc\amalthea\converters100\tests\MeasurementModelConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\src\org\eclipse\app4mc\amalthea\converters100\tests\Abstract100ConverterTest.java, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\src\org\eclipse\app4mc\amalthea\converters100\tests\NamespaceConverterTest.java, -g, -nowarn, -target, 1.8, -source, 1.8, --release, 8, -encoding, UTF-8]
+[DEBUG] Original compiler output: 
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:testResources (default-testResources) @ org.eclipse.app4mc.amalthea.converters.100.tests ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:testResources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\test-classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\src\test\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, tychoProject.build.outputDirectories=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\classes, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.amalthea.converters.100.tests.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\src\test\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\src\test\resources
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ org.eclipse.app4mc.amalthea.converters.100.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.100.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\org.eclipse.app4mc.amalthea.converters.100.tests-1.1.0-SNAPSHOT-sources.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters100/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters100/tests/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters100/tests/Abstract100ConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters100/tests/EventModelConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters100/tests/MeasurementModelConverterTest.java
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters100/tests/NamespaceConverterTest.java
+[DEBUG] adding directory OSGI-INF/
+[DEBUG] adding directory OSGI-INF/l10n/
+[DEBUG] adding entry OSGI-INF/l10n/bundle-src.properties
+[INFO] 
+[INFO] --- target-platform-configuration:2.3.0:target-platform (default-target-platform) @ org.eclipse.app4mc.amalthea.converters.100.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform from plugin realm ClassRealm[plugin>org.eclipse.tycho:target-platform-configuration:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:package-plugin (default-package-plugin) @ org.eclipse.app4mc.amalthea.converters.100.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-plugin' with basic configurator -->
+[DEBUG]   (f) buildDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.100.tests-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) strictBinIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\org.eclipse.app4mc.amalthea.converters.100.tests-1.1.0-SNAPSHOT.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding directory org/
+[DEBUG] adding directory org/eclipse/
+[DEBUG] adding directory org/eclipse/app4mc/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters100/
+[DEBUG] adding directory org/eclipse/app4mc/amalthea/converters100/tests/
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters100/tests/Abstract100ConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters100/tests/EventModelConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters100/tests/MeasurementModelConverterTest.class
+[DEBUG] adding entry org/eclipse/app4mc/amalthea/converters100/tests/NamespaceConverterTest.class
+[DEBUG] adding directory META-INF/maven/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/
+[DEBUG] adding directory META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.100.tests/
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.100.tests/pom.xml
+[DEBUG] adding entry META-INF/maven/org.eclipse.app4mc.migration/org.eclipse.app4mc.amalthea.converters.100.tests/pom.properties
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default) @ org.eclipse.app4mc.amalthea.converters.100.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default' with basic configurator -->
+[DEBUG]   (f) attachP2Metadata = true
+[DEBUG]   (f) baselineMode = warn
+[DEBUG]   (f) baselineReplace = none
+[DEBUG]   (f) url = https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/
+[DEBUG]   (f) baselineRepositories = [org.eclipse.tycho.plugins.p2.Repository@32c65747]
+[DEBUG]   (f) defaultP2Metadata = true
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default {execution: default-p2-metadata-default}
+[DEBUG]   (f) generateDownloadStatsProperty = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF
+[DEBUG] -- end configuration --
+[INFO] No baseline version MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-surefire-plugin:2.3.0:test (default-test) @ org.eclipse.app4mc.amalthea.converters.100.tests ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-surefire-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-surefire-plugin:2.3.0:test' with basic configurator -->
+[DEBUG]   (f) deleteOsgiDataDirectory = true
+[DEBUG]   (f) enableAssertions = false
+[DEBUG]   (f) failIfNoTests = true
+[DEBUG]   (f) includes = [never, **/*Test.java, **/*Tests.java]
+[DEBUG]   (f) osgiDataDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work\data
+[DEBUG]   (f) perCoreThreadCount = true
+[DEBUG]   (f) pluginArtifacts = [org.eclipse.tycho:tycho-surefire-plugin:maven-plugin:2.3.0:, org.apache.maven:maven-plugin-api:jar:3.6.3:compile, org.apache.maven:maven-model:jar:3.6.3:compile, org.apache.maven:maven-artifact:jar:3.6.3:compile, org.apache.commons:commons-lang3:jar:3.8.1:compile, org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.4:compile, org.codehaus.plexus:plexus-classworlds:jar:2.6.0:compile, org.codehaus.plexus:plexus-utils:jar:3.3.0:compile, org.apache.maven:maven-core:jar:3.6.3:compile, org.apache.maven:maven-settings:jar:3.6.3:compile, org.apache.maven:maven-settings-builder:jar:3.6.3:compile, org.sonatype.plexus:plexus-sec-dispatcher:jar:1.4:compile, org.sonatype.plexus:plexus-cipher:jar:1.7:compile, org.apache.maven:maven-builder-support:jar:3.6.3:compile, org.apache.maven:maven-repository-metadata:jar:3.6.3:compile, org.apache.maven:maven-model-builder:jar:3.6.3:compile, org.apache.maven:maven-resolver-provider:jar:3.6.3:compile, org.slf4j:slf4j-api:jar:1.7.29:compile, org.apache.maven.resolver:maven-resolver-impl:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-api:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-spi:jar:1.4.1:compile, org.apache.maven.resolver:maven-resolver-util:jar:1.4.1:compile, org.apache.maven.shared:maven-shared-utils:jar:3.2.1:compile, commons-io:commons-io:jar:2.5:compile, com.google.inject:guice:jar:no_aop:4.2.1:compile, aopalliance:aopalliance:jar:1.0:compile, com.google.guava:guava:jar:25.1-android:compile, com.google.code.findbugs:jsr305:jar:3.0.2:compile, org.checkerframework:checker-compat-qual:jar:2.0.0:compile, com.google.errorprone:error_prone_annotations:jar:2.1.3:compile, com.google.j2objc:j2objc-annotations:jar:1.1:compile, org.codehaus.mojo:animal-sniffer-annotations:jar:1.14:compile, javax.inject:javax.inject:jar:1:compile, org.codehaus.plexus:plexus-archiver:jar:4.2.2:compile, org.codehaus.plexus:plexus-io:jar:3.2.0:compile, org.apache.commons:commons-compress:jar:1.20:compile, org.iq80.snappy:snappy:jar:0.4:compile, org.tukaani:xz:jar:1.8:runtime, org.eclipse.platform:org.eclipse.osgi:jar:3.16.200:compile, org.apache.maven:maven-compat:jar:3.6.3:compile, org.codehaus.plexus:plexus-interpolation:jar:1.25:compile, org.apache.maven.wagon:wagon-provider-api:jar:3.3.4:compile, org.eclipse.tycho:sisu-equinox-launching:jar:2.3.0:compile, org.apache.commons:commons-exec:jar:1.3:compile, org.eclipse.tycho:org.eclipse.tycho.surefire.osgibooter:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit4:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit47:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit5:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit54:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit55:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit56:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.junit57:jar:2.3.0:runtime, org.eclipse.tycho:org.eclipse.tycho.surefire.testng:jar:2.3.0:runtime, org.apache.maven.surefire:surefire-api:jar:2.22.2:compile, org.apache.maven.surefire:surefire-logger-api:jar:2.22.2:compile, org.codehaus.plexus:plexus-component-annotations:jar:2.1.0:compile, org.apache.maven.surefire:maven-surefire-common:jar:2.22.2:compile, org.apache.maven.surefire:surefire-booter:jar:2.22.2:compile, org.apache.maven:maven-plugin-descriptor:jar:2.2.1:compile, org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile, classworlds:classworlds:jar:1.1-alpha-2:compile, org.apache.maven:maven-project:jar:2.2.1:compile, org.apache.maven:maven-profile:jar:2.2.1:compile, org.apache.maven:maven-artifact-manager:jar:2.2.1:compile, backport-util-concurrent:backport-util-concurrent:jar:3.1:compile, org.apache.maven:maven-plugin-registry:jar:2.2.1:compile, org.apache.maven:maven-toolchain:jar:2.2.1:compile, org.codehaus.plexus:plexus-java:jar:0.9.10:compile, org.ow2.asm:asm:jar:6.2:compile, com.thoughtworks.qdox:qdox:jar:2.0-M8:compile]
+[DEBUG]   (f) profileName = DefaultProfile
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF
+[DEBUG]   (f) redirectTestOutputToFile = false
+[DEBUG]   (f) reportsDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\surefire-reports
+[DEBUG]   (f) rerunFailingTestsCount = 0
+[DEBUG]   (f) runOrder = filesystem
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) showEclipseLog = false
+[DEBUG]   (f) skipAfterFailureCount = 0
+[DEBUG]   (f) surefireProperties = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\surefire.properties
+[DEBUG]   (f) testClassesDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\classes
+[DEBUG]   (f) testFailureIgnore = false
+[DEBUG]   (f) testRuntime = default
+[DEBUG]   (f) trimStackTrace = true
+[DEBUG]   (f) useJDK = SYSTEM
+[DEBUG]   (f) useUIHarness = false
+[DEBUG]   (f) useUIThread = true
+[DEBUG]   (f) useUnlimitedThreads = false
+[DEBUG]   (f) work = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work
+[DEBUG] -- end configuration --
+[DEBUG] Using test framework provider org.eclipse.tycho.surefire.provider.impl.JUnit4Provider
+[DEBUG] Installation OSGI bundles:
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/javax.annotation/1.2.0.v201602091430/javax.annotation-1.2.0.v201602091430.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.apache.felix.scr/2.1.14.v20190123-1619/org.apache.felix.scr-2.1.14.v20190123-1619.jar@1:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi.services/3.8.0.v20190206-2147/org.eclipse.osgi.services-3.8.0.v20190206-2147.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi.util/3.5.300.v20190708-1141/org.eclipse.osgi.util-3.5.300.v20190708-1141.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.100/target/org.eclipse.app4mc.amalthea.converters.100-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.common/target/org.eclipse.app4mc.amalthea.converters.common-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.app4mc.util.sessionlog/1.1.0.202104211257/org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.jdom2/2.0.6.v20191125-0928/org.jdom2-2.0.6.v20191125-0928.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.100.tests
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.junit/4.12.0.v201504281640/org.junit-4.12.0.v201504281640.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.common.tests/target/org.eclipse.app4mc.amalthea.converters.common.tests-1.1.0-SNAPSHOT.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.jaxen/1.1.6.v20191106-1554/org.jaxen-1.1.6.v20191106-1554.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.common/3.10.600.v20191004-1420/org.eclipse.equinox.common-3.10.600.v20191004-1420.jar@2:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.runtime/3.17.0.v20191122-2104/org.eclipse.core.runtime-3.17.0.v20191122-2104.jar@4:start
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.contenttype/3.7.500.v20190916-2125/org.eclipse.core.contenttype-3.7.500.v20190916-2125.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.preferences/3.7.600.v20191017-2055/org.eclipse.equinox.preferences-3.7.600.v20191017-2055.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.registry/3.8.600.v20191017-2055/org.eclipse.equinox.registry-3.8.600.v20191017-2055.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.core.jobs/3.10.600.v20191122-2104/org.eclipse.core.jobs-3.10.600.v20191122-2104.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.app/1.4.300.v20190815-1535/org.eclipse.equinox.app-1.4.300.v20190815-1535.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.equinox.launcher/1.5.600.v20191014-2022/org.eclipse.equinox.launcher-1.5.600.v20191014-2022.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.hamcrest.core/1.3.0.v20180420-1519/org.hamcrest.core-1.3.0.v20180420-1519.jar
+[DEBUG] 	reference:file:C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.100.tests
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/org/eclipse/tycho/org.eclipse.tycho.surefire.osgibooter/2.3.0/org.eclipse.tycho.surefire.osgibooter-2.3.0.jar
+[DEBUG] 	reference:file:C:/Users/fad8pl/.m2/repository/org/eclipse/tycho/org.eclipse.tycho.surefire.junit4/2.3.0/org.eclipse.tycho.surefire.junit4-2.3.0.jar
+[INFO] Executing Test Runtime with timeout 0, logs (if any) will be placed at: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work\data\.metadata\.log
+[INFO] Command line:
+	[C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, -Dosgi.noShutdown=false, -Dosgi.os=win32, -Dosgi.ws=win32, -Dosgi.arch=x86_64, -Dosgi.clean=true, -jar, C:\Users\fad8pl\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.launcher\1.5.600.v20191014-2022\org.eclipse.equinox.launcher-1.5.600.v20191014-2022.jar, -debug, -consolelog, -data, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work\data, -install, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work, -configuration, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\work\configuration, -application, org.eclipse.tycho.surefire.osgibooter.headlesstest, -testproperties, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\target\surefire.properties]
+Configuration location:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.100.tests/target/work/configuration/
+Configuration file:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.100.tests/target/work/configuration/config.ini loaded
+Install location:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.100.tests/target/work/
+Framework located:
+    file:/C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi/3.15.100.v20191114-1701/org.eclipse.osgi-3.15.100.v20191114-1701.jar
+Framework classpath:
+    file:/C:/Users/fad8pl/.m2/repository/p2/osgi/bundle/org.eclipse.osgi/3.15.100.v20191114-1701/org.eclipse.osgi-3.15.100.v20191114-1701.jar
+Debug options:
+    file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/tests/org.eclipse.app4mc.amalthea.converters.100.tests/.options not found
+Time to load bundles: 125
+Starting application: 1227
+Running org.eclipse.app4mc.amalthea.converters100.tests.EventModelConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.134 s - in org.eclipse.app4mc.amalthea.converters100.tests.EventModelConverterTest
+testConversion[0: Test file: /events/model.amxmi](org.eclipse.app4mc.amalthea.converters100.tests.EventModelConverterTest)  Time elapsed: 0.074 s
+verification[0: Test file: /events/model.amxmi](org.eclipse.app4mc.amalthea.converters100.tests.EventModelConverterTest)  Time elapsed: 0.004 s
+Running org.eclipse.app4mc.amalthea.converters100.tests.MeasurementModelConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.011 s - in org.eclipse.app4mc.amalthea.converters100.tests.MeasurementModelConverterTest
+testConversion[0: Test file: /measurements/model.amxmi](org.eclipse.app4mc.amalthea.converters100.tests.MeasurementModelConverterTest)  Time elapsed: 0.008 s
+verification[0: Test file: /measurements/model.amxmi](org.eclipse.app4mc.amalthea.converters100.tests.MeasurementModelConverterTest)  Time elapsed: 0.002 s
+Running org.eclipse.app4mc.amalthea.converters100.tests.NamespaceConverterTest
+Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.009 s - in org.eclipse.app4mc.amalthea.converters100.tests.NamespaceConverterTest
+testConversion[0: Test file: /namespace/model.amxmi](org.eclipse.app4mc.amalthea.converters100.tests.NamespaceConverterTest)  Time elapsed: 0.006 s
+verification[0: Test file: /namespace/model.amxmi](org.eclipse.app4mc.amalthea.converters100.tests.NamespaceConverterTest)  Time elapsed: 0.002 s
+
+Results:
+
+Tests run: 6, Failures: 0, Errors: 0, Skipped: 0
+
+[INFO] All tests passed!
+[INFO] 
+[INFO] ---------------< org.eclipse.app4mc.migration:features >----------------
+[INFO] Building [aggregator] features 1.1.0-SNAPSHOT                    [39/47]
+[INFO] --------------------------------[ pom ]---------------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): []
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] =======================================================================
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ features ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\target\test-classes
+[DEBUG] -- end configuration --
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\target\site
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ features ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = features-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --< org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless >--
+[INFO] Building [feature] APP4MC AMALTHEA Headless Converters 1.1.0-SNAPSHOT [40/47]
+[INFO] --------------------------[ eclipse-feature ]---------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): [runtime]
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier-aggregator (default-build-qualifier-aggregator)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <baseDir>${project.basedir}</baseDir>
+  <execution>${mojoExecution}</execution>
+  <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
+  <format default-value="yyyyMMddHHmm"/>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id (default-validate-id)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version (default-validate-version)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <strictVersions default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform (default-target-platform)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-feature (default-package-feature)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <basedir>${project.basedir}</basedir>
+  <deployableFeature default-value="false"/>
+  <finalName>${project.build.finalName}</finalName>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <strictBinIncludes default-value="true"/>
+  <target default-value="${project.build.directory}/site"/>
+  <useDefaultExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attachP2Metadata default-value="true"/>
+  <baselineMode default-value="warn">${tycho.baseline}</baselineMode>
+  <baselineReplace default-value="all">none</baselineReplace>
+  <baselineRepositories>
+    <repository>
+      <url>https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/</url>
+    </repository>
+  </baselineRepositories>
+  <defaultP2Metadata default-value="true"/>
+  <execution>${mojoExecution}</execution>
+  <generateDownloadStatsProperty default-value="false">${tycho.generateDownloadStatsProperty}</generateDownloadStatsProperty>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:feature-p2-metadata (default-feature-p2-metadata)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <artifactRepositoryName default-value="${project.name} Artifacts"/>
+  <compressRepository default-value="true"/>
+  <forkedProcessTimeoutInSeconds>${p2.timeout}</forkedProcessTimeoutInSeconds>
+  <generateP2Metadata default-value="true"/>
+  <metadataRepositoryName default-value="${project.name}"/>
+  <project>${project}</project>
+  <target default-value="${project.build.directory}/site"/>
+</configuration>
+[DEBUG] =======================================================================
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=54200, ConflictMarker.markTime=53199, ConflictMarker.nodeCount=172, ConflictIdSorter.graphTime=55801, ConflictIdSorter.topsortTime=43599, ConflictIdSorter.conflictIdCount=27, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=372999, ConflictResolver.conflictItemCount=171, DefaultDependencyCollector.collectTime=709100, DefaultDependencyCollector.transformTime=595700}
+[DEBUG] org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:eclipse-feature:1.1.0-SNAPSHOT
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]       p2.eclipse-plugin:javax.annotation:jar:1.2.0.v201602091430:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.osgi:jar:3.15.100.v20191114-1701:system
+[DEBUG]       p2.eclipse-plugin:org.apache.felix.scr:jar:2.1.14.v20190123-1619:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.osgi.services:jar:3.8.0.v20190206-2147:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.osgi.util:jar:3.5.300.v20190708-1141:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.app4mc.util.sessionlog:jar:1.1.0.202104211257:system
+[DEBUG]       p2.eclipse-plugin:org.jdom2:jar:2.0.6.v20191125-0928:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.equinox.common:jar:3.10.600.v20191004-1420:system
+[DEBUG]       p2.eclipse-plugin:org.jaxen:jar:1.1.6.v20191106-1554:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]       p2.eclipse-plugin:org.apache.felix.gogo.runtime:jar:1.1.0.v20180713-1646:system
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ org.eclipse.app4mc.amalthea.converters.headless ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\target\test-classes
+[DEBUG] -- end configuration --
+[INFO] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\target
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\target\p2content.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\target\p2artifacts.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\target\org.eclipse.app4mc.amalthea.converters.headless-1.1.0-SNAPSHOT.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\target\local-artifacts.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\target\feature.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\target\feature.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\target\site
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:build-qualifier-aggregator (default-build-qualifier-aggregator) @ org.eclipse.app4mc.amalthea.converters.headless ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier-aggregator from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier-aggregator' with basic configurator -->
+[DEBUG]   (f) baseDir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier-aggregator {execution: default-build-qualifier-aggregator}
+[DEBUG]   (s) format = yyyyMMddHHmm
+[DEBUG]   (f) packaging = eclipse-feature
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] The project's OSGi version is 1.1.0.202104220626
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-id (default-validate-id) @ org.eclipse.app4mc.amalthea.converters.headless ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-feature
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-version (default-validate-version) @ org.eclipse.app4mc.amalthea.converters.headless ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-feature
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml
+[DEBUG]   (f) strictVersions = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- target-platform-configuration:2.3.0:target-platform (default-target-platform) @ org.eclipse.app4mc.amalthea.converters.headless ---
+[DEBUG] Configuring mojo org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform from plugin realm ClassRealm[plugin>org.eclipse.tycho:target-platform-configuration:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml
+[DEBUG] -- end configuration --
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ org.eclipse.app4mc.amalthea.converters.headless ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.headless-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:package-feature (default-package-feature) @ org.eclipse.app4mc.amalthea.converters.headless ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-feature from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-feature' with basic configurator -->
+[DEBUG]   (f) basedir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless
+[DEBUG]   (f) deployableFeature = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.headless-1.1.0-SNAPSHOT
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) strictBinIncludes = true
+[DEBUG]   (f) target = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\target\site
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\target\org.eclipse.app4mc.amalthea.converters.headless-1.1.0-SNAPSHOT.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding entry epl-2.0.html
+[DEBUG] epl-2.0.html already added, skipping
+[DEBUG] adding entry license.html
+[DEBUG] adding entry feature.xml
+[DEBUG] adding entry feature.properties
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default) @ org.eclipse.app4mc.amalthea.converters.headless ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default' with basic configurator -->
+[DEBUG]   (f) attachP2Metadata = true
+[DEBUG]   (f) baselineMode = warn
+[DEBUG]   (f) baselineReplace = none
+[DEBUG]   (f) url = https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/
+[DEBUG]   (f) baselineRepositories = [org.eclipse.tycho.plugins.p2.Repository@14e8e0c9]
+[DEBUG]   (f) defaultP2Metadata = true
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default {execution: default-p2-metadata-default}
+[DEBUG]   (f) generateDownloadStatsProperty = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml
+[DEBUG] -- end configuration --
+[INFO] No baseline version MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:feature-p2-metadata (default-feature-p2-metadata) @ org.eclipse.app4mc.amalthea.converters.headless ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:feature-p2-metadata from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:feature-p2-metadata' with basic configurator -->
+[DEBUG]   (f) artifactRepositoryName = [feature] APP4MC AMALTHEA Headless Converters Artifacts
+[DEBUG]   (f) compressRepository = true
+[DEBUG]   (f) generateP2Metadata = true
+[DEBUG]   (f) metadataRepositoryName = [feature] APP4MC AMALTHEA Headless Converters
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml
+[DEBUG]   (f) target = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\target\site
+[DEBUG] -- end configuration --
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\target\site does not exist or is not a directory
+[INFO] 
+[INFO] --< org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters >--
+[INFO] Building [feature] APP4MC AMALTHEA Converters 1.1.0-SNAPSHOT     [41/47]
+[INFO] --------------------------[ eclipse-feature ]---------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): [runtime]
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier-aggregator (default-build-qualifier-aggregator)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <baseDir>${project.basedir}</baseDir>
+  <execution>${mojoExecution}</execution>
+  <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
+  <format default-value="yyyyMMddHHmm"/>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id (default-validate-id)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version (default-validate-version)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <strictVersions default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform (default-target-platform)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-feature (default-package-feature)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <basedir>${project.basedir}</basedir>
+  <deployableFeature default-value="false"/>
+  <finalName>${project.build.finalName}</finalName>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <strictBinIncludes default-value="true"/>
+  <target default-value="${project.build.directory}/site"/>
+  <useDefaultExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attachP2Metadata default-value="true"/>
+  <baselineMode default-value="warn">${tycho.baseline}</baselineMode>
+  <baselineReplace default-value="all">none</baselineReplace>
+  <baselineRepositories>
+    <repository>
+      <url>https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/</url>
+    </repository>
+  </baselineRepositories>
+  <defaultP2Metadata default-value="true"/>
+  <execution>${mojoExecution}</execution>
+  <generateDownloadStatsProperty default-value="false">${tycho.generateDownloadStatsProperty}</generateDownloadStatsProperty>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:feature-p2-metadata (default-feature-p2-metadata)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <artifactRepositoryName default-value="${project.name} Artifacts"/>
+  <compressRepository default-value="true"/>
+  <forkedProcessTimeoutInSeconds>${p2.timeout}</forkedProcessTimeoutInSeconds>
+  <generateP2Metadata default-value="true"/>
+  <metadataRepositoryName default-value="${project.name}"/>
+  <project>${project}</project>
+  <target default-value="${project.build.directory}/site"/>
+</configuration>
+[DEBUG] =======================================================================
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=102500, ConflictMarker.markTime=89100, ConflictMarker.nodeCount=221, ConflictIdSorter.graphTime=74300, ConflictIdSorter.topsortTime=36201, ConflictIdSorter.conflictIdCount=57, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=614999, ConflictResolver.conflictItemCount=220, DefaultDependencyCollector.collectTime=1315800, DefaultDependencyCollector.transformTime=954300}
+[DEBUG] org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:eclipse-feature:1.1.0-SNAPSHOT
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]       p2.eclipse-plugin:javax.annotation:jar:1.2.0.v201602091430:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.osgi:jar:3.15.100.v20191114-1701:system
+[DEBUG]       p2.eclipse-plugin:org.apache.felix.scr:jar:2.1.14.v20190123-1619:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.osgi.services:jar:3.8.0.v20190206-2147:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.osgi.util:jar:3.5.300.v20190708-1141:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.app4mc.util.sessionlog:jar:1.1.0.202104211257:system
+[DEBUG]       p2.eclipse-plugin:org.jdom2:jar:2.0.6.v20191125-0928:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.equinox.common:jar:3.10.600.v20191004-1420:system
+[DEBUG]       p2.eclipse-plugin:org.jaxen:jar:1.1.6.v20191106-1554:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]       p2.eclipse-plugin:org.eclipse.core.runtime:jar:3.17.0.v20191122-2104:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.core.resources:jar:3.13.600.v20191122-2104:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.core.expressions:jar:3.6.600.v20191122-2104:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.e4.core.services:jar:2.2.100.v20191122-2104:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.jface:jar:3.18.0.v20191122-2109:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.e4.core.di:jar:1.7.500.v20190916-2125:system
+[DEBUG]       p2.eclipse-plugin:javax.inject:jar:1.0.0.v20091030:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.e4.core.contexts:jar:1.8.300.v20191017-1404:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.e4.core.di.annotations:jar:1.6.500.v20190925-0538:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.e4.core.di.extensions:jar:0.15.400.v20191122-2104:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.e4.ui.di:jar:1.2.700.v20191114-0830:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.e4.ui.services:jar:1.3.700.v20190930-1643:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.core.commands:jar:3.9.600.v20191122-2109:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.core.contenttype:jar:3.7.500.v20190916-2125:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.equinox.preferences:jar:3.7.600.v20191017-2055:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.equinox.registry:jar:3.8.600.v20191017-2055:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.core.filesystem:jar:1.7.600.v20191122-2104:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.core.jobs:jar:3.10.600.v20191122-2104:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.equinox.app:jar:1.4.300.v20190815-1535:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.e4.core.di.extensions.supplier:jar:0.15.400.v20190709-0707:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.equinox.event:jar:1.5.300.v20191001-1333:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.swt:jar:3.113.0.v20191204-0601:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.swt.win32.win32.x86_64:jar:3.113.0.v20191204-0601:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.swt.gtk.linux.x86_64:jar:3.113.0.v20191204-0601:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.swt.cocoa.macosx.x86_64:jar:3.113.0.v20191204-0601:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]       p2.eclipse-plugin:com.ibm.icu:jar:64.2.0.v20190507-1337:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.help:jar:3.8.600.v20191123-0656:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]       p2.eclipse-plugin:org.apache.felix.gogo.runtime:jar:1.1.0.v20180713-1646:system
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ org.eclipse.app4mc.amalthea.converters ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\target\test-classes
+[DEBUG] -- end configuration --
+[INFO] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\target
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\target\p2content.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\target\p2artifacts.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\target\org.eclipse.app4mc.amalthea.converters-1.1.0-SNAPSHOT.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\target\local-artifacts.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\target\feature.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\target\feature.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\target\site
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:build-qualifier-aggregator (default-build-qualifier-aggregator) @ org.eclipse.app4mc.amalthea.converters ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier-aggregator from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier-aggregator' with basic configurator -->
+[DEBUG]   (f) baseDir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier-aggregator {execution: default-build-qualifier-aggregator}
+[DEBUG]   (s) format = yyyyMMddHHmm
+[DEBUG]   (f) packaging = eclipse-feature
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] The project's OSGi version is 1.1.0.202104220626
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-id (default-validate-id) @ org.eclipse.app4mc.amalthea.converters ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-feature
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-version (default-validate-version) @ org.eclipse.app4mc.amalthea.converters ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-feature
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml
+[DEBUG]   (f) strictVersions = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- target-platform-configuration:2.3.0:target-platform (default-target-platform) @ org.eclipse.app4mc.amalthea.converters ---
+[DEBUG] Configuring mojo org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform from plugin realm ClassRealm[plugin>org.eclipse.tycho:target-platform-configuration:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml
+[DEBUG] -- end configuration --
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ org.eclipse.app4mc.amalthea.converters ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:package-feature (default-package-feature) @ org.eclipse.app4mc.amalthea.converters ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-feature from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-feature' with basic configurator -->
+[DEBUG]   (f) basedir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters
+[DEBUG]   (f) deployableFeature = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters-1.1.0-SNAPSHOT
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) strictBinIncludes = true
+[DEBUG]   (f) target = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\target\site
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\target\org.eclipse.app4mc.amalthea.converters-1.1.0-SNAPSHOT.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding entry about.html
+[DEBUG] adding entry epl-2.0.html
+[DEBUG] epl-2.0.html already added, skipping
+[DEBUG] adding entry license.html
+[DEBUG] adding entry feature.xml
+[DEBUG] adding entry feature.properties
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default) @ org.eclipse.app4mc.amalthea.converters ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default' with basic configurator -->
+[DEBUG]   (f) attachP2Metadata = true
+[DEBUG]   (f) baselineMode = warn
+[DEBUG]   (f) baselineReplace = none
+[DEBUG]   (f) url = https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/
+[DEBUG]   (f) baselineRepositories = [org.eclipse.tycho.plugins.p2.Repository@2c952ab1]
+[DEBUG]   (f) defaultP2Metadata = true
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default {execution: default-p2-metadata-default}
+[DEBUG]   (f) generateDownloadStatsProperty = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml
+[DEBUG] -- end configuration --
+[INFO] No baseline version MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:feature-p2-metadata (default-feature-p2-metadata) @ org.eclipse.app4mc.amalthea.converters ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:feature-p2-metadata from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:feature-p2-metadata' with basic configurator -->
+[DEBUG]   (f) artifactRepositoryName = [feature] APP4MC AMALTHEA Converters Artifacts
+[DEBUG]   (f) compressRepository = true
+[DEBUG]   (f) generateP2Metadata = true
+[DEBUG]   (f) metadataRepositoryName = [feature] APP4MC AMALTHEA Converters
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml
+[DEBUG]   (f) target = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\target\site
+[DEBUG] -- end configuration --
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\target\site does not exist or is not a directory
+[INFO] 
+[INFO] --< org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime >--
+[INFO] Building [feature] APP4MC AMALTHEA Headless Converters Runtime 1.1.0-SNAPSHOT [42/47]
+[INFO] --------------------------[ eclipse-feature ]---------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): [runtime]
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier-aggregator (default-build-qualifier-aggregator)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <baseDir>${project.basedir}</baseDir>
+  <execution>${mojoExecution}</execution>
+  <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
+  <format default-value="yyyyMMddHHmm"/>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id (default-validate-id)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version (default-validate-version)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <strictVersions default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform (default-target-platform)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-feature (default-package-feature)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <basedir>${project.basedir}</basedir>
+  <deployableFeature default-value="false"/>
+  <finalName>${project.build.finalName}</finalName>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <strictBinIncludes default-value="true"/>
+  <target default-value="${project.build.directory}/site"/>
+  <useDefaultExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attachP2Metadata default-value="true"/>
+  <baselineMode default-value="warn">${tycho.baseline}</baselineMode>
+  <baselineReplace default-value="all">none</baselineReplace>
+  <baselineRepositories>
+    <repository>
+      <url>https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/</url>
+    </repository>
+  </baselineRepositories>
+  <defaultP2Metadata default-value="true"/>
+  <execution>${mojoExecution}</execution>
+  <generateDownloadStatsProperty default-value="false">${tycho.generateDownloadStatsProperty}</generateDownloadStatsProperty>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:feature-p2-metadata (default-feature-p2-metadata)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <artifactRepositoryName default-value="${project.name} Artifacts"/>
+  <compressRepository default-value="true"/>
+  <forkedProcessTimeoutInSeconds>${p2.timeout}</forkedProcessTimeoutInSeconds>
+  <generateP2Metadata default-value="true"/>
+  <metadataRepositoryName default-value="${project.name}"/>
+  <project>${project}</project>
+  <target default-value="${project.build.directory}/site"/>
+</configuration>
+[DEBUG] =======================================================================
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=12499, ConflictMarker.markTime=6001, ConflictMarker.nodeCount=1, ConflictIdSorter.graphTime=2199, ConflictIdSorter.topsortTime=4800, ConflictIdSorter.conflictIdCount=0, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=8499, ConflictResolver.conflictItemCount=0, DefaultDependencyCollector.collectTime=6600, DefaultDependencyCollector.transformTime=49900}
+[DEBUG] org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:eclipse-feature:1.1.0-SNAPSHOT
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ org.eclipse.app4mc.amalthea.converters.headless.runtime ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\target\test-classes
+[DEBUG] -- end configuration --
+[INFO] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\target
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\target\p2content.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\target\p2artifacts.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\target\org.eclipse.app4mc.amalthea.converters.headless.runtime-1.1.0-SNAPSHOT.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\target\local-artifacts.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\target\feature.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\target\feature.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\target\site
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:build-qualifier-aggregator (default-build-qualifier-aggregator) @ org.eclipse.app4mc.amalthea.converters.headless.runtime ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier-aggregator from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier-aggregator' with basic configurator -->
+[DEBUG]   (f) baseDir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier-aggregator {execution: default-build-qualifier-aggregator}
+[DEBUG]   (s) format = yyyyMMddHHmm
+[DEBUG]   (f) packaging = eclipse-feature
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] The project's OSGi version is 1.1.0.202104220626
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-id (default-validate-id) @ org.eclipse.app4mc.amalthea.converters.headless.runtime ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-feature
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-version (default-validate-version) @ org.eclipse.app4mc.amalthea.converters.headless.runtime ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-feature
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml
+[DEBUG]   (f) strictVersions = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- target-platform-configuration:2.3.0:target-platform (default-target-platform) @ org.eclipse.app4mc.amalthea.converters.headless.runtime ---
+[DEBUG] Configuring mojo org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform from plugin realm ClassRealm[plugin>org.eclipse.tycho:target-platform-configuration:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ org.eclipse.app4mc.amalthea.converters.headless.runtime ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.headless.runtime-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:package-feature (default-package-feature) @ org.eclipse.app4mc.amalthea.converters.headless.runtime ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-feature from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-feature' with basic configurator -->
+[DEBUG]   (f) basedir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime
+[DEBUG]   (f) deployableFeature = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.headless.runtime-1.1.0-SNAPSHOT
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) strictBinIncludes = true
+[DEBUG]   (f) target = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\target\site
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\target\org.eclipse.app4mc.amalthea.converters.headless.runtime-1.1.0-SNAPSHOT.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding entry epl-2.0.html
+[DEBUG] epl-2.0.html already added, skipping
+[DEBUG] adding entry license.html
+[DEBUG] adding entry feature.xml
+[DEBUG] adding entry feature.properties
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default) @ org.eclipse.app4mc.amalthea.converters.headless.runtime ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default' with basic configurator -->
+[DEBUG]   (f) attachP2Metadata = true
+[DEBUG]   (f) baselineMode = warn
+[DEBUG]   (f) baselineReplace = none
+[DEBUG]   (f) url = https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/
+[DEBUG]   (f) baselineRepositories = [org.eclipse.tycho.plugins.p2.Repository@74b2f3b7]
+[DEBUG]   (f) defaultP2Metadata = true
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default {execution: default-p2-metadata-default}
+[DEBUG]   (f) generateDownloadStatsProperty = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml
+[DEBUG] -- end configuration --
+[INFO] No baseline version MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:feature-p2-metadata (default-feature-p2-metadata) @ org.eclipse.app4mc.amalthea.converters.headless.runtime ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:feature-p2-metadata from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:feature-p2-metadata' with basic configurator -->
+[DEBUG]   (f) artifactRepositoryName = [feature] APP4MC AMALTHEA Headless Converters Runtime Artifacts
+[DEBUG]   (f) compressRepository = true
+[DEBUG]   (f) generateP2Metadata = true
+[DEBUG]   (f) metadataRepositoryName = [feature] APP4MC AMALTHEA Headless Converters Runtime
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml
+[DEBUG]   (f) target = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\target\site
+[DEBUG] -- end configuration --
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\target\site does not exist or is not a directory
+[INFO] 
+[INFO] --< org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk >--
+[INFO] Building [feature] APP4MC AMALTHEA Converters SDK 1.1.0-SNAPSHOT [43/47]
+[INFO] --------------------------[ eclipse-feature ]---------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): [runtime]
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier-aggregator (default-build-qualifier-aggregator)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <baseDir>${project.basedir}</baseDir>
+  <execution>${mojoExecution}</execution>
+  <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
+  <format default-value="yyyyMMddHHmm"/>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id (default-validate-id)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version (default-validate-version)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <strictVersions default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform (default-target-platform)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-feature (default-package-feature)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <basedir>${project.basedir}</basedir>
+  <deployableFeature default-value="false"/>
+  <finalName>${project.build.finalName}</finalName>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <strictBinIncludes default-value="true"/>
+  <target default-value="${project.build.directory}/site"/>
+  <useDefaultExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attachP2Metadata default-value="true"/>
+  <baselineMode default-value="warn">${tycho.baseline}</baselineMode>
+  <baselineReplace default-value="all">none</baselineReplace>
+  <baselineRepositories>
+    <repository>
+      <url>https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/</url>
+    </repository>
+  </baselineRepositories>
+  <defaultP2Metadata default-value="true"/>
+  <execution>${mojoExecution}</execution>
+  <generateDownloadStatsProperty default-value="false">${tycho.generateDownloadStatsProperty}</generateDownloadStatsProperty>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-plugin:2.3.0:feature-p2-metadata (default-feature-p2-metadata)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <artifactRepositoryName default-value="${project.name} Artifacts"/>
+  <compressRepository default-value="true"/>
+  <forkedProcessTimeoutInSeconds>${p2.timeout}</forkedProcessTimeoutInSeconds>
+  <generateP2Metadata default-value="true"/>
+  <metadataRepositoryName default-value="${project.name}"/>
+  <project>${project}</project>
+  <target default-value="${project.build.directory}/site"/>
+</configuration>
+[DEBUG] =======================================================================
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=148299, ConflictMarker.markTime=153301, ConflictMarker.nodeCount=222, ConflictIdSorter.graphTime=75900, ConflictIdSorter.topsortTime=83699, ConflictIdSorter.conflictIdCount=58, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=1147800, ConflictResolver.conflictItemCount=221, DefaultDependencyCollector.collectTime=1980900, DefaultDependencyCollector.transformTime=1674600}
+[DEBUG] org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:eclipse-feature:1.1.0-SNAPSHOT
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]       p2.eclipse-plugin:javax.annotation:jar:1.2.0.v201602091430:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.osgi:jar:3.15.100.v20191114-1701:system
+[DEBUG]       p2.eclipse-plugin:org.apache.felix.scr:jar:2.1.14.v20190123-1619:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.osgi.services:jar:3.8.0.v20190206-2147:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.osgi.util:jar:3.5.300.v20190708-1141:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.app4mc.util.sessionlog:jar:1.1.0.202104211257:system
+[DEBUG]       p2.eclipse-plugin:org.jdom2:jar:2.0.6.v20191125-0928:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.equinox.common:jar:3.10.600.v20191004-1420:system
+[DEBUG]       p2.eclipse-plugin:org.jaxen:jar:1.1.6.v20191106-1554:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]       p2.eclipse-plugin:org.eclipse.core.runtime:jar:3.17.0.v20191122-2104:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.core.resources:jar:3.13.600.v20191122-2104:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.core.expressions:jar:3.6.600.v20191122-2104:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.e4.core.services:jar:2.2.100.v20191122-2104:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.jface:jar:3.18.0.v20191122-2109:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.e4.core.di:jar:1.7.500.v20190916-2125:system
+[DEBUG]       p2.eclipse-plugin:javax.inject:jar:1.0.0.v20091030:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.e4.core.contexts:jar:1.8.300.v20191017-1404:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.e4.core.di.annotations:jar:1.6.500.v20190925-0538:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.e4.core.di.extensions:jar:0.15.400.v20191122-2104:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.e4.ui.di:jar:1.2.700.v20191114-0830:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.e4.ui.services:jar:1.3.700.v20190930-1643:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.core.commands:jar:3.9.600.v20191122-2109:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.core.contenttype:jar:3.7.500.v20190916-2125:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.equinox.preferences:jar:3.7.600.v20191017-2055:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.equinox.registry:jar:3.8.600.v20191017-2055:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.core.filesystem:jar:1.7.600.v20191122-2104:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.core.jobs:jar:3.10.600.v20191122-2104:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.equinox.app:jar:1.4.300.v20190815-1535:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.e4.core.di.extensions.supplier:jar:0.15.400.v20190709-0707:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.equinox.event:jar:1.5.300.v20191001-1333:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.swt:jar:3.113.0.v20191204-0601:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.swt.win32.win32.x86_64:jar:3.113.0.v20191204-0601:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.swt.gtk.linux.x86_64:jar:3.113.0.v20191204-0601:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.swt.cocoa.macosx.x86_64:jar:3.113.0.v20191204-0601:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]       p2.eclipse-plugin:com.ibm.icu:jar:64.2.0.v20190507-1337:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.help:jar:3.8.600.v20191123-0656:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]       p2.eclipse-plugin:org.apache.felix.gogo.runtime:jar:1.1.0.v20180713-1646:system
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ org.eclipse.app4mc.amalthea.converters.sdk ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\target\test-classes
+[DEBUG] -- end configuration --
+[INFO] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\target
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\target\p2content.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\target\p2artifacts.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\target\org.eclipse.app4mc.amalthea.converters.sdk-1.1.0-SNAPSHOT.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\target\local-artifacts.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\target\feature.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\target\feature.properties
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\target\site
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:build-qualifier-aggregator (default-build-qualifier-aggregator) @ org.eclipse.app4mc.amalthea.converters.sdk ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier-aggregator from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier-aggregator' with basic configurator -->
+[DEBUG]   (f) baseDir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier-aggregator {execution: default-build-qualifier-aggregator}
+[DEBUG]   (s) format = yyyyMMddHHmm
+[DEBUG]   (f) packaging = eclipse-feature
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] The project's OSGi version is 1.1.0.202104220626
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-id (default-validate-id) @ org.eclipse.app4mc.amalthea.converters.sdk ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-id' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-feature
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:validate-version (default-validate-version) @ org.eclipse.app4mc.amalthea.converters.sdk ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:validate-version' with basic configurator -->
+[DEBUG]   (f) packaging = eclipse-feature
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml
+[DEBUG]   (f) strictVersions = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- target-platform-configuration:2.3.0:target-platform (default-target-platform) @ org.eclipse.app4mc.amalthea.converters.sdk ---
+[DEBUG] Configuring mojo org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform from plugin realm ClassRealm[plugin>org.eclipse.tycho:target-platform-configuration:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml
+[DEBUG] -- end configuration --
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ org.eclipse.app4mc.amalthea.converters.sdk ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.sdk-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:package-feature (default-package-feature) @ org.eclipse.app4mc.amalthea.converters.sdk ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-feature from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-feature' with basic configurator -->
+[DEBUG]   (f) basedir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk
+[DEBUG]   (f) deployableFeature = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.amalthea.converters.sdk-1.1.0-SNAPSHOT
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) strictBinIncludes = true
+[DEBUG]   (f) target = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\target\site
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG] -- end configuration --
+[INFO] Building jar: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\target\org.eclipse.app4mc.amalthea.converters.sdk-1.1.0-SNAPSHOT.jar
+[DEBUG] adding directory META-INF/
+[DEBUG] adding entry META-INF/MANIFEST.MF
+[DEBUG] adding entry about.html
+[DEBUG] adding entry epl-2.0.html
+[DEBUG] epl-2.0.html already added, skipping
+[DEBUG] adding entry license.html
+[DEBUG] adding entry feature.xml
+[DEBUG] adding entry feature.properties
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:p2-metadata-default (default-p2-metadata-default) @ org.eclipse.app4mc.amalthea.converters.sdk ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default' with basic configurator -->
+[DEBUG]   (f) attachP2Metadata = true
+[DEBUG]   (f) baselineMode = warn
+[DEBUG]   (f) baselineReplace = none
+[DEBUG]   (f) url = https://download.eclipse.org/app4mc/updatesites/releases/1.0.0/
+[DEBUG]   (f) baselineRepositories = [org.eclipse.tycho.plugins.p2.Repository@36c10c7e]
+[DEBUG]   (f) defaultP2Metadata = true
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-p2-plugin:2.3.0:p2-metadata-default {execution: default-p2-metadata-default}
+[DEBUG]   (f) generateDownloadStatsProperty = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml
+[DEBUG] -- end configuration --
+[INFO] No baseline version MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml
+[INFO] 
+[INFO] --- tycho-p2-plugin:2.3.0:feature-p2-metadata (default-feature-p2-metadata) @ org.eclipse.app4mc.amalthea.converters.sdk ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-plugin:2.3.0:feature-p2-metadata from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-plugin:2.3.0:feature-p2-metadata' with basic configurator -->
+[DEBUG]   (f) artifactRepositoryName = [feature] APP4MC AMALTHEA Converters SDK Artifacts
+[DEBUG]   (f) compressRepository = true
+[DEBUG]   (f) generateP2Metadata = true
+[DEBUG]   (f) metadataRepositoryName = [feature] APP4MC AMALTHEA Converters SDK
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml
+[DEBUG]   (f) target = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\target\site
+[DEBUG] -- end configuration --
+[DEBUG] C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\target\site does not exist or is not a directory
+[INFO] 
+[INFO] --< org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo >--
+[INFO] Building org.eclipse.app4mc.converters.p2repo 1.1.0-SNAPSHOT     [44/47]
+[INFO] -------------------------[ eclipse-repository ]-------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): []
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier-aggregator (default-build-qualifier-aggregator)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <baseDir>${project.basedir}</baseDir>
+  <execution>${mojoExecution}</execution>
+  <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
+  <format default-value="yyyyMMddHHmm"/>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean-1)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources (default-resources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources default-value="${project.resources}"/>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform (default-target-platform)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-publisher-plugin:2.3.0:publish-osgi-ee (default-publish-osgi-ee)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <profiles default-value="JavaSE-11, JavaSE-15, JavaSE-16"/>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <skip default-value="false"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-publisher-plugin:2.3.0:publish-products (default-publish-products)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <flavor default-value="tooling"/>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-publisher-plugin:2.3.0:publish-categories (default-publish-categories)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-publisher-plugin:2.3.0:attach-artifacts (default-attach-artifacts)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-repository-plugin:2.3.0:assemble-repository (default-assemble-repository)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <compress default-value="true"/>
+  <createArtifactRepository default-value="true"/>
+  <includeAllDependencies default-value="false"/>
+  <keepNonXzIndexFiles default-value="true"/>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <repositoryName default-value="${project.name}"/>
+  <session>${session}</session>
+  <xzCompress default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-repository-plugin:2.3.0:archive-repository (default-archive-repository)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <finalName>${project.build.finalName}</finalName>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <skipArchive default-value="false"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-director-plugin:2.3.0:materialize-products (materialize-products)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directorRuntime default-value="internal"/>
+  <forkedProcessTimeoutInSeconds default-value="0">${p2.timeout}</forkedProcessTimeoutInSeconds>
+  <installFeatures default-value="true"/>
+  <profile default-value="DefaultProfile"/>
+  <project>${project}</project>
+  <session>${session}</session>
+  <source default-value="targetPlatform"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-director-plugin:2.3.0:archive-products (archive-products)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <forkedProcessTimeoutInSeconds default-value="0">${p2.timeout}</forkedProcessTimeoutInSeconds>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.jboss.tools.tycho-plugins:repository-utils:2.2.0:generate-repository-facade (generate-facade)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <associateSites>
+    <site>http://download.eclipse.org/releases/photon</site>
+    <site>http://download.eclipse.org/cbi/updates/license</site>
+    <site>http://download.eclipse.org/tools/orbit/downloads/drops/I20191111200416/repository</site>
+  </associateSites>
+  <cssName default-value="site.css"/>
+  <fallbackToChild default-value="latest/all/repo"/>
+  <indexName default-value="index.html"/>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <referenceStrategy default-value="embedReferences"/>
+  <removeDefaultCategory default-value="false"/>
+  <session>${session}</session>
+  <siteTemplateFolder>siteTemplate</siteTemplateFolder>
+  <skipBuildInfo default-value="false"/>
+  <skipWebContentGeneration default-value="false"/>
+  <strictBinIncludes default-value="true"/>
+  <symbols>
+    <update.site.name>${project.parent.name}</update.site.name>
+    <target.eclipse.version>IDE 2019-12 (4.14)</target.eclipse.version>
+    <target.app4mc.version>APP4MC 1.1.0</target.app4mc.version>
+  </symbols>
+  <useDefaultExcludes default-value="true"/>
+</configuration>
+[DEBUG] =======================================================================
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ org.eclipse.app4mc.converters.p2repo ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\test-classes
+[DEBUG] -- end configuration --
+[INFO] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\targetPlatformRepository\content.xml
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\targetPlatformRepository
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\web\site.css
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\web
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\site.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins\org.jdom2_2.0.6.v20191125-0928.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins\org.jdom2.source_2.0.6.v20191125-0928.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins\org.jaxen_1.1.6.v20191106-1554.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins\org.jaxen.source_1.1.6.v20191106-1554.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.ui_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.ui.source_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.help_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.headless.app_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.headless.app.source_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.common_1.1.0.202104160923.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.common.source_1.1.0.202104160923.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.100_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.100.source_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.097_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.097.source_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.096_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.096.source_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.095_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.095.source_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.094_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.094.source_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.093_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.093.source_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.092_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.092.source_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.091_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.091.source_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.090_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.090.source_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.083_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.083.source_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.082_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.082.source_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.081_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.081.source_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.080_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.080.source_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.072_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.072.source_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.071_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.071.source_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins\javax.xml_1.3.4.v201005080400.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\plugins
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\p2.index
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\index.html
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\features\org.eclipse.app4mc.amalthea.converters_1.1.0.202104160923.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\features\org.eclipse.app4mc.amalthea.converters.sdk_1.1.0.202104160923.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\features\org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104160923.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\features
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\content.xml.xz
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\content.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\category.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\buildinfo.json
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\artifacts.xml.xz
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\artifacts.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\p2content.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\p2artifacts.xml
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\p2agent\org.eclipse.equinox.p2.engine\profileRegistry
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\p2agent\org.eclipse.equinox.p2.engine\.settings\org.eclipse.equinox.p2.metadata.repository.prefs
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\p2agent\org.eclipse.equinox.p2.engine\.settings\org.eclipse.equinox.p2.artifact.repository.prefs
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\p2agent\org.eclipse.equinox.p2.engine\.settings
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\p2agent\org.eclipse.equinox.p2.engine
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\p2agent\org.eclipse.equinox.p2.core\cache\artifacts.xml
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\p2agent\org.eclipse.equinox.p2.core\cache
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\p2agent\org.eclipse.equinox.p2.core
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\p2agent
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\org.eclipse.app4mc.converters.p2repo-1.1.0-SNAPSHOT.zip
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\local-artifacts.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\category.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\buildinfo\buildinfo.json
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\buildinfo
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\site
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:build-qualifier-aggregator (default-build-qualifier-aggregator) @ org.eclipse.app4mc.converters.p2repo ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier-aggregator from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier-aggregator' with basic configurator -->
+[DEBUG]   (f) baseDir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier-aggregator {execution: default-build-qualifier-aggregator}
+[DEBUG]   (s) format = yyyyMMddHHmm
+[DEBUG]   (f) packaging = eclipse-repository
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] The project's OSGi version is 1.1.0.202104220626
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean-1) @ org.eclipse.app4mc.converters.p2repo ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\test-classes
+[DEBUG] -- end configuration --
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\site
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ org.eclipse.app4mc.converters.p2repo ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/org.eclipse.app4mc.converters.p2repo.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\src\main\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\src\main\resources
+[INFO] 
+[INFO] --- target-platform-configuration:2.3.0:target-platform (default-target-platform) @ org.eclipse.app4mc.converters.p2repo ---
+[DEBUG] Configuring mojo org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform from plugin realm ClassRealm[plugin>org.eclipse.tycho:target-platform-configuration:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml
+[DEBUG] -- end configuration --
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml
+[INFO] 
+[INFO] --- tycho-p2-publisher-plugin:2.3.0:publish-osgi-ee (default-publish-osgi-ee) @ org.eclipse.app4mc.converters.p2repo ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-publisher-plugin:2.3.0:publish-osgi-ee from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-publisher-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-publisher-plugin:2.3.0:publish-osgi-ee' with basic configurator -->
+[DEBUG]   (f) profiles = JavaSE-11, JavaSE-15, JavaSE-16
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) skip = false
+[DEBUG] -- end configuration --
+[INFO] Published profile IUs: [config.a.jre.javase 11.0.0, a.jre.javase 11.0.0]
+[WARNING] No system packages found in profile nor toolchain for JavaSE-15, using current JRE system packages.
+This can cause faulty dependency resolution, consider adding a definition for a 'jdk' with id=JavaSE-15 in your toolchains.xml
+[INFO] Published profile IUs: [config.a.jre.javase 15.0.0, a.jre.javase 15.0.0]
+[WARNING] No system packages found in profile nor toolchain for JavaSE-16, using current JRE system packages.
+This can cause faulty dependency resolution, consider adding a definition for a 'jdk' with id=JavaSE-16 in your toolchains.xml
+[INFO] Published profile IUs: [config.a.jre.javase 16.0.0, a.jre.javase 16.0.0]
+[INFO] 
+[INFO] --- tycho-p2-publisher-plugin:2.3.0:publish-products (default-publish-products) @ org.eclipse.app4mc.converters.p2repo ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-publisher-plugin:2.3.0:publish-products from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-publisher-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-publisher-plugin:2.3.0:publish-products' with basic configurator -->
+[DEBUG]   (f) flavor = tooling
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-p2-publisher-plugin:2.3.0:publish-categories (default-publish-categories) @ org.eclipse.app4mc.converters.p2repo ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-publisher-plugin:2.3.0:publish-categories from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-publisher-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-publisher-plugin:2.3.0:publish-categories' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-p2-publisher-plugin:2.3.0:attach-artifacts (default-attach-artifacts) @ org.eclipse.app4mc.converters.p2repo ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-publisher-plugin:2.3.0:attach-artifacts from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-publisher-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-publisher-plugin:2.3.0:attach-artifacts' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[DEBUG] Attaching xml::p2metadata -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\p2content.xml
+[DEBUG] Attaching xml::p2artifacts -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\p2artifacts.xml
+[INFO] 
+[INFO] --- tycho-p2-repository-plugin:2.3.0:assemble-repository (default-assemble-repository) @ org.eclipse.app4mc.converters.p2repo ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-repository-plugin:2.3.0:assemble-repository from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-repository-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-repository-plugin:2.3.0:assemble-repository' with basic configurator -->
+[DEBUG]   (f) compress = true
+[DEBUG]   (f) createArtifactRepository = true
+[DEBUG]   (f) includeAllDependencies = false
+[DEBUG]   (f) keepNonXzIndexFiles = true
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) repositoryName = org.eclipse.app4mc.converters.p2repo
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) xzCompress = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ org.eclipse.app4mc.converters.p2repo ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.converters.p2repo-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-p2-repository-plugin:2.3.0:archive-repository (default-archive-repository) @ org.eclipse.app4mc.converters.p2repo ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-repository-plugin:2.3.0:archive-repository from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-repository-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-repository-plugin:2.3.0:archive-repository' with basic configurator -->
+[DEBUG]   (f) finalName = org.eclipse.app4mc.converters.p2repo-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) skipArchive = false
+[DEBUG] -- end configuration --
+[INFO] Building zip: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\org.eclipse.app4mc.converters.p2repo-1.1.0-SNAPSHOT.zip
+[DEBUG] adding directory features/
+[DEBUG] adding directory plugins/
+[DEBUG] adding entry artifacts.jar
+[DEBUG] adding entry artifacts.xml.xz
+[DEBUG] adding entry content.jar
+[DEBUG] adding entry content.xml.xz
+[DEBUG] adding entry features/org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104220626.jar
+[DEBUG] adding entry features/org.eclipse.app4mc.amalthea.converters.sdk_1.1.0.202104220626.jar
+[DEBUG] adding entry features/org.eclipse.app4mc.amalthea.converters_1.1.0.202104220626.jar
+[DEBUG] adding entry p2.index
+[DEBUG] adding entry plugins/javax.xml_1.3.4.v201005080400.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.071.source_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.071_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.072.source_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.072_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.080.source_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.080_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.081.source_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.081_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.082.source_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.082_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.083.source_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.083_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.090.source_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.090_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.091.source_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.091_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.092.source_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.092_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.093.source_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.093_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.094.source_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.094_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.095.source_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.095_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.096.source_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.096_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.097.source_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.097_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.100.source_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.100_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.common.source_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.common_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.headless.app.source_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.headless.app_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.help_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.ui.source_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.ui_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.jaxen.source_1.1.6.v20191106-1554.jar
+[DEBUG] adding entry plugins/org.jaxen_1.1.6.v20191106-1554.jar
+[DEBUG] adding entry plugins/org.jdom2.source_2.0.6.v20191125-0928.jar
+[DEBUG] adding entry plugins/org.jdom2_2.0.6.v20191125-0928.jar
+[INFO] 
+[INFO] --- tycho-p2-director-plugin:2.3.0:materialize-products (materialize-products) @ org.eclipse.app4mc.converters.p2repo ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-director-plugin:2.3.0:materialize-products from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-director-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-director-plugin:2.3.0:materialize-products' with basic configurator -->
+[DEBUG]   (f) directorRuntime = internal
+[DEBUG]   (f) forkedProcessTimeoutInSeconds = 0
+[DEBUG]   (f) installFeatures = true
+[DEBUG]   (f) profile = DefaultProfile
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) source = targetPlatform
+[DEBUG] -- end configuration --
+[INFO] No product definitions found. Nothing to do.
+[INFO] 
+[INFO] --- tycho-p2-director-plugin:2.3.0:archive-products (archive-products) @ org.eclipse.app4mc.converters.p2repo ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-director-plugin:2.3.0:archive-products from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-director-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-director-plugin:2.3.0:archive-products' with basic configurator -->
+[DEBUG]   (f) forkedProcessTimeoutInSeconds = 0
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- repository-utils:2.2.0:generate-repository-facade (generate-facade) @ org.eclipse.app4mc.converters.p2repo ---
+[DEBUG] Configuring mojo org.jboss.tools.tycho-plugins:repository-utils:2.2.0:generate-repository-facade from plugin realm ClassRealm[plugin>org.jboss.tools.tycho-plugins:repository-utils:2.2.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.jboss.tools.tycho-plugins:repository-utils:2.2.0:generate-repository-facade' with basic configurator -->
+[DEBUG]   (f) associateSites = [http://download.eclipse.org/releases/photon, http://download.eclipse.org/cbi/updates/license, http://download.eclipse.org/tools/orbit/downloads/drops/I20191111200416/repository]
+[DEBUG]   (f) cssName = site.css
+[DEBUG]   (f) fallbackToChild = latest/all/repo
+[DEBUG]   (f) indexName = index.html
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) referenceStrategy = embedReferences
+[DEBUG]   (f) removeDefaultCategory = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) siteTemplateFolder = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\siteTemplate
+[DEBUG]   (f) skipBuildInfo = false
+[DEBUG]   (f) skipWebContentGeneration = false
+[DEBUG]   (f) strictBinIncludes = true
+[DEBUG]   (f) symbols = {target.app4mc.version=APP4MC 1.1.0, target.eclipse.version=IDE 2019-12 (4.14), update.site.name=APP4MC Migration Component}
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG] -- end configuration --
+[DEBUG] Using outputSite = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository
+[DEBUG] Using siteTemplateFolder = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\siteTemplate
+[WARNING] No C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\repository\web/site.css found; using default.
+[INFO] Building zip: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\target\org.eclipse.app4mc.converters.p2repo-1.1.0-SNAPSHOT.zip
+[INFO] 
+[INFO] ---------------< org.eclipse.app4mc.migration:headless >----------------
+[INFO] Building headless 1.1.0-SNAPSHOT                                 [45/47]
+[INFO] -------------------------[ eclipse-repository ]-------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): [compile+runtime]
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier-aggregator (default-build-qualifier-aggregator)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <baseDir>${project.basedir}</baseDir>
+  <execution>${mojoExecution}</execution>
+  <forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
+  <format default-value="yyyyMMddHHmm"/>
+  <packaging>${project.packaging}</packaging>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean-1)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources (default-resources)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <buildFilters default-value="${project.build.filters}"/>
+  <encoding default-value="${project.build.sourceEncoding}">${encoding}</encoding>
+  <escapeString default-value="${maven.resources.escapeString}"/>
+  <escapeWindowsPaths default-value="true">${maven.resources.escapeWindowsPaths}</escapeWindowsPaths>
+  <includeEmptyDirs default-value="false">${maven.resources.includeEmptyDirs}</includeEmptyDirs>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <overwrite default-value="false">${maven.resources.overwrite}</overwrite>
+  <project default-value="${project}"/>
+  <resources default-value="${project.resources}"/>
+  <session default-value="${session}"/>
+  <useBuildFilters default-value="true"/>
+  <useDefaultDelimiters default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform (default-target-platform)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-publisher-plugin:2.3.0:publish-osgi-ee (default-publish-osgi-ee)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <profiles default-value="JavaSE-11, JavaSE-15, JavaSE-16"/>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <skip default-value="false"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-publisher-plugin:2.3.0:publish-products (default-publish-products)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <flavor default-value="tooling"/>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-publisher-plugin:2.3.0:publish-categories (default-publish-categories)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-publisher-plugin:2.3.0:attach-artifacts (default-attach-artifacts)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-repository-plugin:2.3.0:assemble-repository (default-assemble-repository)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <compress default-value="true"/>
+  <createArtifactRepository default-value="true"/>
+  <includeAllDependencies default-value="false">true</includeAllDependencies>
+  <keepNonXzIndexFiles default-value="true"/>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <repositoryName default-value="${project.name}"/>
+  <session>${session}</session>
+  <xzCompress default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-repository-plugin:2.3.0:archive-repository (default-archive-repository)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <finalName>${project.build.finalName}</finalName>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <session>${session}</session>
+  <skipArchive default-value="false"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-director-plugin:2.3.0:materialize-products (materialize-products)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directorRuntime default-value="internal"/>
+  <forkedProcessTimeoutInSeconds default-value="0">${p2.timeout}</forkedProcessTimeoutInSeconds>
+  <installFeatures default-value="true"/>
+  <profile default-value="DefaultProfile"/>
+  <project>${project}</project>
+  <session>${session}</session>
+  <source default-value="targetPlatform"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-p2-director-plugin:2.3.0:archive-products (archive-products)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <forkedProcessTimeoutInSeconds default-value="0">${p2.timeout}</forkedProcessTimeoutInSeconds>
+  <project>${project}</project>
+  <session>${session}</session>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          biz.aQute.bnd:bnd-export-maven-plugin:4.3.1:export (default)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true"/>
+  <bndruns>
+    <bndrun>amalthea_migration.bndrun</bndrun>
+  </bndruns>
+  <bundles>
+    <include>target/repository/plugins/*</include>
+  </bundles>
+  <bundlesOnly default-value="false"/>
+  <failOnChanges default-value="true">false</failOnChanges>
+  <includeDependencyManagement default-value="false">${bnd.export.include.dependency.management}</includeDependencyManagement>
+  <project default-value="${project}"/>
+  <reportOptional default-value="true"/>
+  <repositorySession default-value="${repositorySystemSession}"/>
+  <resolve default-value="false"/>
+  <scopes default-value="compile,runtime">${bnd.export.scopes}</scopes>
+  <session default-value="${session}"/>
+  <settings default-value="${settings}"/>
+  <skip default-value="false">${bnd.export.skip}</skip>
+  <targetDir default-value="${project.build.directory}"/>
+  <useMavenDependencies default-value="true"/>
+</configuration>
+[DEBUG] =======================================================================
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=62000, ConflictMarker.markTime=81600, ConflictMarker.nodeCount=174, ConflictIdSorter.graphTime=71000, ConflictIdSorter.topsortTime=42400, ConflictIdSorter.conflictIdCount=29, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=548000, ConflictResolver.conflictItemCount=173, DefaultDependencyCollector.collectTime=2411100, DefaultDependencyCollector.transformTime=875400}
+[DEBUG] org.eclipse.app4mc.migration:headless:eclipse-repository:1.1.0-SNAPSHOT
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]       p2.eclipse-plugin:javax.annotation:jar:1.2.0.v201602091430:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.osgi:jar:3.15.100.v20191114-1701:system
+[DEBUG]       p2.eclipse-plugin:org.apache.felix.scr:jar:2.1.14.v20190123-1619:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.osgi.services:jar:3.8.0.v20190206-2147:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.osgi.util:jar:3.5.300.v20190708-1141:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.app4mc.util.sessionlog:jar:1.1.0.202104211257:system
+[DEBUG]       p2.eclipse-plugin:org.jdom2:jar:2.0.6.v20191125-0928:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.equinox.common:jar:3.10.600.v20191004-1420:system
+[DEBUG]       p2.eclipse-plugin:org.jaxen:jar:1.1.6.v20191106-1554:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]       p2.eclipse-plugin:org.apache.felix.gogo.runtime:jar:1.1.0.v20180713-1646:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:jar:1.1.0-SNAPSHOT:provided
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ headless ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\test-classes
+[DEBUG] -- end configuration --
+[INFO] Deleting C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\tmp\export\amalthea_migration\src
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\tmp\export\amalthea_migration\generated
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\tmp\export\amalthea_migration\cnf\cache\4.3.1\bnd-cache\biz.aQute.tester\biz.aQute.tester-4.3.1.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\tmp\export\amalthea_migration\cnf\cache\4.3.1\bnd-cache\biz.aQute.tester
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\tmp\export\amalthea_migration\cnf\cache\4.3.1\bnd-cache\biz.aQute.remote.launcher\biz.aQute.remote.launcher-4.3.1.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\tmp\export\amalthea_migration\cnf\cache\4.3.1\bnd-cache\biz.aQute.remote.launcher
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\tmp\export\amalthea_migration\cnf\cache\4.3.1\bnd-cache\biz.aQute.launcher\biz.aQute.launcher.pre.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\tmp\export\amalthea_migration\cnf\cache\4.3.1\bnd-cache\biz.aQute.launcher\biz.aQute.launcher-4.3.1.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\tmp\export\amalthea_migration\cnf\cache\4.3.1\bnd-cache\biz.aQute.launcher
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\tmp\export\amalthea_migration\cnf\cache\4.3.1\bnd-cache\biz.aQute.junit\biz.aQute.junit-4.3.1.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\tmp\export\amalthea_migration\cnf\cache\4.3.1\bnd-cache\biz.aQute.junit
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\tmp\export\amalthea_migration\cnf\cache\4.3.1\bnd-cache
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\tmp\export\amalthea_migration\cnf\cache\4.3.1
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\tmp\export\amalthea_migration\cnf\cache
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\tmp\export\amalthea_migration\cnf
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\tmp\export\amalthea_migration\bin
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\tmp\export\amalthea_migration
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\tmp\export
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\tmp
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\targetPlatformRepository\content.xml
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\targetPlatformRepository
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.jdom2_2.0.6.v20191125-0928.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.jaxen_1.1.6.v20191106-1554.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.osgi_3.15.100.v20191114-1701.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.osgi.util_3.5.300.v20190708-1141.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.osgi.services_3.8.0.v20190206-2147.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.equinox.launcher_1.5.600.v20191014-2022.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.1100.v20190907-0426.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.1100.v20190907-0426.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.equinox.launcher.cocoa.macosx.x86_64_1.1.1100.v20190907-0426.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.equinox.console_1.4.0.v20190819-1430.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.equinox.common_3.10.600.v20191004-1420.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.util.sessionlog_1.1.0.202104211257.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.util.sessionlog.file_1.1.0.202104211257.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.util.sessionlog.console_1.1.0.202104211257.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.headless.app_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.common_1.1.0.202104160923.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.100_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.097_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.096_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.095_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.094_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.093_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.092_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.091_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.090_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.083_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.082_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.081_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.080_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.072_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.071_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.apache.felix.scr_2.1.14.v20190123-1619.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.apache.felix.gogo.shell_1.1.0.v20180713-1646.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.apache.felix.gogo.runtime_1.1.0.v20180713-1646.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.apache.felix.gogo.command_1.0.2.v20170914-1324.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\javax.xml_1.3.4.v201005080400.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\javax.annotation_1.2.0.v201602091430.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\p2.index
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\features\org.eclipse.equinox.executable_3.8.600.v20191014-2025.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\features\org.eclipse.app4mc.utils.headless_1.1.0.202104211257.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\features\org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104160923.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\features\org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104151512.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\features
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\content.xml.xz
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\content.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\binary\org.eclipse.app4mc.converters.headless.executable.win32.win32.x86_64_1.1.0.202104211257
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\binary\org.eclipse.app4mc.converters.headless.executable.gtk.linux.x86_64_1.1.0.202104211257
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\binary\org.eclipse.app4mc.converters.headless.executable.cocoa.macosx.x86_64_1.1.0.202104211257
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\binary
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\artifacts.xml.xz
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\artifacts.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless-win32.win32.x86_64.zip
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless-macosx.cocoa.x86_64.zip
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless-linux.gtk.x86_64.zip
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\plugins\org.jdom2_2.0.6.v20191125-0928.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\plugins\org.jaxen_1.1.6.v20191106-1554.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\plugins\org.eclipse.osgi_3.15.100.v20191114-1701.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\plugins\org.eclipse.osgi.util_3.5.300.v20190708-1141.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\plugins\org.eclipse.osgi.services_3.8.0.v20190206-2147.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\plugins\org.eclipse.equinox.launcher_1.5.600.v20191014-2022.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\plugins\org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.1100.v20190907-0426\META-INF\MANIFEST.MF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\plugins\org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.1100.v20190907-0426\META-INF\ECLIPSE_.SF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\plugins\org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.1100.v20190907-0426\META-INF\ECLIPSE_.RSA
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\plugins\org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.1100.v20190907-0426\META-INF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\plugins\org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.1100.v20190907-0426\launcher.win32.win32.x86_64.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\plugins\org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.1100.v20190907-0426\eclipse_1902.dll
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\plugins\org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.1100.v20190907-0426\about.html
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\plugins\org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.1100.v20190907-0426
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\plugins\org.eclipse.equinox.console_1.4.0.v20190819-1430.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\plugins\org.eclipse.equinox.common_3.10.600.v20191004-1420.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\plugins\org.eclipse.app4mc.util.sessionlog_1.1.0.202104211257.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\plugins\org.eclipse.app4mc.util.sessionlog.file_1.1.0.202104211257.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\plugins\org.eclipse.app4mc.util.sessionlog.console_1.1.0.202104211257.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\plugins\org.eclipse.app4mc.amalthea.converters.headless.app_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\plugins\org.eclipse.app4mc.amalthea.converters.common_1.1.0.202104160923.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\plugins\org.eclipse.app4mc.amalthea.converters.100_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\plugins\org.eclipse.app4mc.amalthea.converters.097_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\plugins\org.eclipse.app4mc.amalthea.converters.096_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\plugins\org.eclipse.app4mc.amalthea.converters.095_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\plugins\org.eclipse.app4mc.amalthea.converters.094_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\plugins\org.eclipse.app4mc.amalthea.converters.093_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\plugins\org.eclipse.app4mc.amalthea.converters.092_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\plugins\org.eclipse.app4mc.amalthea.converters.091_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\plugins\org.eclipse.app4mc.amalthea.converters.090_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\plugins\org.eclipse.app4mc.amalthea.converters.083_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\plugins\org.eclipse.app4mc.amalthea.converters.082_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\plugins\org.eclipse.app4mc.amalthea.converters.081_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\plugins\org.eclipse.app4mc.amalthea.converters.080_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\plugins\org.eclipse.app4mc.amalthea.converters.072_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\plugins\org.eclipse.app4mc.amalthea.converters.071_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\plugins\org.apache.felix.scr_2.1.14.v20190123-1619.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\plugins\org.apache.felix.gogo.shell_1.1.0.v20180713-1646.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\plugins\org.apache.felix.gogo.runtime_1.1.0.v20180713-1646.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\plugins\org.apache.felix.gogo.command_1.0.2.v20170914-1324.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\plugins\javax.xml_1.3.4.v201005080400.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\plugins
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\p2\org.eclipse.equinox.p2.engine\profileRegistry\DefaultProfile.profile\1619070772790.profile.gz
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\p2\org.eclipse.equinox.p2.engine\profileRegistry\DefaultProfile.profile\1619070772642.profile.gz
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\p2\org.eclipse.equinox.p2.engine\profileRegistry\DefaultProfile.profile\1619070772075.profile.gz
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\p2\org.eclipse.equinox.p2.engine\profileRegistry\DefaultProfile.profile\1619070772051.profile.gz
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\p2\org.eclipse.equinox.p2.engine\profileRegistry\DefaultProfile.profile\.lock
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\p2\org.eclipse.equinox.p2.engine\profileRegistry\DefaultProfile.profile\.data
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\p2\org.eclipse.equinox.p2.engine\profileRegistry\DefaultProfile.profile
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\p2\org.eclipse.equinox.p2.engine\profileRegistry
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\p2\org.eclipse.equinox.p2.engine\.settings\org.eclipse.equinox.p2.metadata.repository.prefs
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\p2\org.eclipse.equinox.p2.engine\.settings\org.eclipse.equinox.p2.artifact.repository.prefs
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\p2\org.eclipse.equinox.p2.engine\.settings
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\p2\org.eclipse.equinox.p2.engine
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\p2\org.eclipse.equinox.p2.core\cache\binary\org.eclipse.app4mc.converters.headless.executable.win32.win32.x86_64_1.1.0.202104211257
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\p2\org.eclipse.equinox.p2.core\cache\binary
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\p2\org.eclipse.equinox.p2.core\cache\artifacts.xml
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\p2\org.eclipse.equinox.p2.core\cache
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\p2\org.eclipse.equinox.p2.core
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\p2
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\features\org.eclipse.app4mc.utils.headless_1.1.0.202104211257\META-INF\MANIFEST.MF
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\features\org.eclipse.app4mc.utils.headless_1.1.0.202104211257\META-INF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\features\org.eclipse.app4mc.utils.headless_1.1.0.202104211257\license.html
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\features\org.eclipse.app4mc.utils.headless_1.1.0.202104211257\feature.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\features\org.eclipse.app4mc.utils.headless_1.1.0.202104211257\feature.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\features\org.eclipse.app4mc.utils.headless_1.1.0.202104211257\epl-2.0.html
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\features\org.eclipse.app4mc.utils.headless_1.1.0.202104211257\about.html
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\features\org.eclipse.app4mc.utils.headless_1.1.0.202104211257
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\features\org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104160923\META-INF\MANIFEST.MF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\features\org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104160923\META-INF\ECLIPSE_.SF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\features\org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104160923\META-INF\ECLIPSE_.RSA
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\features\org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104160923\META-INF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\features\org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104160923\license.html
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\features\org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104160923\feature.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\features\org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104160923\feature.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\features\org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104160923\epl-2.0.html
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\features\org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104160923
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\features\org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104151512\META-INF\MANIFEST.MF
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\features\org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104151512\META-INF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\features\org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104151512\license.html
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\features\org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104151512\feature.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\features\org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104151512\feature.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\features\org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104151512\epl-2.0.html
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\features\org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104151512
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\features
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\eclipsec.exe
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\configuration\org.eclipse.update\platform.xml
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\configuration\org.eclipse.update
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\configuration\config.ini
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\configuration
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\artifacts.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\amalthea_migration.ini
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64\amalthea_migration.exe
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\MacOS\amalthea_migration
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\MacOS
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Info.plist
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\plugins\org.jdom2_2.0.6.v20191125-0928.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\plugins\org.jaxen_1.1.6.v20191106-1554.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\plugins\org.eclipse.osgi_3.15.100.v20191114-1701.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\plugins\org.eclipse.osgi.util_3.5.300.v20190708-1141.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\plugins\org.eclipse.osgi.services_3.8.0.v20190206-2147.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\plugins\org.eclipse.equinox.launcher_1.5.600.v20191014-2022.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\plugins\org.eclipse.equinox.launcher.cocoa.macosx.x86_64_1.1.1100.v20190907-0426\META-INF\MANIFEST.MF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\plugins\org.eclipse.equinox.launcher.cocoa.macosx.x86_64_1.1.1100.v20190907-0426\META-INF\ECLIPSE_.SF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\plugins\org.eclipse.equinox.launcher.cocoa.macosx.x86_64_1.1.1100.v20190907-0426\META-INF\ECLIPSE_.RSA
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\plugins\org.eclipse.equinox.launcher.cocoa.macosx.x86_64_1.1.1100.v20190907-0426\META-INF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\plugins\org.eclipse.equinox.launcher.cocoa.macosx.x86_64_1.1.1100.v20190907-0426\launcher.cocoa.macosx.x86_64.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\plugins\org.eclipse.equinox.launcher.cocoa.macosx.x86_64_1.1.1100.v20190907-0426\eclipse_1902.so
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\plugins\org.eclipse.equinox.launcher.cocoa.macosx.x86_64_1.1.1100.v20190907-0426\about.html
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\plugins\org.eclipse.equinox.launcher.cocoa.macosx.x86_64_1.1.1100.v20190907-0426
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\plugins\org.eclipse.equinox.console_1.4.0.v20190819-1430.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\plugins\org.eclipse.equinox.common_3.10.600.v20191004-1420.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\plugins\org.eclipse.app4mc.util.sessionlog_1.1.0.202104211257.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\plugins\org.eclipse.app4mc.util.sessionlog.file_1.1.0.202104211257.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\plugins\org.eclipse.app4mc.util.sessionlog.console_1.1.0.202104211257.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\plugins\org.eclipse.app4mc.amalthea.converters.headless.app_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\plugins\org.eclipse.app4mc.amalthea.converters.common_1.1.0.202104160923.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\plugins\org.eclipse.app4mc.amalthea.converters.100_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\plugins\org.eclipse.app4mc.amalthea.converters.097_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\plugins\org.eclipse.app4mc.amalthea.converters.096_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\plugins\org.eclipse.app4mc.amalthea.converters.095_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\plugins\org.eclipse.app4mc.amalthea.converters.094_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\plugins\org.eclipse.app4mc.amalthea.converters.093_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\plugins\org.eclipse.app4mc.amalthea.converters.092_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\plugins\org.eclipse.app4mc.amalthea.converters.091_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\plugins\org.eclipse.app4mc.amalthea.converters.090_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\plugins\org.eclipse.app4mc.amalthea.converters.083_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\plugins\org.eclipse.app4mc.amalthea.converters.082_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\plugins\org.eclipse.app4mc.amalthea.converters.081_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\plugins\org.eclipse.app4mc.amalthea.converters.080_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\plugins\org.eclipse.app4mc.amalthea.converters.072_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\plugins\org.eclipse.app4mc.amalthea.converters.071_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\plugins\org.apache.felix.scr_2.1.14.v20190123-1619.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\plugins\org.apache.felix.gogo.shell_1.1.0.v20180713-1646.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\plugins\org.apache.felix.gogo.runtime_1.1.0.v20180713-1646.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\plugins\org.apache.felix.gogo.command_1.0.2.v20170914-1324.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\plugins\javax.xml_1.3.4.v201005080400.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\plugins
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\p2\org.eclipse.equinox.p2.engine\profileRegistry\DefaultProfile.profile\1619070776579.profile.gz
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\p2\org.eclipse.equinox.p2.engine\profileRegistry\DefaultProfile.profile\1619070776496.profile.gz
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\p2\org.eclipse.equinox.p2.engine\profileRegistry\DefaultProfile.profile\1619070776151.profile.gz
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\p2\org.eclipse.equinox.p2.engine\profileRegistry\DefaultProfile.profile\1619070776144.profile.gz
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\p2\org.eclipse.equinox.p2.engine\profileRegistry\DefaultProfile.profile\.lock
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\p2\org.eclipse.equinox.p2.engine\profileRegistry\DefaultProfile.profile\.data
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\p2\org.eclipse.equinox.p2.engine\profileRegistry\DefaultProfile.profile
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\p2\org.eclipse.equinox.p2.engine\profileRegistry
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\p2\org.eclipse.equinox.p2.engine\.settings\org.eclipse.equinox.p2.metadata.repository.prefs
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\p2\org.eclipse.equinox.p2.engine\.settings\org.eclipse.equinox.p2.artifact.repository.prefs
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\p2\org.eclipse.equinox.p2.engine\.settings
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\p2\org.eclipse.equinox.p2.engine
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\p2\org.eclipse.equinox.p2.core\cache\binary\org.eclipse.app4mc.converters.headless.executable.cocoa.macosx.x86_64_1.1.0.202104211257
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\p2\org.eclipse.equinox.p2.core\cache\binary
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\p2\org.eclipse.equinox.p2.core\cache\artifacts.xml
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\p2\org.eclipse.equinox.p2.core\cache
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\p2\org.eclipse.equinox.p2.core
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\p2
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\features\org.eclipse.app4mc.utils.headless_1.1.0.202104211257\META-INF\MANIFEST.MF
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\features\org.eclipse.app4mc.utils.headless_1.1.0.202104211257\META-INF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\features\org.eclipse.app4mc.utils.headless_1.1.0.202104211257\license.html
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\features\org.eclipse.app4mc.utils.headless_1.1.0.202104211257\feature.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\features\org.eclipse.app4mc.utils.headless_1.1.0.202104211257\feature.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\features\org.eclipse.app4mc.utils.headless_1.1.0.202104211257\epl-2.0.html
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\features\org.eclipse.app4mc.utils.headless_1.1.0.202104211257\about.html
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\features\org.eclipse.app4mc.utils.headless_1.1.0.202104211257
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\features\org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104160923\META-INF\MANIFEST.MF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\features\org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104160923\META-INF\ECLIPSE_.SF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\features\org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104160923\META-INF\ECLIPSE_.RSA
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\features\org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104160923\META-INF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\features\org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104160923\license.html
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\features\org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104160923\feature.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\features\org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104160923\feature.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\features\org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104160923\epl-2.0.html
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\features\org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104160923
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\features\org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104151512\META-INF\MANIFEST.MF
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\features\org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104151512\META-INF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\features\org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104151512\license.html
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\features\org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104151512\feature.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\features\org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104151512\feature.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\features\org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104151512\epl-2.0.html
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\features\org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104151512
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\features
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\configuration\org.eclipse.update\platform.xml
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\configuration\org.eclipse.update
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\configuration\config.ini
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\configuration
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\artifacts.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse\amalthea_migration.ini
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents\Eclipse
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app\Contents
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\plugins\org.jdom2_2.0.6.v20191125-0928.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\plugins\org.jaxen_1.1.6.v20191106-1554.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\plugins\org.eclipse.osgi_3.15.100.v20191114-1701.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\plugins\org.eclipse.osgi.util_3.5.300.v20190708-1141.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\plugins\org.eclipse.osgi.services_3.8.0.v20190206-2147.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\plugins\org.eclipse.equinox.launcher_1.5.600.v20191014-2022.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\plugins\org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.1100.v20190907-0426\META-INF\MANIFEST.MF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\plugins\org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.1100.v20190907-0426\META-INF\ECLIPSE_.SF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\plugins\org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.1100.v20190907-0426\META-INF\ECLIPSE_.RSA
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\plugins\org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.1100.v20190907-0426\META-INF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\plugins\org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.1100.v20190907-0426\launcher.gtk.linux.x86_64.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\plugins\org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.1100.v20190907-0426\eclipse_1801.so
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\plugins\org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.1100.v20190907-0426\about.html
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\plugins\org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.1100.v20190907-0426
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\plugins\org.eclipse.equinox.console_1.4.0.v20190819-1430.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\plugins\org.eclipse.equinox.common_3.10.600.v20191004-1420.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\plugins\org.eclipse.app4mc.util.sessionlog_1.1.0.202104211257.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\plugins\org.eclipse.app4mc.util.sessionlog.file_1.1.0.202104211257.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\plugins\org.eclipse.app4mc.util.sessionlog.console_1.1.0.202104211257.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\plugins\org.eclipse.app4mc.amalthea.converters.headless.app_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\plugins\org.eclipse.app4mc.amalthea.converters.common_1.1.0.202104160923.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\plugins\org.eclipse.app4mc.amalthea.converters.100_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\plugins\org.eclipse.app4mc.amalthea.converters.097_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\plugins\org.eclipse.app4mc.amalthea.converters.096_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\plugins\org.eclipse.app4mc.amalthea.converters.095_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\plugins\org.eclipse.app4mc.amalthea.converters.094_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\plugins\org.eclipse.app4mc.amalthea.converters.093_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\plugins\org.eclipse.app4mc.amalthea.converters.092_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\plugins\org.eclipse.app4mc.amalthea.converters.091_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\plugins\org.eclipse.app4mc.amalthea.converters.090_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\plugins\org.eclipse.app4mc.amalthea.converters.083_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\plugins\org.eclipse.app4mc.amalthea.converters.082_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\plugins\org.eclipse.app4mc.amalthea.converters.081_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\plugins\org.eclipse.app4mc.amalthea.converters.080_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\plugins\org.eclipse.app4mc.amalthea.converters.072_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\plugins\org.eclipse.app4mc.amalthea.converters.071_1.1.0.202104151512.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\plugins\org.apache.felix.scr_2.1.14.v20190123-1619.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\plugins\org.apache.felix.gogo.shell_1.1.0.v20180713-1646.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\plugins\org.apache.felix.gogo.runtime_1.1.0.v20180713-1646.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\plugins\org.apache.felix.gogo.command_1.0.2.v20170914-1324.jar
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\plugins\javax.xml_1.3.4.v201005080400.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\plugins
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\p2\org.eclipse.equinox.p2.engine\profileRegistry\DefaultProfile.profile\1619070774779.profile.gz
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\p2\org.eclipse.equinox.p2.engine\profileRegistry\DefaultProfile.profile\1619070774686.profile.gz
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\p2\org.eclipse.equinox.p2.engine\profileRegistry\DefaultProfile.profile\1619070774223.profile.gz
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\p2\org.eclipse.equinox.p2.engine\profileRegistry\DefaultProfile.profile\1619070774217.profile.gz
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\p2\org.eclipse.equinox.p2.engine\profileRegistry\DefaultProfile.profile\.lock
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\p2\org.eclipse.equinox.p2.engine\profileRegistry\DefaultProfile.profile\.data
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\p2\org.eclipse.equinox.p2.engine\profileRegistry\DefaultProfile.profile
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\p2\org.eclipse.equinox.p2.engine\profileRegistry
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\p2\org.eclipse.equinox.p2.engine\.settings\org.eclipse.equinox.p2.metadata.repository.prefs
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\p2\org.eclipse.equinox.p2.engine\.settings\org.eclipse.equinox.p2.artifact.repository.prefs
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\p2\org.eclipse.equinox.p2.engine\.settings
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\p2\org.eclipse.equinox.p2.engine
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\p2\org.eclipse.equinox.p2.core\cache\binary\org.eclipse.app4mc.converters.headless.executable.gtk.linux.x86_64_1.1.0.202104211257
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\p2\org.eclipse.equinox.p2.core\cache\binary
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\p2\org.eclipse.equinox.p2.core\cache\artifacts.xml
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\p2\org.eclipse.equinox.p2.core\cache
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\p2\org.eclipse.equinox.p2.core
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\p2
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\features\org.eclipse.app4mc.utils.headless_1.1.0.202104211257\META-INF\MANIFEST.MF
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\features\org.eclipse.app4mc.utils.headless_1.1.0.202104211257\META-INF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\features\org.eclipse.app4mc.utils.headless_1.1.0.202104211257\license.html
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\features\org.eclipse.app4mc.utils.headless_1.1.0.202104211257\feature.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\features\org.eclipse.app4mc.utils.headless_1.1.0.202104211257\feature.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\features\org.eclipse.app4mc.utils.headless_1.1.0.202104211257\epl-2.0.html
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\features\org.eclipse.app4mc.utils.headless_1.1.0.202104211257\about.html
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\features\org.eclipse.app4mc.utils.headless_1.1.0.202104211257
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\features\org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104160923\META-INF\MANIFEST.MF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\features\org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104160923\META-INF\ECLIPSE_.SF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\features\org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104160923\META-INF\ECLIPSE_.RSA
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\features\org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104160923\META-INF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\features\org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104160923\license.html
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\features\org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104160923\feature.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\features\org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104160923\feature.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\features\org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104160923\epl-2.0.html
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\features\org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104160923
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\features\org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104151512\META-INF\MANIFEST.MF
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\features\org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104151512\META-INF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\features\org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104151512\license.html
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\features\org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104151512\feature.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\features\org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104151512\feature.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\features\org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104151512\epl-2.0.html
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\features\org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104151512
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\features
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\configuration\org.eclipse.update\platform.xml
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\configuration\org.eclipse.update
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\configuration\config.ini
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\configuration
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\artifacts.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\amalthea_migration.ini
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64\amalthea_migration
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\p2content.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\p2artifacts.xml
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\p2agent\org.eclipse.equinox.p2.engine\profileRegistry
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\p2agent\org.eclipse.equinox.p2.engine\.settings\org.eclipse.equinox.p2.metadata.repository.prefs
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\p2agent\org.eclipse.equinox.p2.engine\.settings\org.eclipse.equinox.p2.artifact.repository.prefs
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\p2agent\org.eclipse.equinox.p2.engine\.settings
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\p2agent\org.eclipse.equinox.p2.engine
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\p2agent\org.eclipse.equinox.p2.core\cache\artifacts.xml
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\p2agent\org.eclipse.equinox.p2.core\cache
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\p2agent\org.eclipse.equinox.p2.core
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\p2agent
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\org.eclipse.equinox.executable-3.8.600.v20191014-2025\META-INF\MANIFEST.MF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\org.eclipse.equinox.executable-3.8.600.v20191014-2025\META-INF\ECLIPSE_.SF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\org.eclipse.equinox.executable-3.8.600.v20191014-2025\META-INF\ECLIPSE_.RSA
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\org.eclipse.equinox.executable-3.8.600.v20191014-2025\META-INF
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\org.eclipse.equinox.executable-3.8.600.v20191014-2025\license.html
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\org.eclipse.equinox.executable-3.8.600.v20191014-2025\gtk_root\about.html
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\org.eclipse.equinox.executable-3.8.600.v20191014-2025\gtk_root
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\org.eclipse.equinox.executable-3.8.600.v20191014-2025\feature.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\org.eclipse.equinox.executable-3.8.600.v20191014-2025\feature.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\org.eclipse.equinox.executable-3.8.600.v20191014-2025\epl-2.0.html
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\org.eclipse.equinox.executable-3.8.600.v20191014-2025\build.xml
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\org.eclipse.equinox.executable-3.8.600.v20191014-2025\build.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\org.eclipse.equinox.executable-3.8.600.v20191014-2025\bin\win32\win32\x86_64\launcher.exe
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\org.eclipse.equinox.executable-3.8.600.v20191014-2025\bin\win32\win32\x86_64\eclipsec.exe
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\org.eclipse.equinox.executable-3.8.600.v20191014-2025\bin\win32\win32\x86_64
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\org.eclipse.equinox.executable-3.8.600.v20191014-2025\bin\win32\win32
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\org.eclipse.equinox.executable-3.8.600.v20191014-2025\bin\win32
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\org.eclipse.equinox.executable-3.8.600.v20191014-2025\bin\gtk\linux\x86_64\launcher
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\org.eclipse.equinox.executable-3.8.600.v20191014-2025\bin\gtk\linux\x86_64
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\org.eclipse.equinox.executable-3.8.600.v20191014-2025\bin\gtk\linux\ppc64le\launcher
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\org.eclipse.equinox.executable-3.8.600.v20191014-2025\bin\gtk\linux\ppc64le
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\org.eclipse.equinox.executable-3.8.600.v20191014-2025\bin\gtk\linux
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\org.eclipse.equinox.executable-3.8.600.v20191014-2025\bin\gtk
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\org.eclipse.equinox.executable-3.8.600.v20191014-2025\bin\cocoa\macosx\x86_64\Eclipse.app\Contents\MacOS\launcher
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\org.eclipse.equinox.executable-3.8.600.v20191014-2025\bin\cocoa\macosx\x86_64\Eclipse.app\Contents\MacOS
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\org.eclipse.equinox.executable-3.8.600.v20191014-2025\bin\cocoa\macosx\x86_64\Eclipse.app\Contents\Info.plist
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\org.eclipse.equinox.executable-3.8.600.v20191014-2025\bin\cocoa\macosx\x86_64\Eclipse.app\Contents
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\org.eclipse.equinox.executable-3.8.600.v20191014-2025\bin\cocoa\macosx\x86_64\Eclipse.app
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\org.eclipse.equinox.executable-3.8.600.v20191014-2025\bin\cocoa\macosx\x86_64
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\org.eclipse.equinox.executable-3.8.600.v20191014-2025\bin\cocoa\macosx
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\org.eclipse.equinox.executable-3.8.600.v20191014-2025\bin\cocoa
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\org.eclipse.equinox.executable-3.8.600.v20191014-2025\bin
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\org.eclipse.equinox.executable-3.8.600.v20191014-2025
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\local-artifacts.properties
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\headless-1.1.0-SNAPSHOT.zip
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\extraArtifacts\org.eclipse.app4mc.converters.headless.executable.win32.win32.x86_64.zip
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\extraArtifacts\org.eclipse.app4mc.converters.headless.executable.gtk.linux.x86_64.zip
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\extraArtifacts\org.eclipse.app4mc.converters.headless.executable.cocoa.macosx.x86_64.zip
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\extraArtifacts
+[INFO] Deleting file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\amalthea_migration.jar
+[INFO] Deleting directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\site
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:build-qualifier-aggregator (default-build-qualifier-aggregator) @ headless ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier-aggregator from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier-aggregator' with basic configurator -->
+[DEBUG]   (f) baseDir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product
+[DEBUG]   (f) execution = org.eclipse.tycho:tycho-packaging-plugin:2.3.0:build-qualifier-aggregator {execution: default-build-qualifier-aggregator}
+[DEBUG]   (s) format = yyyyMMddHHmm
+[DEBUG]   (f) packaging = eclipse-repository
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] The project's OSGi version is 1.1.0.202104220626
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean-1) @ headless ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\test-classes
+[DEBUG] -- end configuration --
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\site
+[INFO] 
+[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ headless ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-resources-plugin:2.4.3, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-resources-plugin:2.4.3:resources' with basic configurator -->
+[DEBUG]   (f) buildFilters = []
+[DEBUG]   (f) encoding = UTF-8
+[DEBUG]   (f) escapeWindowsPaths = true
+[DEBUG]   (s) includeEmptyDirs = false
+[DEBUG]   (s) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\classes
+[DEBUG]   (s) overwrite = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml
+[DEBUG]   (s) resources = [Resource {targetPath: null, filtering: false, FileSet {directory: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) useBuildFilters = true
+[DEBUG]   (s) useDefaultDelimiters = true
+[DEBUG] -- end configuration --
+[DEBUG] properties used {env.VBOX_INSTALL_PATH=C:\Program Files (x86)\Sun xVM VirtualBox, env.NUMBER_OF_PROCESSORS=8, env.USERPROFILE=C:\Users\fad8pl, java.specification.version=11, sun.cpu.isalist=amd64, env.ML_DP_SERVER_NG2=\\FE0RBCM06.de.bosch.com\eforms\WTS\NG2, sun.arch.data.model=64, env.PROGRAMW6432=C:\Program Files, env.SAPKM_USER_TEMP=C:\Users\fad8pl\AppData\Local, java.vendor.url=https://adoptopenjdk.net/, env.OS=Windows_NT, env.HTTP_PROXY=http://127.0.0.1:3128, sun.boot.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin, sonar.cpd.exclusions=**/*.tests/**/*.java, sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher clean verify -X -l log.txt, env.SYSTEMROOT=C:\WINDOWS, jdk.debug=release, maven.version=3.6.3, java.specification.vendor=Oracle Corporation, java.version.date=2020-11-04, java.home=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, java.specification.name=Java Platform API Specification, java.vm.specification.vendor=Oracle Corporation, env.LOCALAPPDATA=C:\Users\fad8pl\AppData\Local, env.USERDOMAIN_ROAMINGPROFILE=DE, user.script=, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, env.REDHAT_JAVA_HOME=C:\Program Files\RedHat\java-1.8.0-openjdk\, java.runtime.version=11.0.9.1+1, env.PATH=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;, env.PUBLIC=C:\Users\Public, env.EXEC_DIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.COMMONPROGRAMW6432=C:\Program Files\Common Files, file.encoding=Cp1252, maven.build.timestamp.format=yyyyMMdd-HHmmss, tycho.version=2.3.0, java.vendor.version=AdoptOpenJDK, env.COMPUTERNAME=PL-Z4952, env.HOMEPATH=\Users\fad8pl, env.APPDATA=C:\Users\fad8pl\AppData\Roaming, java.io.tmpdir=C:\Users\fad8pl\AppData\Local\Temp\, env.SSF_LIBRARY_PATH=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.version=11.0.9.1, java.vm.specification.name=Java Virtual Machine Specification, java.awt.printerjob=sun.awt.windows.WPrinterJob, java.library.path=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot;C:\Oracle\Client\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files\7-Zip;C:\Development\Gradle\gradle-5.4.1\bin;C:\Development\Maven\apache-maven-3.6.3\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Development\PANORAMA\ASF Simulation\HashiCorp\Vagrant\bin;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Git\cmd;C:\Program Files\PuTTY\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\gs\gs9.21\bin;C:\Program Files (x86)\Toolbase Client;C:\Program Files\RedHat\java-1.8.0-openjdk\missioncontrol\;C:\Program Files\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files\RedHat\java-1.8.0-openjdk\bin;C:\Program Files\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\webstart\;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\bin;C:\Program Files (x86)\RedHat\java-1.8.0-openjdk\jre\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Users\fad8pl\AppData\Local\Microsoft\WindowsApps;;., java.vendor=AdoptOpenJDK, env.ERROR_CODE=0, classworlds.conf=C:\Development\Maven\apache-maven-3.6.3\bin\..\bin\m2.conf, sun.io.unicode.encoding=UnicodeLittle, sun.desktop=windows, env.VBOX_USER_HOME=C:\DATEN\Virtualbox, env.GRADLE_HOME=C:\Development\Gradle\gradle-5.4.1, user.timezone=, os.name=Windows 10, java.vm.specification.version=11, sonar.coverage.jacoco.xmlReportPaths=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product/../../releng/org.eclipse.app4mc.converters.p2repo/target/site/jacoco-aggregate/jacoco.xml, env.=EXITCODE=00000001, env.=::=::\, user.home=C:\Users\fad8pl, jacoco.version=0.8.5, env.ALLUSERSPROFILE=C:\ProgramData, env.SESSIONNAME=Console, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, env.NEXTHINK=C:\Program Files\Nexthink\Collector, tycho.env.osgi.ws=win32, path.separator=;, os.version=10.0, env.CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher, env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC, java.vm.name=OpenJDK 64-Bit Server VM, sonar.surefire.reportsPath=../../tests/headless.tests/target/surefire-reports/, env.TNS_ADMIN=C:\oracle\ora_net, env.USERNAME=fad8pl, os.arch=amd64, maven.multiModuleProjectDirectory=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, user.language.format=de, env.MAVEN_PROJECTBASEDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SNC_LIB_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.info=mixed mode, env.TEMP=C:\Users\fad8pl\AppData\Local\Temp, java.class.version=55.0, awt.toolkit=sun.awt.windows.WToolkit, sun.jnu.encoding=Cp1252, env.MOZ_LEGACY_PROFILES=1, env.UATDATA=C:\WINDOWS\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77, user.country.format=DE, env.TBCPROFILE_DIR=C:\toolbase\_profile, maven.build.version=Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f), maven.home=C:\Development\Maven\apache-maven-3.6.3\bin\.., sun.stderr.encoding=cp437, env.SAPLOGON_INI_FILE=C:\ProgramData\sap\saplogon.ini, env.JAVA_HOME=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot, env.PROGRAMFILES=C:\Program Files, file.separator=\, java.vm.compressedOopsMode=Zero based, env.CLASSWORLDS_JAR="C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar", line.separator=
+, sun.stdout.encoding=cp437, env.PROMPT=$P$G, buildQualifier=202104220626, env.PROCESSOR_REVISION=8e0a, app4mc.version=1.1.0-SNAPSHOT, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 10, GenuineIntel, env.PROGRAMDATA=C:\ProgramData, sonar.java.source=8, user.name=fad8pl, env.SNC_LIB_32=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.DRIVERDATA=C:\Windows\System32\Drivers\DriverData, env.TBC_HOME=C:\Program Files (x86)\Toolbase Client, env.SYSTEMDRIVE=C:, env.VBOX_USER_VMLOGDIR=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, build-helper.version=1.9.1, env.JVMCONFIG=\.mvn\jvm.config, env.LOCALPKIDATA=C:\Users\fad8pl, env.PROGRAMFILES(X86)=C:\Program Files (x86), env.PROCESSOR_LEVEL=6, env.HOMEDRIVE=C:, env.PSMODULEPATH=C:\Program Files\WindowsPowerShell\Modules;C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules, env.TMP=C:\Users\fad8pl\AppData\Local\Temp, project.reporting.outputEncoding=UTF-8, sun.os.patch.level=, env.LOGONSERVER=\\KA-BCD06, library.jansi.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\lib\jansi-native, env.WINDIR=C:\WINDOWS, tycho.env.osgi.arch=x86_64, env.USERDNSDOMAIN=DE.BOSCH.COM, java.class.path=C:\Development\Maven\apache-maven-3.6.3\bin\..\boot\plexus-classworlds-2.6.0.jar, env.HOME=C:\Users\fad8pl, env.PKIDATA=C:\Users\fad8pl, env.SNC_LIB=C:\Program Files (x86)\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, java.vm.vendor=AdoptOpenJDK, env.PROCESSOR_ARCHITECTURE=AMD64, user.variant=, env.COMMONPROGRAMFILES=C:\Program Files\Common Files, maven.conf=C:\Development\Maven\apache-maven-3.6.3\bin\../conf, sun.java.launcher=SUN_STANDARD, user.country=US, app4mc.baseline=1.0.0, sonar.coverage.exclusions=**/*.tests/**/*.java, env.USERDOMAIN=DE, qualifiedVersion=1.1.0.202104220626, env.COMSPEC=C:\WINDOWS\system32\cmd.exe, sun.cpu.endian=little, user.language=en, env.JAVACMD=C:\Program Files\AdoptOpenJDK\jdk-11.0.9.101-hotspot\bin\java.exe, env.MAVEN_HOME=C:\Development\Maven\apache-maven-3.6.3\bin\.., env.WDIR=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, env.SSF_LIBRARY_PATH_64=C:\Program Files\SAP\FrontEnd\SecureLogin\lib\sapcrypto.dll, env.=C:=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, java.runtime.name=OpenJDK Runtime Environment, unqualifiedVersion=1.1.0, env.C:\PROGRAMDATA\BOSCH\RBCM\LOGS\PACKAGES\RBCM1092=C:\ProgramData\Bosch\RBcm\logs\packages\RBCM1092, project.build.sourceEncoding=UTF-8, env.JAVAFX_HOME=C:\Development\JavaFX\javafx-sdk-11.0.2, env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files, env.MAVEN_CMD_LINE_ARGS=clean verify -X -l log.txt, java.vendor.url.bug=https://github.com/AdoptOpenJDK/openjdk-support/issues, env.HTTPS_PROXY=http://127.0.0.1:3128, user.dir=C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration, org.jboss.tools.tycho-plugins.version=2.2.0, tycho.env.osgi.os=win32, java.vm.version=11.0.9.1+1, env.TB_HOMEDIR=C:\toolbase}
+[INFO] Using 'UTF-8' encoding to copy filtered resources.
+[DEBUG] resource with targetPath null
+directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\src\main\resources
+excludes []
+includes []
+[INFO] skip non existing resourceDirectory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\src\main\resources
+[INFO] 
+[INFO] --- target-platform-configuration:2.3.0:target-platform (default-target-platform) @ headless ---
+[DEBUG] Configuring mojo org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform from plugin realm ClassRealm[plugin>org.eclipse.tycho:target-platform-configuration:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:target-platform-configuration:2.3.0:target-platform' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml
+[DEBUG] -- end configuration --
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF
+[DEBUG] Adding reactor project: MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF
+[INFO] 
+[INFO] --- tycho-p2-publisher-plugin:2.3.0:publish-osgi-ee (default-publish-osgi-ee) @ headless ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-publisher-plugin:2.3.0:publish-osgi-ee from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-publisher-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-publisher-plugin:2.3.0:publish-osgi-ee' with basic configurator -->
+[DEBUG]   (f) profiles = JavaSE-11, JavaSE-15, JavaSE-16
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) skip = false
+[DEBUG] -- end configuration --
+[INFO] Published profile IUs: [config.a.jre.javase 11.0.0, a.jre.javase 11.0.0]
+[INFO] Published profile IUs: [config.a.jre.javase 15.0.0, a.jre.javase 15.0.0]
+[INFO] Published profile IUs: [config.a.jre.javase 16.0.0, a.jre.javase 16.0.0]
+[INFO] 
+[INFO] --- tycho-p2-publisher-plugin:2.3.0:publish-products (default-publish-products) @ headless ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-publisher-plugin:2.3.0:publish-products from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-publisher-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-publisher-plugin:2.3.0:publish-products' with basic configurator -->
+[DEBUG]   (f) flavor = tooling
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[DEBUG] Expanding: C:\Users\fad8pl\.m2\repository\p2\org\eclipse\update\feature\org.eclipse.equinox.executable\3.8.600.v20191014-2025\org.eclipse.equinox.executable-3.8.600.v20191014-2025.jar into C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\org.eclipse.equinox.executable-3.8.600.v20191014-2025
+[DEBUG] expand complete
+[DEBUG] Getting the following icon paths from defaults: []
+[DEBUG] Getting the following icon paths from defaults: []
+[DEBUG] Getting the following icon paths from defaults: []
+[INFO] 
+[INFO] --- tycho-p2-publisher-plugin:2.3.0:publish-categories (default-publish-categories) @ headless ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-publisher-plugin:2.3.0:publish-categories from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-publisher-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-publisher-plugin:2.3.0:publish-categories' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-p2-publisher-plugin:2.3.0:attach-artifacts (default-attach-artifacts) @ headless ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-publisher-plugin:2.3.0:attach-artifacts from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-publisher-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-publisher-plugin:2.3.0:attach-artifacts' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[DEBUG] Attaching zip::org.eclipse.app4mc.converters.headless.executable.cocoa.macosx.x86_64 -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\extraArtifacts\org.eclipse.app4mc.converters.headless.executable.cocoa.macosx.x86_64.zip
+[DEBUG] Attaching xml::p2artifacts -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\p2artifacts.xml
+[DEBUG] Attaching zip::org.eclipse.app4mc.converters.headless.executable.win32.win32.x86_64 -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\extraArtifacts\org.eclipse.app4mc.converters.headless.executable.win32.win32.x86_64.zip
+[DEBUG] Attaching xml::p2metadata -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\p2content.xml
+[DEBUG] Attaching zip::org.eclipse.app4mc.converters.headless.executable.gtk.linux.x86_64 -> C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\extraArtifacts\org.eclipse.app4mc.converters.headless.executable.gtk.linux.x86_64.zip
+[INFO] 
+[INFO] --- tycho-p2-repository-plugin:2.3.0:assemble-repository (default-assemble-repository) @ headless ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-repository-plugin:2.3.0:assemble-repository from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-repository-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-repository-plugin:2.3.0:assemble-repository' with basic configurator -->
+[DEBUG]   (f) compress = true
+[DEBUG]   (f) createArtifactRepository = true
+[DEBUG]   (f) includeAllDependencies = true
+[DEBUG]   (f) keepNonXzIndexFiles = true
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) repositoryName = headless
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) xzCompress = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ headless ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = headless-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-p2-repository-plugin:2.3.0:archive-repository (default-archive-repository) @ headless ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-repository-plugin:2.3.0:archive-repository from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-repository-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-repository-plugin:2.3.0:archive-repository' with basic configurator -->
+[DEBUG]   (f) finalName = headless-1.1.0-SNAPSHOT
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml
+[DEBUG]   (f) qualifier = 202104220626
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) skipArchive = false
+[DEBUG] -- end configuration --
+[INFO] Building zip: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\headless-1.1.0-SNAPSHOT.zip
+[DEBUG] adding directory binary/
+[DEBUG] adding directory features/
+[DEBUG] adding directory plugins/
+[DEBUG] adding entry artifacts.jar
+[DEBUG] adding entry artifacts.xml.xz
+[DEBUG] adding entry binary/org.eclipse.app4mc.converters.headless.executable.cocoa.macosx.x86_64_1.1.0.202104220626
+[DEBUG] adding entry binary/org.eclipse.app4mc.converters.headless.executable.gtk.linux.x86_64_1.1.0.202104220626
+[DEBUG] adding entry binary/org.eclipse.app4mc.converters.headless.executable.win32.win32.x86_64_1.1.0.202104220626
+[DEBUG] adding entry content.jar
+[DEBUG] adding entry content.xml.xz
+[DEBUG] adding entry features/org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104220626.jar
+[DEBUG] adding entry features/org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104220626.jar
+[DEBUG] adding entry features/org.eclipse.app4mc.utils.headless_1.1.0.202104211257.jar
+[DEBUG] adding entry features/org.eclipse.equinox.executable_3.8.600.v20191014-2025.jar
+[DEBUG] adding entry p2.index
+[DEBUG] adding entry plugins/javax.annotation_1.2.0.v201602091430.jar
+[DEBUG] adding entry plugins/javax.xml_1.3.4.v201005080400.jar
+[DEBUG] adding entry plugins/org.apache.felix.gogo.command_1.0.2.v20170914-1324.jar
+[DEBUG] adding entry plugins/org.apache.felix.gogo.runtime_1.1.0.v20180713-1646.jar
+[DEBUG] adding entry plugins/org.apache.felix.gogo.shell_1.1.0.v20180713-1646.jar
+[DEBUG] adding entry plugins/org.apache.felix.scr_2.1.14.v20190123-1619.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.071_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.072_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.080_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.081_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.082_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.083_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.090_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.091_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.092_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.093_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.094_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.095_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.096_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.097_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.100_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.common_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.headless.app_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.util.sessionlog.console_1.1.0.202104211257.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.util.sessionlog.file_1.1.0.202104211257.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.util.sessionlog_1.1.0.202104211257.jar
+[DEBUG] adding entry plugins/org.eclipse.equinox.common_3.10.600.v20191004-1420.jar
+[DEBUG] adding entry plugins/org.eclipse.equinox.console_1.4.0.v20190819-1430.jar
+[DEBUG] adding entry plugins/org.eclipse.equinox.launcher.cocoa.macosx.x86_64_1.1.1100.v20190907-0426.jar
+[DEBUG] adding entry plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.1100.v20190907-0426.jar
+[DEBUG] adding entry plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.1100.v20190907-0426.jar
+[DEBUG] adding entry plugins/org.eclipse.equinox.launcher_1.5.600.v20191014-2022.jar
+[DEBUG] adding entry plugins/org.eclipse.osgi.services_3.8.0.v20190206-2147.jar
+[DEBUG] adding entry plugins/org.eclipse.osgi.util_3.5.300.v20190708-1141.jar
+[DEBUG] adding entry plugins/org.eclipse.osgi_3.15.100.v20191114-1701.jar
+[DEBUG] adding entry plugins/org.jaxen_1.1.6.v20191106-1554.jar
+[DEBUG] adding entry plugins/org.jdom2_2.0.6.v20191125-0928.jar
+[INFO] 
+[INFO] --- tycho-p2-director-plugin:2.3.0:materialize-products (materialize-products) @ headless ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-director-plugin:2.3.0:materialize-products from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-director-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-director-plugin:2.3.0:materialize-products' with basic configurator -->
+[DEBUG]   (f) directorRuntime = internal
+[DEBUG]   (f) forkedProcessTimeoutInSeconds = 0
+[DEBUG]   (f) installFeatures = true
+[DEBUG]   (f) profile = DefaultProfile
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) source = targetPlatform
+[DEBUG] -- end configuration --
+[INFO] Installing product org.eclipse.app4mc.converters.headless for environment win32/win32/x86_64 to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64
+[DEBUG] Calling director with arguments: [-metadataRepository, file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/targetPlatformRepository/, -artifactRepository, file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/,file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Creleng%255Corg.eclipse.app4mc.converters.product,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.071/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.common/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.072/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.080/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.081/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.082/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.083/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.090/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.091/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.092/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.093/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.094/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.095/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.096/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.097/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.100/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.headless.app/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/features/org.eclipse.app4mc.amalthea.converters.headless/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/features/org.eclipse.app4mc.amalthea.converters.headless.runtime/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/,file:/C:/Users/fad8pl/.m2/repository/, -installIU, org.eclipse.app4mc.converters.headless,org.eclipse.app4mc.amalthea.converters.headless.runtime.feature.group,org.eclipse.app4mc.amalthea.converters.headless.feature.group,org.eclipse.app4mc.utils.headless.feature.group, -destination, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\win32\win32\x86_64, -profile, DefaultProfile, -profileProperties, org.eclipse.update.install.features=true, -roaming, -p2.os, win32, -p2.ws, win32, -p2.arch, x86_64]
+Installing org.eclipse.app4mc.converters.headless 1.1.0.202104220626.
+Installing org.eclipse.app4mc.amalthea.converters.headless.runtime.feature.group 1.1.0.202104220626.
+Installing org.eclipse.app4mc.amalthea.converters.headless.feature.group 1.1.0.202104220626.
+Installing org.eclipse.app4mc.utils.headless.feature.group 1.1.0.202104211257.
+
+!ENTRY org.eclipse.equinox.p2.director 0 0 2021-04-22 08:27:29.421
+!MESSAGE Overall install request is satisfiable
+!SUBENTRY 1 org.eclipse.equinox.p2.director 0 0 2021-04-22 08:27:29.422
+!MESSAGE Add request for org.eclipse.app4mc.converters.headless 1.1.0.202104220626 (org.eclipse.app4mc.converters.headless 1.1.0.202104220626) is satisfiable
+!SUBENTRY 1 org.eclipse.equinox.p2.director 0 0 2021-04-22 08:27:29.422
+!MESSAGE Add request for APP4MC Utils Headless 1.1.0.202104211257 (org.eclipse.app4mc.utils.headless.feature.group 1.1.0.202104211257) is satisfiable
+!SUBENTRY 1 org.eclipse.equinox.p2.director 0 0 2021-04-22 08:27:29.422
+!MESSAGE Add request for APP4MC AMALTHEA Headless Converters 1.1.0.202104220626 (org.eclipse.app4mc.amalthea.converters.headless.feature.group 1.1.0.202104220626) is satisfiable
+!SUBENTRY 1 org.eclipse.equinox.p2.director 0 0 2021-04-22 08:27:29.422
+!MESSAGE Add request for APP4MC AMALTHEA Headless Converters Runtime 1.1.0.202104220626 (org.eclipse.app4mc.amalthea.converters.headless.runtime.feature.group 1.1.0.202104220626) is satisfiable
+Operation completed in 1564 ms.
+[INFO] Installing product org.eclipse.app4mc.converters.headless for environment linux/gtk/x86_64 to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64
+[DEBUG] Calling director with arguments: [-metadataRepository, file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/targetPlatformRepository/, -artifactRepository, file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/,file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Creleng%255Corg.eclipse.app4mc.converters.product,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.071/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.common/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.072/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.080/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.081/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.082/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.083/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.090/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.091/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.092/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.093/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.094/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.095/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.096/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.097/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.100/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.headless.app/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/features/org.eclipse.app4mc.amalthea.converters.headless/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/features/org.eclipse.app4mc.amalthea.converters.headless.runtime/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/,file:/C:/Users/fad8pl/.m2/repository/, -installIU, org.eclipse.app4mc.converters.headless,org.eclipse.app4mc.amalthea.converters.headless.runtime.feature.group,org.eclipse.app4mc.amalthea.converters.headless.feature.group,org.eclipse.app4mc.utils.headless.feature.group, -destination, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\linux\gtk\x86_64, -profile, DefaultProfile, -profileProperties, org.eclipse.update.install.features=true, -roaming, -p2.os, linux, -p2.ws, gtk, -p2.arch, x86_64]
+Installing org.eclipse.app4mc.converters.headless 1.1.0.202104220626.
+Installing org.eclipse.app4mc.amalthea.converters.headless.runtime.feature.group 1.1.0.202104220626.
+Installing org.eclipse.app4mc.amalthea.converters.headless.feature.group 1.1.0.202104220626.
+Installing org.eclipse.app4mc.utils.headless.feature.group 1.1.0.202104211257.
+
+!ENTRY org.eclipse.equinox.p2.director 0 0 2021-04-22 08:27:31.515
+!MESSAGE Overall install request is satisfiable
+!SUBENTRY 1 org.eclipse.equinox.p2.director 0 0 2021-04-22 08:27:31.516
+!MESSAGE Add request for org.eclipse.app4mc.converters.headless 1.1.0.202104220626 (org.eclipse.app4mc.converters.headless 1.1.0.202104220626) is satisfiable
+!SUBENTRY 1 org.eclipse.equinox.p2.director 0 0 2021-04-22 08:27:31.516
+!MESSAGE Add request for APP4MC Utils Headless 1.1.0.202104211257 (org.eclipse.app4mc.utils.headless.feature.group 1.1.0.202104211257) is satisfiable
+!SUBENTRY 1 org.eclipse.equinox.p2.director 0 0 2021-04-22 08:27:31.516
+!MESSAGE Add request for APP4MC AMALTHEA Headless Converters 1.1.0.202104220626 (org.eclipse.app4mc.amalthea.converters.headless.feature.group 1.1.0.202104220626) is satisfiable
+!SUBENTRY 1 org.eclipse.equinox.p2.director 0 0 2021-04-22 08:27:31.516
+!MESSAGE Add request for APP4MC AMALTHEA Headless Converters Runtime 1.1.0.202104220626 (org.eclipse.app4mc.amalthea.converters.headless.runtime.feature.group 1.1.0.202104220626) is satisfiable
+Operation completed in 1276 ms.
+[INFO] Installing product org.eclipse.app4mc.converters.headless for environment macosx/cocoa/x86_64 to C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app
+[DEBUG] Calling director with arguments: [-metadataRepository, file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/targetPlatformRepository/, -artifactRepository, file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/,file:/resolution-context-artifacts@C%253A%255CDevelopment%255CSources%255Capp4mc%255Corg.eclipse.app4mc.addon.migration%255Creleng%255Corg.eclipse.app4mc.converters.product,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.071/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.common/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.072/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.080/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.081/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.082/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.083/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.090/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.091/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.092/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.093/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.094/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.095/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.096/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.097/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.100/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/plugins/org.eclipse.app4mc.amalthea.converters.headless.app/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/features/org.eclipse.app4mc.amalthea.converters.headless/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/features/org.eclipse.app4mc.amalthea.converters.headless.runtime/target/,file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/,file:/C:/Users/fad8pl/.m2/repository/, -installIU, org.eclipse.app4mc.converters.headless,org.eclipse.app4mc.amalthea.converters.headless.runtime.feature.group,org.eclipse.app4mc.amalthea.converters.headless.feature.group,org.eclipse.app4mc.utils.headless.feature.group, -destination, C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless\macosx\cocoa\x86_64\Eclipse.app, -profile, DefaultProfile, -profileProperties, org.eclipse.update.install.features=true, -roaming, -p2.os, macosx, -p2.ws, cocoa, -p2.arch, x86_64]
+Installing org.eclipse.app4mc.converters.headless 1.1.0.202104220626.
+Installing org.eclipse.app4mc.amalthea.converters.headless.runtime.feature.group 1.1.0.202104220626.
+Installing org.eclipse.app4mc.amalthea.converters.headless.feature.group 1.1.0.202104220626.
+Installing org.eclipse.app4mc.utils.headless.feature.group 1.1.0.202104211257.
+
+!ENTRY org.eclipse.equinox.p2.director 0 0 2021-04-22 08:27:33.366
+!MESSAGE Overall install request is satisfiable
+!SUBENTRY 1 org.eclipse.equinox.p2.director 0 0 2021-04-22 08:27:33.366
+!MESSAGE Add request for org.eclipse.app4mc.converters.headless 1.1.0.202104220626 (org.eclipse.app4mc.converters.headless 1.1.0.202104220626) is satisfiable
+!SUBENTRY 1 org.eclipse.equinox.p2.director 0 0 2021-04-22 08:27:33.366
+!MESSAGE Add request for APP4MC Utils Headless 1.1.0.202104211257 (org.eclipse.app4mc.utils.headless.feature.group 1.1.0.202104211257) is satisfiable
+!SUBENTRY 1 org.eclipse.equinox.p2.director 0 0 2021-04-22 08:27:33.366
+!MESSAGE Add request for APP4MC AMALTHEA Headless Converters 1.1.0.202104220626 (org.eclipse.app4mc.amalthea.converters.headless.feature.group 1.1.0.202104220626) is satisfiable
+!SUBENTRY 1 org.eclipse.equinox.p2.director 0 0 2021-04-22 08:27:33.366
+!MESSAGE Add request for APP4MC AMALTHEA Headless Converters Runtime 1.1.0.202104220626 (org.eclipse.app4mc.amalthea.converters.headless.runtime.feature.group 1.1.0.202104220626) is satisfiable
+Operation completed in 1140 ms.
+[INFO] 
+[INFO] --- tycho-p2-director-plugin:2.3.0:archive-products (archive-products) @ headless ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-p2-director-plugin:2.3.0:archive-products from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-p2-director-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-p2-director-plugin:2.3.0:archive-products' with basic configurator -->
+[DEBUG]   (f) forkedProcessTimeoutInSeconds = 0
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG] -- end configuration --
+[INFO] Building zip: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless-win32.win32.x86_64.zip
+[DEBUG] adding directory configuration/
+[DEBUG] adding directory configuration/org.eclipse.update/
+[DEBUG] adding directory features/
+[DEBUG] adding directory features/org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104220626/
+[DEBUG] adding directory features/org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104220626/META-INF/
+[DEBUG] adding directory features/org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104220626/
+[DEBUG] adding directory features/org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104220626/META-INF/
+[DEBUG] adding directory features/org.eclipse.app4mc.utils.headless_1.1.0.202104211257/
+[DEBUG] adding directory features/org.eclipse.app4mc.utils.headless_1.1.0.202104211257/META-INF/
+[DEBUG] adding directory p2/
+[DEBUG] adding directory p2/org.eclipse.equinox.p2.core/
+[DEBUG] adding directory p2/org.eclipse.equinox.p2.core/cache/
+[DEBUG] adding directory p2/org.eclipse.equinox.p2.core/cache/binary/
+[DEBUG] adding directory p2/org.eclipse.equinox.p2.engine/
+[DEBUG] adding directory p2/org.eclipse.equinox.p2.engine/.settings/
+[DEBUG] adding directory p2/org.eclipse.equinox.p2.engine/profileRegistry/
+[DEBUG] adding directory p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/
+[DEBUG] adding directory p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/.data/
+[DEBUG] adding directory plugins/
+[DEBUG] adding directory plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.1100.v20190907-0426/
+[DEBUG] adding directory plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.1100.v20190907-0426/META-INF/
+[DEBUG] adding entry amalthea_migration.exe
+[DEBUG] adding entry amalthea_migration.ini
+[DEBUG] adding entry artifacts.xml
+[DEBUG] adding entry configuration/config.ini
+[DEBUG] adding entry configuration/org.eclipse.update/platform.xml
+[DEBUG] adding entry eclipsec.exe
+[DEBUG] adding entry features/org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104220626/epl-2.0.html
+[DEBUG] adding entry features/org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104220626/feature.properties
+[DEBUG] adding entry features/org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104220626/feature.xml
+[DEBUG] adding entry features/org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104220626/license.html
+[DEBUG] adding entry features/org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104220626/META-INF/MANIFEST.MF
+[DEBUG] adding entry features/org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104220626/epl-2.0.html
+[DEBUG] adding entry features/org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104220626/feature.properties
+[DEBUG] adding entry features/org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104220626/feature.xml
+[DEBUG] adding entry features/org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104220626/license.html
+[DEBUG] adding entry features/org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104220626/META-INF/MANIFEST.MF
+[DEBUG] adding entry features/org.eclipse.app4mc.utils.headless_1.1.0.202104211257/about.html
+[DEBUG] adding entry features/org.eclipse.app4mc.utils.headless_1.1.0.202104211257/epl-2.0.html
+[DEBUG] adding entry features/org.eclipse.app4mc.utils.headless_1.1.0.202104211257/feature.properties
+[DEBUG] adding entry features/org.eclipse.app4mc.utils.headless_1.1.0.202104211257/feature.xml
+[DEBUG] adding entry features/org.eclipse.app4mc.utils.headless_1.1.0.202104211257/license.html
+[DEBUG] adding entry features/org.eclipse.app4mc.utils.headless_1.1.0.202104211257/META-INF/MANIFEST.MF
+[DEBUG] adding entry p2/org.eclipse.equinox.p2.core/cache/artifacts.xml
+[DEBUG] adding entry p2/org.eclipse.equinox.p2.core/cache/binary/org.eclipse.app4mc.converters.headless.executable.win32.win32.x86_64_1.1.0.202104220626
+[DEBUG] adding entry p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.artifact.repository.prefs
+[DEBUG] adding entry p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.metadata.repository.prefs
+[DEBUG] adding entry p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/.lock
+[DEBUG] adding entry p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1619072849367.profile.gz
+[DEBUG] adding entry p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1619072849392.profile.gz
+[DEBUG] adding entry p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1619072849977.profile.gz
+[DEBUG] adding entry p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1619072850101.profile.gz
+[DEBUG] adding entry plugins/javax.xml_1.3.4.v201005080400.jar
+[DEBUG] adding entry plugins/org.apache.felix.gogo.command_1.0.2.v20170914-1324.jar
+[DEBUG] adding entry plugins/org.apache.felix.gogo.runtime_1.1.0.v20180713-1646.jar
+[DEBUG] adding entry plugins/org.apache.felix.gogo.shell_1.1.0.v20180713-1646.jar
+[DEBUG] adding entry plugins/org.apache.felix.scr_2.1.14.v20190123-1619.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.071_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.072_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.080_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.081_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.082_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.083_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.090_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.091_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.092_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.093_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.094_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.095_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.096_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.097_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.100_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.common_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.headless.app_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.util.sessionlog.console_1.1.0.202104211257.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.util.sessionlog.file_1.1.0.202104211257.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.util.sessionlog_1.1.0.202104211257.jar
+[DEBUG] adding entry plugins/org.eclipse.equinox.common_3.10.600.v20191004-1420.jar
+[DEBUG] adding entry plugins/org.eclipse.equinox.console_1.4.0.v20190819-1430.jar
+[DEBUG] adding entry plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.1100.v20190907-0426/about.html
+[DEBUG] adding entry plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.1100.v20190907-0426/eclipse_1902.dll
+[DEBUG] adding entry plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.1100.v20190907-0426/launcher.win32.win32.x86_64.properties
+[DEBUG] adding entry plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.1100.v20190907-0426/META-INF/ECLIPSE_.RSA
+[DEBUG] adding entry plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.1100.v20190907-0426/META-INF/ECLIPSE_.SF
+[DEBUG] adding entry plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.1100.v20190907-0426/META-INF/MANIFEST.MF
+[DEBUG] adding entry plugins/org.eclipse.equinox.launcher_1.5.600.v20191014-2022.jar
+[DEBUG] adding entry plugins/org.eclipse.osgi.services_3.8.0.v20190206-2147.jar
+[DEBUG] adding entry plugins/org.eclipse.osgi.util_3.5.300.v20190708-1141.jar
+[DEBUG] adding entry plugins/org.eclipse.osgi_3.15.100.v20191114-1701.jar
+[DEBUG] adding entry plugins/org.jaxen_1.1.6.v20191106-1554.jar
+[DEBUG] adding entry plugins/org.jdom2_2.0.6.v20191125-0928.jar
+[INFO] Building zip: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless-linux.gtk.x86_64.zip
+[DEBUG] adding directory configuration/
+[DEBUG] adding directory configuration/org.eclipse.update/
+[DEBUG] adding directory features/
+[DEBUG] adding directory features/org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104220626/
+[DEBUG] adding directory features/org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104220626/META-INF/
+[DEBUG] adding directory features/org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104220626/
+[DEBUG] adding directory features/org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104220626/META-INF/
+[DEBUG] adding directory features/org.eclipse.app4mc.utils.headless_1.1.0.202104211257/
+[DEBUG] adding directory features/org.eclipse.app4mc.utils.headless_1.1.0.202104211257/META-INF/
+[DEBUG] adding directory p2/
+[DEBUG] adding directory p2/org.eclipse.equinox.p2.core/
+[DEBUG] adding directory p2/org.eclipse.equinox.p2.core/cache/
+[DEBUG] adding directory p2/org.eclipse.equinox.p2.core/cache/binary/
+[DEBUG] adding directory p2/org.eclipse.equinox.p2.engine/
+[DEBUG] adding directory p2/org.eclipse.equinox.p2.engine/.settings/
+[DEBUG] adding directory p2/org.eclipse.equinox.p2.engine/profileRegistry/
+[DEBUG] adding directory p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/
+[DEBUG] adding directory p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/.data/
+[DEBUG] adding directory plugins/
+[DEBUG] adding directory plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.1100.v20190907-0426/
+[DEBUG] adding directory plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.1100.v20190907-0426/META-INF/
+[DEBUG] adding entry amalthea_migration
+[DEBUG] adding entry amalthea_migration.ini
+[DEBUG] adding entry artifacts.xml
+[DEBUG] adding entry configuration/config.ini
+[DEBUG] adding entry configuration/org.eclipse.update/platform.xml
+[DEBUG] adding entry features/org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104220626/epl-2.0.html
+[DEBUG] adding entry features/org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104220626/feature.properties
+[DEBUG] adding entry features/org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104220626/feature.xml
+[DEBUG] adding entry features/org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104220626/license.html
+[DEBUG] adding entry features/org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104220626/META-INF/MANIFEST.MF
+[DEBUG] adding entry features/org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104220626/epl-2.0.html
+[DEBUG] adding entry features/org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104220626/feature.properties
+[DEBUG] adding entry features/org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104220626/feature.xml
+[DEBUG] adding entry features/org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104220626/license.html
+[DEBUG] adding entry features/org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104220626/META-INF/MANIFEST.MF
+[DEBUG] adding entry features/org.eclipse.app4mc.utils.headless_1.1.0.202104211257/about.html
+[DEBUG] adding entry features/org.eclipse.app4mc.utils.headless_1.1.0.202104211257/epl-2.0.html
+[DEBUG] adding entry features/org.eclipse.app4mc.utils.headless_1.1.0.202104211257/feature.properties
+[DEBUG] adding entry features/org.eclipse.app4mc.utils.headless_1.1.0.202104211257/feature.xml
+[DEBUG] adding entry features/org.eclipse.app4mc.utils.headless_1.1.0.202104211257/license.html
+[DEBUG] adding entry features/org.eclipse.app4mc.utils.headless_1.1.0.202104211257/META-INF/MANIFEST.MF
+[DEBUG] adding entry p2/org.eclipse.equinox.p2.core/cache/artifacts.xml
+[DEBUG] adding entry p2/org.eclipse.equinox.p2.core/cache/binary/org.eclipse.app4mc.converters.headless.executable.gtk.linux.x86_64_1.1.0.202104220626
+[DEBUG] adding entry p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.artifact.repository.prefs
+[DEBUG] adding entry p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.metadata.repository.prefs
+[DEBUG] adding entry p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/.lock
+[DEBUG] adding entry p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1619072851496.profile.gz
+[DEBUG] adding entry p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1619072851503.profile.gz
+[DEBUG] adding entry p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1619072851878.profile.gz
+[DEBUG] adding entry p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1619072851979.profile.gz
+[DEBUG] adding entry plugins/javax.xml_1.3.4.v201005080400.jar
+[DEBUG] adding entry plugins/org.apache.felix.gogo.command_1.0.2.v20170914-1324.jar
+[DEBUG] adding entry plugins/org.apache.felix.gogo.runtime_1.1.0.v20180713-1646.jar
+[DEBUG] adding entry plugins/org.apache.felix.gogo.shell_1.1.0.v20180713-1646.jar
+[DEBUG] adding entry plugins/org.apache.felix.scr_2.1.14.v20190123-1619.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.071_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.072_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.080_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.081_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.082_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.083_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.090_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.091_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.092_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.093_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.094_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.095_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.096_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.097_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.100_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.common_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.amalthea.converters.headless.app_1.1.0.202104220626.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.util.sessionlog.console_1.1.0.202104211257.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.util.sessionlog.file_1.1.0.202104211257.jar
+[DEBUG] adding entry plugins/org.eclipse.app4mc.util.sessionlog_1.1.0.202104211257.jar
+[DEBUG] adding entry plugins/org.eclipse.equinox.common_3.10.600.v20191004-1420.jar
+[DEBUG] adding entry plugins/org.eclipse.equinox.console_1.4.0.v20190819-1430.jar
+[DEBUG] adding entry plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.1100.v20190907-0426/about.html
+[DEBUG] adding entry plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.1100.v20190907-0426/eclipse_1801.so
+[DEBUG] adding entry plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.1100.v20190907-0426/launcher.gtk.linux.x86_64.properties
+[DEBUG] adding entry plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.1100.v20190907-0426/META-INF/ECLIPSE_.RSA
+[DEBUG] adding entry plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.1100.v20190907-0426/META-INF/ECLIPSE_.SF
+[DEBUG] adding entry plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.1100.v20190907-0426/META-INF/MANIFEST.MF
+[DEBUG] adding entry plugins/org.eclipse.equinox.launcher_1.5.600.v20191014-2022.jar
+[DEBUG] adding entry plugins/org.eclipse.osgi.services_3.8.0.v20190206-2147.jar
+[DEBUG] adding entry plugins/org.eclipse.osgi.util_3.5.300.v20190708-1141.jar
+[DEBUG] adding entry plugins/org.eclipse.osgi_3.15.100.v20191114-1701.jar
+[DEBUG] adding entry plugins/org.jaxen_1.1.6.v20191106-1554.jar
+[DEBUG] adding entry plugins/org.jdom2_2.0.6.v20191125-0928.jar
+[INFO] Building zip: C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\products\org.eclipse.app4mc.converters.headless-macosx.cocoa.x86_64.zip
+[DEBUG] adding directory Eclipse.app/
+[DEBUG] adding directory Eclipse.app/Contents/
+[DEBUG] adding directory Eclipse.app/Contents/Eclipse/
+[DEBUG] adding directory Eclipse.app/Contents/Eclipse/configuration/
+[DEBUG] adding directory Eclipse.app/Contents/Eclipse/configuration/org.eclipse.update/
+[DEBUG] adding directory Eclipse.app/Contents/Eclipse/features/
+[DEBUG] adding directory Eclipse.app/Contents/Eclipse/features/org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104220626/
+[DEBUG] adding directory Eclipse.app/Contents/Eclipse/features/org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104220626/META-INF/
+[DEBUG] adding directory Eclipse.app/Contents/Eclipse/features/org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104220626/
+[DEBUG] adding directory Eclipse.app/Contents/Eclipse/features/org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104220626/META-INF/
+[DEBUG] adding directory Eclipse.app/Contents/Eclipse/features/org.eclipse.app4mc.utils.headless_1.1.0.202104211257/
+[DEBUG] adding directory Eclipse.app/Contents/Eclipse/features/org.eclipse.app4mc.utils.headless_1.1.0.202104211257/META-INF/
+[DEBUG] adding directory Eclipse.app/Contents/Eclipse/p2/
+[DEBUG] adding directory Eclipse.app/Contents/Eclipse/p2/org.eclipse.equinox.p2.core/
+[DEBUG] adding directory Eclipse.app/Contents/Eclipse/p2/org.eclipse.equinox.p2.core/cache/
+[DEBUG] adding directory Eclipse.app/Contents/Eclipse/p2/org.eclipse.equinox.p2.core/cache/binary/
+[DEBUG] adding directory Eclipse.app/Contents/Eclipse/p2/org.eclipse.equinox.p2.engine/
+[DEBUG] adding directory Eclipse.app/Contents/Eclipse/p2/org.eclipse.equinox.p2.engine/.settings/
+[DEBUG] adding directory Eclipse.app/Contents/Eclipse/p2/org.eclipse.equinox.p2.engine/profileRegistry/
+[DEBUG] adding directory Eclipse.app/Contents/Eclipse/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/
+[DEBUG] adding directory Eclipse.app/Contents/Eclipse/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/.data/
+[DEBUG] adding directory Eclipse.app/Contents/Eclipse/plugins/
+[DEBUG] adding directory Eclipse.app/Contents/Eclipse/plugins/org.eclipse.equinox.launcher.cocoa.macosx.x86_64_1.1.1100.v20190907-0426/
+[DEBUG] adding directory Eclipse.app/Contents/Eclipse/plugins/org.eclipse.equinox.launcher.cocoa.macosx.x86_64_1.1.1100.v20190907-0426/META-INF/
+[DEBUG] adding directory Eclipse.app/Contents/MacOS/
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/amalthea_migration.ini
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/artifacts.xml
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/configuration/config.ini
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/configuration/org.eclipse.update/platform.xml
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/features/org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104220626/epl-2.0.html
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/features/org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104220626/feature.properties
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/features/org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104220626/feature.xml
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/features/org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104220626/license.html
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/features/org.eclipse.app4mc.amalthea.converters.headless.runtime_1.1.0.202104220626/META-INF/MANIFEST.MF
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/features/org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104220626/epl-2.0.html
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/features/org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104220626/feature.properties
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/features/org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104220626/feature.xml
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/features/org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104220626/license.html
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/features/org.eclipse.app4mc.amalthea.converters.headless_1.1.0.202104220626/META-INF/MANIFEST.MF
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/features/org.eclipse.app4mc.utils.headless_1.1.0.202104211257/about.html
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/features/org.eclipse.app4mc.utils.headless_1.1.0.202104211257/epl-2.0.html
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/features/org.eclipse.app4mc.utils.headless_1.1.0.202104211257/feature.properties
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/features/org.eclipse.app4mc.utils.headless_1.1.0.202104211257/feature.xml
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/features/org.eclipse.app4mc.utils.headless_1.1.0.202104211257/license.html
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/features/org.eclipse.app4mc.utils.headless_1.1.0.202104211257/META-INF/MANIFEST.MF
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/p2/org.eclipse.equinox.p2.core/cache/artifacts.xml
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/p2/org.eclipse.equinox.p2.core/cache/binary/org.eclipse.app4mc.converters.headless.executable.cocoa.macosx.x86_64_1.1.0.202104220626
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.artifact.repository.prefs
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/p2/org.eclipse.equinox.p2.engine/.settings/org.eclipse.equinox.p2.metadata.repository.prefs
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/.lock
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1619072853345.profile.gz
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1619072853351.profile.gz
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1619072853651.profile.gz
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/p2/org.eclipse.equinox.p2.engine/profileRegistry/DefaultProfile.profile/1619072853724.profile.gz
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/plugins/javax.xml_1.3.4.v201005080400.jar
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/plugins/org.apache.felix.gogo.command_1.0.2.v20170914-1324.jar
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/plugins/org.apache.felix.gogo.runtime_1.1.0.v20180713-1646.jar
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/plugins/org.apache.felix.gogo.shell_1.1.0.v20180713-1646.jar
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/plugins/org.apache.felix.scr_2.1.14.v20190123-1619.jar
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/plugins/org.eclipse.app4mc.amalthea.converters.071_1.1.0.202104220626.jar
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/plugins/org.eclipse.app4mc.amalthea.converters.072_1.1.0.202104220626.jar
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/plugins/org.eclipse.app4mc.amalthea.converters.080_1.1.0.202104220626.jar
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/plugins/org.eclipse.app4mc.amalthea.converters.081_1.1.0.202104220626.jar
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/plugins/org.eclipse.app4mc.amalthea.converters.082_1.1.0.202104220626.jar
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/plugins/org.eclipse.app4mc.amalthea.converters.083_1.1.0.202104220626.jar
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/plugins/org.eclipse.app4mc.amalthea.converters.090_1.1.0.202104220626.jar
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/plugins/org.eclipse.app4mc.amalthea.converters.091_1.1.0.202104220626.jar
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/plugins/org.eclipse.app4mc.amalthea.converters.092_1.1.0.202104220626.jar
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/plugins/org.eclipse.app4mc.amalthea.converters.093_1.1.0.202104220626.jar
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/plugins/org.eclipse.app4mc.amalthea.converters.094_1.1.0.202104220626.jar
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/plugins/org.eclipse.app4mc.amalthea.converters.095_1.1.0.202104220626.jar
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/plugins/org.eclipse.app4mc.amalthea.converters.096_1.1.0.202104220626.jar
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/plugins/org.eclipse.app4mc.amalthea.converters.097_1.1.0.202104220626.jar
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/plugins/org.eclipse.app4mc.amalthea.converters.100_1.1.0.202104220626.jar
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/plugins/org.eclipse.app4mc.amalthea.converters.common_1.1.0.202104220626.jar
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/plugins/org.eclipse.app4mc.amalthea.converters.headless.app_1.1.0.202104220626.jar
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/plugins/org.eclipse.app4mc.util.sessionlog.console_1.1.0.202104211257.jar
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/plugins/org.eclipse.app4mc.util.sessionlog.file_1.1.0.202104211257.jar
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/plugins/org.eclipse.app4mc.util.sessionlog_1.1.0.202104211257.jar
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/plugins/org.eclipse.equinox.common_3.10.600.v20191004-1420.jar
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/plugins/org.eclipse.equinox.console_1.4.0.v20190819-1430.jar
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/plugins/org.eclipse.equinox.launcher.cocoa.macosx.x86_64_1.1.1100.v20190907-0426/about.html
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/plugins/org.eclipse.equinox.launcher.cocoa.macosx.x86_64_1.1.1100.v20190907-0426/eclipse_1902.so
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/plugins/org.eclipse.equinox.launcher.cocoa.macosx.x86_64_1.1.1100.v20190907-0426/launcher.cocoa.macosx.x86_64.properties
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/plugins/org.eclipse.equinox.launcher.cocoa.macosx.x86_64_1.1.1100.v20190907-0426/META-INF/ECLIPSE_.RSA
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/plugins/org.eclipse.equinox.launcher.cocoa.macosx.x86_64_1.1.1100.v20190907-0426/META-INF/ECLIPSE_.SF
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/plugins/org.eclipse.equinox.launcher.cocoa.macosx.x86_64_1.1.1100.v20190907-0426/META-INF/MANIFEST.MF
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/plugins/org.eclipse.equinox.launcher_1.5.600.v20191014-2022.jar
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/plugins/org.eclipse.osgi.services_3.8.0.v20190206-2147.jar
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/plugins/org.eclipse.osgi.util_3.5.300.v20190708-1141.jar
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/plugins/org.eclipse.osgi_3.15.100.v20191114-1701.jar
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/plugins/org.jaxen_1.1.6.v20191106-1554.jar
+[DEBUG] adding entry Eclipse.app/Contents/Eclipse/plugins/org.jdom2_2.0.6.v20191125-0928.jar
+[DEBUG] adding entry Eclipse.app/Contents/Info.plist
+[DEBUG] adding entry Eclipse.app/Contents/MacOS/amalthea_migration
+[INFO] 
+[INFO] --- bnd-export-maven-plugin:4.3.1:export (default) @ headless ---
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=38600, ConflictMarker.markTime=29500, ConflictMarker.nodeCount=98, ConflictIdSorter.graphTime=73700, ConflictIdSorter.topsortTime=40499, ConflictIdSorter.conflictIdCount=36, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=224601, ConflictResolver.conflictItemCount=96, DefaultDependencyCollector.collectTime=73989800, DefaultDependencyCollector.transformTime=474200}
+[DEBUG] biz.aQute.bnd:bnd-export-maven-plugin:jar:4.3.1
+[DEBUG]    org.slf4j:slf4j-api:jar:1.7.5:compile
+[DEBUG]    biz.aQute.bnd:biz.aQute.bnd.maven:jar:4.3.1:compile
+[DEBUG]       org.apache.maven:maven-artifact:jar:3.3.9:compile
+[DEBUG]          org.apache.commons:commons-lang3:jar:3.4:compile
+[DEBUG]       org.apache.maven:maven-core:jar:3.3.9:compile
+[DEBUG]          org.apache.maven:maven-settings-builder:jar:3.3.9:compile
+[DEBUG]             org.apache.maven:maven-builder-support:jar:3.3.9:compile
+[DEBUG]          org.apache.maven:maven-model-builder:jar:3.3.9:compile
+[DEBUG]             com.google.guava:guava:jar:18.0:compile
+[DEBUG]          org.apache.maven:maven-aether-provider:jar:3.3.9:compile
+[DEBUG]             org.eclipse.aether:aether-spi:jar:1.0.2.v20150114:compile
+[DEBUG]          org.eclipse.aether:aether-impl:jar:1.0.2.v20150114:compile
+[DEBUG]          org.eclipse.aether:aether-util:jar:1.0.2.v20150114:compile
+[DEBUG]          org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.2:compile
+[DEBUG]             javax.enterprise:cdi-api:jar:1.0:compile
+[DEBUG]                javax.annotation:jsr250-api:jar:1.0:compile
+[DEBUG]             org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.2:compile
+[DEBUG]          com.google.inject:guice:jar:no_aop:4.0:compile
+[DEBUG]             javax.inject:javax.inject:jar:1:compile
+[DEBUG]             aopalliance:aopalliance:jar:1.0:compile
+[DEBUG]          org.codehaus.plexus:plexus-interpolation:jar:1.21:compile
+[DEBUG]          org.codehaus.plexus:plexus-classworlds:jar:2.5.2:compile
+[DEBUG]          org.codehaus.plexus:plexus-component-annotations:jar:1.6:compile
+[DEBUG]          org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile
+[DEBUG]             org.sonatype.plexus:plexus-cipher:jar:1.4:compile
+[DEBUG]       org.apache.maven:maven-model:jar:3.3.9:compile
+[DEBUG]       org.apache.maven:maven-plugin-api:jar:3.3.9:compile
+[DEBUG]       org.apache.maven:maven-repository-metadata:jar:3.3.9:compile
+[DEBUG]       org.apache.maven:maven-settings:jar:3.3.9:compile
+[DEBUG]       org.codehaus.plexus:plexus-utils:jar:1.5.5:compile
+[DEBUG]       org.eclipse.aether:aether-api:jar:1.0.2.v20150114:compile
+[DEBUG]    biz.aQute.bnd:biz.aQute.bndlib:jar:4.3.1:compile
+[DEBUG]    biz.aQute.bnd:biz.aQute.resolve:jar:4.3.1:compile
+[DEBUG]    biz.aQute.bnd:biz.aQute.repository:jar:4.3.1:compile
+[DEBUG]    biz.aQute.bnd:biz.aQute.bnd.embedded-repo:jar:4.3.1:compile
+[DEBUG] Created new class realm plugin>biz.aQute.bnd:bnd-export-maven-plugin:4.3.1
+[DEBUG] Importing foreign packages into class realm plugin>biz.aQute.bnd:bnd-export-maven-plugin:4.3.1
+[DEBUG]   Imported:  < project>org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT
+[DEBUG] Populating class realm plugin>biz.aQute.bnd:bnd-export-maven-plugin:4.3.1
+[DEBUG]   Included: biz.aQute.bnd:bnd-export-maven-plugin:jar:4.3.1
+[DEBUG]   Included: biz.aQute.bnd:biz.aQute.bnd.maven:jar:4.3.1
+[DEBUG]   Included: org.apache.commons:commons-lang3:jar:3.4
+[DEBUG]   Included: org.apache.maven:maven-builder-support:jar:3.3.9
+[DEBUG]   Included: com.google.guava:guava:jar:18.0
+[DEBUG]   Included: org.eclipse.aether:aether-util:jar:1.0.2.v20150114
+[DEBUG]   Included: javax.enterprise:cdi-api:jar:1.0
+[DEBUG]   Included: org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.2
+[DEBUG]   Included: com.google.inject:guice:jar:no_aop:4.0
+[DEBUG]   Included: aopalliance:aopalliance:jar:1.0
+[DEBUG]   Included: org.codehaus.plexus:plexus-interpolation:jar:1.21
+[DEBUG]   Included: org.codehaus.plexus:plexus-component-annotations:jar:1.6
+[DEBUG]   Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3
+[DEBUG]   Included: org.sonatype.plexus:plexus-cipher:jar:1.4
+[DEBUG]   Included: org.codehaus.plexus:plexus-utils:jar:1.5.5
+[DEBUG]   Included: biz.aQute.bnd:biz.aQute.bndlib:jar:4.3.1
+[DEBUG]   Included: biz.aQute.bnd:biz.aQute.resolve:jar:4.3.1
+[DEBUG]   Included: biz.aQute.bnd:biz.aQute.repository:jar:4.3.1
+[DEBUG]   Included: biz.aQute.bnd:biz.aQute.bnd.embedded-repo:jar:4.3.1
+[DEBUG] Configuring mojo biz.aQute.bnd:bnd-export-maven-plugin:4.3.1:export from plugin realm ClassRealm[plugin>biz.aQute.bnd:bnd-export-maven-plugin:4.3.1, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'biz.aQute.bnd:bnd-export-maven-plugin:4.3.1:export' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (s) bndrun = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\amalthea_migration.bndrun
+[DEBUG]   (f) bndruns = aQute.bnd.maven.lib.configuration.Bndruns@57c57c21
+[DEBUG]   (s) include = target/repository/plugins/*
+[DEBUG]   (f) bundles = aQute.bnd.maven.lib.configuration.Bundles@19f0b3b6
+[DEBUG]   (f) bundlesOnly = false
+[DEBUG]   (f) failOnChanges = false
+[DEBUG]   (f) includeDependencyManagement = false
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml
+[DEBUG]   (f) reportOptional = true
+[DEBUG]   (f) repositorySession = org.eclipse.aether.DefaultRepositorySystemSession@188decfd
+[DEBUG]   (f) resolve = false
+[DEBUG]   (f) scopes = [runtime, compile]
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) settings = org.apache.maven.execution.SettingsAdapter@75466196
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) targetDir = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target
+[DEBUG]   (f) useMavenDependencies = true
+[DEBUG] -- end configuration --
+[DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=34400, ConflictMarker.markTime=53099, ConflictMarker.nodeCount=174, ConflictIdSorter.graphTime=18300, ConflictIdSorter.topsortTime=23799, ConflictIdSorter.conflictIdCount=29, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=225900, ConflictResolver.conflictItemCount=173, DefaultDependencyCollector.collectTime=1083600, DefaultDependencyCollector.transformTime=374200}
+[DEBUG] org.eclipse.app4mc.migration:headless:eclipse-repository:1.1.0-SNAPSHOT
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]       p2.eclipse-plugin:javax.annotation:jar:1.2.0.v201602091430:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.osgi:jar:3.15.100.v20191114-1701:system
+[DEBUG]       p2.eclipse-plugin:org.apache.felix.scr:jar:2.1.14.v20190123-1619:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.osgi.services:jar:3.8.0.v20190206-2147:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.osgi.util:jar:3.5.300.v20190708-1141:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.app4mc.util.sessionlog:jar:1.1.0.202104211257:system
+[DEBUG]       p2.eclipse-plugin:org.jdom2:jar:2.0.6.v20191125-0928:system
+[DEBUG]       p2.eclipse-plugin:org.eclipse.equinox.common:jar:3.10.600.v20191004-1420:system
+[DEBUG]       p2.eclipse-plugin:org.jaxen:jar:1.1.6.v20191106-1554:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]       p2.eclipse-plugin:org.apache.felix.gogo.runtime:jar:1.1.0.v20180713-1646:system
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:jar:1.1.0-SNAPSHOT:provided
+[DEBUG]    org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:jar:1.1.0-SNAPSHOT:provided
+[DEBUG] Found extensions {}
+[DEBUG] headless: parsing C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\javax.annotation_1.2.0.v201602091430.jar
+[DEBUG] headless: parsing C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\javax.xml_1.3.4.v201005080400.jar
+[DEBUG] headless: parsing C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.apache.felix.gogo.command_1.0.2.v20170914-1324.jar
+[DEBUG] headless: parsing C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.apache.felix.gogo.runtime_1.1.0.v20180713-1646.jar
+[DEBUG] headless: parsing C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.apache.felix.gogo.shell_1.1.0.v20180713-1646.jar
+[DEBUG] headless: parsing C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.apache.felix.scr_2.1.14.v20190123-1619.jar
+[DEBUG] headless: parsing C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.071_1.1.0.202104220626.jar
+[DEBUG] headless: parsing C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.072_1.1.0.202104220626.jar
+[DEBUG] headless: parsing C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.080_1.1.0.202104220626.jar
+[DEBUG] headless: parsing C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.081_1.1.0.202104220626.jar
+[DEBUG] headless: parsing C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.082_1.1.0.202104220626.jar
+[DEBUG] headless: parsing C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.083_1.1.0.202104220626.jar
+[DEBUG] headless: parsing C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.090_1.1.0.202104220626.jar
+[DEBUG] headless: parsing C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.091_1.1.0.202104220626.jar
+[DEBUG] headless: parsing C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.092_1.1.0.202104220626.jar
+[DEBUG] headless: parsing C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.093_1.1.0.202104220626.jar
+[DEBUG] headless: parsing C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.094_1.1.0.202104220626.jar
+[DEBUG] headless: parsing C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.095_1.1.0.202104220626.jar
+[DEBUG] headless: parsing C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.096_1.1.0.202104220626.jar
+[DEBUG] headless: parsing C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.097_1.1.0.202104220626.jar
+[DEBUG] headless: parsing C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.100_1.1.0.202104220626.jar
+[DEBUG] headless: parsing C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.common_1.1.0.202104220626.jar
+[DEBUG] headless: parsing C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.headless.app_1.1.0.202104220626.jar
+[DEBUG] headless: parsing C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.util.sessionlog.console_1.1.0.202104211257.jar
+[DEBUG] headless: parsing C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.util.sessionlog.file_1.1.0.202104211257.jar
+[DEBUG] headless: parsing C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.util.sessionlog_1.1.0.202104211257.jar
+[DEBUG] headless: parsing C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.equinox.common_3.10.600.v20191004-1420.jar
+[DEBUG] headless: parsing C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.equinox.console_1.4.0.v20190819-1430.jar
+[DEBUG] headless: parsing C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.equinox.launcher.cocoa.macosx.x86_64_1.1.1100.v20190907-0426.jar
+[DEBUG] headless: parsing C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.1100.v20190907-0426.jar
+[DEBUG] headless: parsing C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.1100.v20190907-0426.jar
+[DEBUG] headless: parsing C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.equinox.launcher_1.5.600.v20191014-2022.jar
+[DEBUG] headless: parsing C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.osgi.services_3.8.0.v20190206-2147.jar
+[DEBUG] headless: parsing C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.osgi.util_3.5.300.v20190708-1141.jar
+[DEBUG] headless: parsing C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.osgi_3.15.100.v20191114-1701.jar
+[DEBUG] headless: parsing C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.jaxen_1.1.6.v20191106-1554.jar
+[DEBUG] headless: parsing C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.jdom2_2.0.6.v20191125-0928.jar
+[DEBUG] headless: adding resource javax.annotation version=1.2.0.v201602091430
+[DEBUG] headless: adding resource javax.xml version=1.3.4.v201005080400
+[DEBUG] headless: adding resource org.apache.felix.gogo.command version=1.0.2.v20170914-1324
+[DEBUG] headless: adding resource org.apache.felix.gogo.runtime version=1.1.0.v20180713-1646
+[DEBUG] headless: adding resource org.apache.felix.gogo.shell version=1.1.0.v20180713-1646
+[DEBUG] headless: adding resource org.apache.felix.scr version=2.1.14.v20190123-1619
+[DEBUG] headless: adding resource org.eclipse.app4mc.amalthea.converters.071 version=1.1.0.202104220626
+[DEBUG] headless: adding resource org.eclipse.app4mc.amalthea.converters.072 version=1.1.0.202104220626
+[DEBUG] headless: adding resource org.eclipse.app4mc.amalthea.converters.080 version=1.1.0.202104220626
+[DEBUG] headless: adding resource org.eclipse.app4mc.amalthea.converters.081 version=1.1.0.202104220626
+[DEBUG] headless: adding resource org.eclipse.app4mc.amalthea.converters.082 version=1.1.0.202104220626
+[DEBUG] headless: adding resource org.eclipse.app4mc.amalthea.converters.083 version=1.1.0.202104220626
+[DEBUG] headless: adding resource org.eclipse.app4mc.amalthea.converters.090 version=1.1.0.202104220626
+[DEBUG] headless: adding resource org.eclipse.app4mc.amalthea.converters.091 version=1.1.0.202104220626
+[DEBUG] headless: adding resource org.eclipse.app4mc.amalthea.converters.092 version=1.1.0.202104220626
+[DEBUG] headless: adding resource org.eclipse.app4mc.amalthea.converters.093 version=1.1.0.202104220626
+[DEBUG] headless: adding resource org.eclipse.app4mc.amalthea.converters.094 version=1.1.0.202104220626
+[DEBUG] headless: adding resource org.eclipse.app4mc.amalthea.converters.095 version=1.1.0.202104220626
+[DEBUG] headless: adding resource org.eclipse.app4mc.amalthea.converters.096 version=1.1.0.202104220626
+[DEBUG] headless: adding resource org.eclipse.app4mc.amalthea.converters.097 version=1.1.0.202104220626
+[DEBUG] headless: adding resource org.eclipse.app4mc.amalthea.converters.100 version=1.1.0.202104220626
+[DEBUG] headless: adding resource org.eclipse.app4mc.amalthea.converters.common version=1.1.0.202104220626
+[DEBUG] headless: adding resource org.eclipse.app4mc.amalthea.converters.headless.app version=1.1.0.202104220626
+[DEBUG] headless: adding resource org.eclipse.app4mc.util.sessionlog.console version=1.1.0.202104211257
+[DEBUG] headless: adding resource org.eclipse.app4mc.util.sessionlog.file version=1.1.0.202104211257
+[DEBUG] headless: adding resource org.eclipse.app4mc.util.sessionlog version=1.1.0.202104211257
+[DEBUG] headless: adding resource org.eclipse.equinox.common version=3.10.600.v20191004-1420
+[DEBUG] headless: adding resource org.eclipse.equinox.console version=1.4.0.v20190819-1430
+[DEBUG] headless: adding resource org.eclipse.equinox.launcher.cocoa.macosx.x86_64 version=1.1.1100.v20190907-0426
+[DEBUG] headless: adding resource org.eclipse.equinox.launcher.gtk.linux.x86_64 version=1.1.1100.v20190907-0426
+[DEBUG] headless: adding resource org.eclipse.equinox.launcher.win32.win32.x86_64 version=1.1.1100.v20190907-0426
+[DEBUG] headless: adding resource org.eclipse.equinox.launcher version=1.5.600.v20191014-2022
+[DEBUG] headless: adding resource org.eclipse.osgi.services version=3.8.0.v20190206-2147
+[DEBUG] headless: adding resource org.eclipse.osgi.util version=3.5.300.v20190708-1141
+[DEBUG] headless: adding resource org.eclipse.osgi version=3.15.100.v20191114-1701
+[DEBUG] headless: adding resource org.jaxen version=1.1.6.v20191106-1554
+[DEBUG] headless: adding resource org.jdom2 version=2.0.6.v20191125-0928
+[DEBUG] headless: list(null) [javax.xml, org.eclipse.osgi, org.jdom2, org.eclipse.equinox.launcher.gtk.linux.x86_64, org.eclipse.app4mc.util.sessionlog.console, org.eclipse.app4mc.amalthea.converters.090, org.eclipse.app4mc.amalthea.converters.headless.app, org.eclipse.app4mc.util.sessionlog.file, javax.annotation, org.eclipse.app4mc.amalthea.converters.082, org.eclipse.app4mc.amalthea.converters.083, org.eclipse.app4mc.amalthea.converters.080, org.eclipse.app4mc.amalthea.converters.081, org.apache.felix.gogo.command, org.jaxen, org.apache.felix.gogo.shell, org.eclipse.app4mc.amalthea.converters.common, org.eclipse.equinox.launcher.win32.win32.x86_64, org.eclipse.app4mc.amalthea.converters.100, org.eclipse.osgi.services, org.eclipse.equinox.common, org.apache.felix.gogo.runtime, org.eclipse.app4mc.amalthea.converters.093, org.eclipse.app4mc.amalthea.converters.071, org.eclipse.equinox.launcher.cocoa.macosx.x86_64, org.eclipse.app4mc.amalthea.converters.072, org.eclipse.app4mc.amalthea.converters.094, org.eclipse.app4mc.amalthea.converters.091, org.eclipse.osgi.util, org.eclipse.app4mc.amalthea.converters.092, org.apache.felix.scr, org.eclipse.app4mc.amalthea.converters.097, org.eclipse.app4mc.amalthea.converters.095, org.eclipse.app4mc.amalthea.converters.096, org.eclipse.equinox.launcher, org.eclipse.equinox.console, org.eclipse.app4mc.util.sessionlog]
+[DEBUG] init
+[DEBUG] Line is empty, args=C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/tmp/export/amalthea_migration/cnf/cache/4.3.1/bnd-cache
+[DEBUG] Line is empty, args=C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/tmp/export/amalthea_migration/cnf/cache/4.3.1/bnd-cache
+[DEBUG] headless: versions(biz.aQute.launcher) []
+[DEBUG] Line is empty, args=C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/tmp/export/amalthea_migration/cnf/cache/4.3.1/bnd-cache
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\tmp\export\amalthea_migration\cnf\cache\4.3.1\bnd-cache\biz.aQute.launcher\biz.aQute.launcher-4.3.1.jar
+[DEBUG] candidates for handler class aQute.bnd.build.ProjectLauncher: [C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/tmp/export/amalthea_migration/cnf/cache/4.3.1/bnd-cache/biz.aQute.launcher/biz.aQute.launcher-4.3.1.jar]
+[DEBUG] found handler biz.aQute.launcher from C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/tmp/export/amalthea_migration/cnf/cache/4.3.1/bnd-cache/biz.aQute.launcher/biz.aQute.launcher-4.3.1.jar
+[DEBUG] created a aQute launcher plugin
+[DEBUG] launcher plugin using temp launch file C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\tmp\export\amalthea_migration\generated\launch11890947133801010471.properties
+[DEBUG] headless: versions(org.apache.felix.scr) [2.1.14.v20190123-1619]
+[DEBUG] headless: get org.apache.felix.scr 2.1.14.v20190123-1619
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.apache.felix.scr_2.1.14.v20190123-1619.jar
+[DEBUG] Get org.apache.felix.scr-2.1.14.v20190123-1619 for headless: starting
+[DEBUG] Get org.apache.felix.scr-2.1.14.v20190123-1619 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.apache.felix.scr_2.1.14.v20190123-1619.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.apache.felix.scr_2.1.14.v20190123-1619.jar
+[DEBUG] headless: versions(org.eclipse.osgi.services) [3.8.0.v20190206-2147]
+[DEBUG] headless: get org.eclipse.osgi.services 3.8.0.v20190206-2147
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.osgi.services_3.8.0.v20190206-2147.jar
+[DEBUG] Get org.eclipse.osgi.services-3.8.0.v20190206-2147 for headless: starting
+[DEBUG] Get org.eclipse.osgi.services-3.8.0.v20190206-2147 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.osgi.services_3.8.0.v20190206-2147.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.osgi.services_3.8.0.v20190206-2147.jar
+[DEBUG] headless: versions(org.eclipse.osgi.util) [3.5.300.v20190708-1141]
+[DEBUG] headless: get org.eclipse.osgi.util 3.5.300.v20190708-1141
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.osgi.util_3.5.300.v20190708-1141.jar
+[DEBUG] Get org.eclipse.osgi.util-3.5.300.v20190708-1141 for headless: starting
+[DEBUG] Get org.eclipse.osgi.util-3.5.300.v20190708-1141 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.osgi.util_3.5.300.v20190708-1141.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.osgi.util_3.5.300.v20190708-1141.jar
+[DEBUG] headless: versions(org.eclipse.equinox.common) [3.10.600.v20191004-1420]
+[DEBUG] headless: get org.eclipse.equinox.common 3.10.600.v20191004-1420
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.equinox.common_3.10.600.v20191004-1420.jar
+[DEBUG] Get org.eclipse.equinox.common-3.10.600.v20191004-1420 for headless: starting
+[DEBUG] Get org.eclipse.equinox.common-3.10.600.v20191004-1420 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.equinox.common_3.10.600.v20191004-1420.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.equinox.common_3.10.600.v20191004-1420.jar
+[DEBUG] headless: versions(org.eclipse.app4mc.amalthea.converters.071) [1.1.0.202104220626]
+[DEBUG] headless: get org.eclipse.app4mc.amalthea.converters.071 1.1.0.202104220626
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.071_1.1.0.202104220626.jar
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.071-1.1.0.202104220626 for headless: starting
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.071-1.1.0.202104220626 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.071_1.1.0.202104220626.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.071_1.1.0.202104220626.jar
+[DEBUG] headless: versions(org.eclipse.app4mc.amalthea.converters.072) [1.1.0.202104220626]
+[DEBUG] headless: get org.eclipse.app4mc.amalthea.converters.072 1.1.0.202104220626
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.072_1.1.0.202104220626.jar
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.072-1.1.0.202104220626 for headless: starting
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.072-1.1.0.202104220626 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.072_1.1.0.202104220626.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.072_1.1.0.202104220626.jar
+[DEBUG] headless: versions(org.eclipse.app4mc.amalthea.converters.080) [1.1.0.202104220626]
+[DEBUG] headless: get org.eclipse.app4mc.amalthea.converters.080 1.1.0.202104220626
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.080_1.1.0.202104220626.jar
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.080-1.1.0.202104220626 for headless: starting
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.080-1.1.0.202104220626 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.080_1.1.0.202104220626.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.080_1.1.0.202104220626.jar
+[DEBUG] headless: versions(org.eclipse.app4mc.amalthea.converters.081) [1.1.0.202104220626]
+[DEBUG] headless: get org.eclipse.app4mc.amalthea.converters.081 1.1.0.202104220626
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.081_1.1.0.202104220626.jar
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.081-1.1.0.202104220626 for headless: starting
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.081-1.1.0.202104220626 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.081_1.1.0.202104220626.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.081_1.1.0.202104220626.jar
+[DEBUG] headless: versions(org.eclipse.app4mc.amalthea.converters.082) [1.1.0.202104220626]
+[DEBUG] headless: get org.eclipse.app4mc.amalthea.converters.082 1.1.0.202104220626
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.082_1.1.0.202104220626.jar
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.082-1.1.0.202104220626 for headless: starting
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.082-1.1.0.202104220626 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.082_1.1.0.202104220626.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.082_1.1.0.202104220626.jar
+[DEBUG] headless: versions(org.eclipse.app4mc.amalthea.converters.083) [1.1.0.202104220626]
+[DEBUG] headless: get org.eclipse.app4mc.amalthea.converters.083 1.1.0.202104220626
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.083_1.1.0.202104220626.jar
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.083-1.1.0.202104220626 for headless: starting
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.083-1.1.0.202104220626 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.083_1.1.0.202104220626.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.083_1.1.0.202104220626.jar
+[DEBUG] headless: versions(org.eclipse.app4mc.amalthea.converters.090) [1.1.0.202104220626]
+[DEBUG] headless: get org.eclipse.app4mc.amalthea.converters.090 1.1.0.202104220626
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.090_1.1.0.202104220626.jar
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.090-1.1.0.202104220626 for headless: starting
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.090-1.1.0.202104220626 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.090_1.1.0.202104220626.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.090_1.1.0.202104220626.jar
+[DEBUG] headless: versions(org.eclipse.app4mc.amalthea.converters.091) [1.1.0.202104220626]
+[DEBUG] headless: get org.eclipse.app4mc.amalthea.converters.091 1.1.0.202104220626
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.091_1.1.0.202104220626.jar
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.091-1.1.0.202104220626 for headless: starting
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.091-1.1.0.202104220626 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.091_1.1.0.202104220626.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.091_1.1.0.202104220626.jar
+[DEBUG] headless: versions(org.eclipse.app4mc.amalthea.converters.092) [1.1.0.202104220626]
+[DEBUG] headless: get org.eclipse.app4mc.amalthea.converters.092 1.1.0.202104220626
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.092_1.1.0.202104220626.jar
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.092-1.1.0.202104220626 for headless: starting
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.092-1.1.0.202104220626 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.092_1.1.0.202104220626.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.092_1.1.0.202104220626.jar
+[DEBUG] headless: versions(org.eclipse.app4mc.amalthea.converters.093) [1.1.0.202104220626]
+[DEBUG] headless: get org.eclipse.app4mc.amalthea.converters.093 1.1.0.202104220626
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.093_1.1.0.202104220626.jar
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.093-1.1.0.202104220626 for headless: starting
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.093-1.1.0.202104220626 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.093_1.1.0.202104220626.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.093_1.1.0.202104220626.jar
+[DEBUG] headless: versions(org.eclipse.app4mc.amalthea.converters.094) [1.1.0.202104220626]
+[DEBUG] headless: get org.eclipse.app4mc.amalthea.converters.094 1.1.0.202104220626
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.094_1.1.0.202104220626.jar
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.094-1.1.0.202104220626 for headless: starting
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.094-1.1.0.202104220626 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.094_1.1.0.202104220626.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.094_1.1.0.202104220626.jar
+[DEBUG] headless: versions(org.eclipse.app4mc.amalthea.converters.095) [1.1.0.202104220626]
+[DEBUG] headless: get org.eclipse.app4mc.amalthea.converters.095 1.1.0.202104220626
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.095_1.1.0.202104220626.jar
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.095-1.1.0.202104220626 for headless: starting
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.095-1.1.0.202104220626 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.095_1.1.0.202104220626.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.095_1.1.0.202104220626.jar
+[DEBUG] headless: versions(org.eclipse.app4mc.amalthea.converters.096) [1.1.0.202104220626]
+[DEBUG] headless: get org.eclipse.app4mc.amalthea.converters.096 1.1.0.202104220626
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.096_1.1.0.202104220626.jar
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.096-1.1.0.202104220626 for headless: starting
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.096-1.1.0.202104220626 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.096_1.1.0.202104220626.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.096_1.1.0.202104220626.jar
+[DEBUG] headless: versions(org.eclipse.app4mc.amalthea.converters.097) [1.1.0.202104220626]
+[DEBUG] headless: get org.eclipse.app4mc.amalthea.converters.097 1.1.0.202104220626
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.097_1.1.0.202104220626.jar
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.097-1.1.0.202104220626 for headless: starting
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.097-1.1.0.202104220626 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.097_1.1.0.202104220626.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.097_1.1.0.202104220626.jar
+[DEBUG] headless: versions(org.eclipse.app4mc.amalthea.converters.common) [1.1.0.202104220626]
+[DEBUG] headless: get org.eclipse.app4mc.amalthea.converters.common 1.1.0.202104220626
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.common_1.1.0.202104220626.jar
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.common-1.1.0.202104220626 for headless: starting
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.common-1.1.0.202104220626 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.common_1.1.0.202104220626.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.common_1.1.0.202104220626.jar
+[DEBUG] headless: versions(org.eclipse.app4mc.util.sessionlog) [1.1.0.202104211257]
+[DEBUG] headless: get org.eclipse.app4mc.util.sessionlog 1.1.0.202104211257
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.util.sessionlog_1.1.0.202104211257.jar
+[DEBUG] Get org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257 for headless: starting
+[DEBUG] Get org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.util.sessionlog_1.1.0.202104211257.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.util.sessionlog_1.1.0.202104211257.jar
+[DEBUG] headless: versions(org.eclipse.app4mc.util.sessionlog.console) [1.1.0.202104211257]
+[DEBUG] headless: get org.eclipse.app4mc.util.sessionlog.console 1.1.0.202104211257
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.util.sessionlog.console_1.1.0.202104211257.jar
+[DEBUG] Get org.eclipse.app4mc.util.sessionlog.console-1.1.0.202104211257 for headless: starting
+[DEBUG] Get org.eclipse.app4mc.util.sessionlog.console-1.1.0.202104211257 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.util.sessionlog.console_1.1.0.202104211257.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.util.sessionlog.console_1.1.0.202104211257.jar
+[DEBUG] headless: versions(org.eclipse.app4mc.util.sessionlog.file) [1.1.0.202104211257]
+[DEBUG] headless: get org.eclipse.app4mc.util.sessionlog.file 1.1.0.202104211257
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.util.sessionlog.file_1.1.0.202104211257.jar
+[DEBUG] Get org.eclipse.app4mc.util.sessionlog.file-1.1.0.202104211257 for headless: starting
+[DEBUG] Get org.eclipse.app4mc.util.sessionlog.file-1.1.0.202104211257 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.util.sessionlog.file_1.1.0.202104211257.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.util.sessionlog.file_1.1.0.202104211257.jar
+[DEBUG] headless: versions(javax.xml) [1.3.4.v201005080400]
+[DEBUG] headless: get javax.xml 1.3.4.v201005080400
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/javax.xml_1.3.4.v201005080400.jar
+[DEBUG] Get javax.xml-1.3.4.v201005080400 for headless: starting
+[DEBUG] Get javax.xml-1.3.4.v201005080400 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\javax.xml_1.3.4.v201005080400.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\javax.xml_1.3.4.v201005080400.jar
+[DEBUG] headless: versions(org.jaxen) [1.1.6.v20191106-1554]
+[DEBUG] headless: get org.jaxen 1.1.6.v20191106-1554
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.jaxen_1.1.6.v20191106-1554.jar
+[DEBUG] Get org.jaxen-1.1.6.v20191106-1554 for headless: starting
+[DEBUG] Get org.jaxen-1.1.6.v20191106-1554 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.jaxen_1.1.6.v20191106-1554.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.jaxen_1.1.6.v20191106-1554.jar
+[DEBUG] headless: versions(org.jdom2) [2.0.6.v20191125-0928]
+[DEBUG] headless: get org.jdom2 2.0.6.v20191125-0928
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.jdom2_2.0.6.v20191125-0928.jar
+[DEBUG] Get org.jdom2-2.0.6.v20191125-0928 for headless: starting
+[DEBUG] Get org.jdom2-2.0.6.v20191125-0928 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.jdom2_2.0.6.v20191125-0928.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.jdom2_2.0.6.v20191125-0928.jar
+[DEBUG] headless: versions(org.eclipse.app4mc.amalthea.converters.headless.app) [1.1.0.202104220626]
+[DEBUG] headless: get org.eclipse.app4mc.amalthea.converters.headless.app 1.1.0.202104220626
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.headless.app_1.1.0.202104220626.jar
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.headless.app-1.1.0.202104220626 for headless: starting
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.headless.app-1.1.0.202104220626 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.headless.app_1.1.0.202104220626.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.headless.app_1.1.0.202104220626.jar
+[DEBUG] headless: versions(org.apache.felix.gogo.runtime) [1.1.0.v20180713-1646]
+[DEBUG] headless: get org.apache.felix.gogo.runtime 1.1.0.v20180713-1646
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.apache.felix.gogo.runtime_1.1.0.v20180713-1646.jar
+[DEBUG] Get org.apache.felix.gogo.runtime-1.1.0.v20180713-1646 for headless: starting
+[DEBUG] Get org.apache.felix.gogo.runtime-1.1.0.v20180713-1646 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.apache.felix.gogo.runtime_1.1.0.v20180713-1646.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.apache.felix.gogo.runtime_1.1.0.v20180713-1646.jar
+[DEBUG] headless: versions(org.apache.felix.gogo.shell) [1.1.0.v20180713-1646]
+[DEBUG] headless: get org.apache.felix.gogo.shell 1.1.0.v20180713-1646
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.apache.felix.gogo.shell_1.1.0.v20180713-1646.jar
+[DEBUG] Get org.apache.felix.gogo.shell-1.1.0.v20180713-1646 for headless: starting
+[DEBUG] Get org.apache.felix.gogo.shell-1.1.0.v20180713-1646 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.apache.felix.gogo.shell_1.1.0.v20180713-1646.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.apache.felix.gogo.shell_1.1.0.v20180713-1646.jar
+[DEBUG] headless: versions(org.apache.felix.gogo.command) [1.0.2.v20170914-1324]
+[DEBUG] headless: get org.apache.felix.gogo.command 1.0.2.v20170914-1324
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.apache.felix.gogo.command_1.0.2.v20170914-1324.jar
+[DEBUG] Get org.apache.felix.gogo.command-1.0.2.v20170914-1324 for headless: starting
+[DEBUG] Get org.apache.felix.gogo.command-1.0.2.v20170914-1324 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.apache.felix.gogo.command_1.0.2.v20170914-1324.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.apache.felix.gogo.command_1.0.2.v20170914-1324.jar
+[DEBUG] headless: versions(org.eclipse.equinox.console) [1.4.0.v20190819-1430]
+[DEBUG] headless: get org.eclipse.equinox.console 1.4.0.v20190819-1430
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.equinox.console_1.4.0.v20190819-1430.jar
+[DEBUG] Get org.eclipse.equinox.console-1.4.0.v20190819-1430 for headless: starting
+[DEBUG] Get org.eclipse.equinox.console-1.4.0.v20190819-1430 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.equinox.console_1.4.0.v20190819-1430.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.equinox.console_1.4.0.v20190819-1430.jar
+[DEBUG] headless: versions(org.eclipse.osgi) [3.15.100.v20191114-1701]
+[DEBUG] headless: get org.eclipse.osgi 3.15.100.v20191114-1701
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.osgi_3.15.100.v20191114-1701.jar
+[DEBUG] Get org.eclipse.osgi-3.15.100.v20191114-1701 for headless: starting
+[DEBUG] Get org.eclipse.osgi-3.15.100.v20191114-1701 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.osgi_3.15.100.v20191114-1701.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.osgi_3.15.100.v20191114-1701.jar
+[DEBUG] headless: versions(org.apache.felix.scr) [2.1.14.v20190123-1619]
+[DEBUG] headless: get org.apache.felix.scr 2.1.14.v20190123-1619
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.apache.felix.scr_2.1.14.v20190123-1619.jar
+[DEBUG] Get org.apache.felix.scr-2.1.14.v20190123-1619 for headless: starting
+[DEBUG] Get org.apache.felix.scr-2.1.14.v20190123-1619 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.apache.felix.scr_2.1.14.v20190123-1619.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.apache.felix.scr_2.1.14.v20190123-1619.jar
+[DEBUG] headless: versions(org.eclipse.osgi.services) [3.8.0.v20190206-2147]
+[DEBUG] headless: get org.eclipse.osgi.services 3.8.0.v20190206-2147
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.osgi.services_3.8.0.v20190206-2147.jar
+[DEBUG] Get org.eclipse.osgi.services-3.8.0.v20190206-2147 for headless: starting
+[DEBUG] Get org.eclipse.osgi.services-3.8.0.v20190206-2147 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.osgi.services_3.8.0.v20190206-2147.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.osgi.services_3.8.0.v20190206-2147.jar
+[DEBUG] headless: versions(org.eclipse.osgi.util) [3.5.300.v20190708-1141]
+[DEBUG] headless: get org.eclipse.osgi.util 3.5.300.v20190708-1141
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.osgi.util_3.5.300.v20190708-1141.jar
+[DEBUG] Get org.eclipse.osgi.util-3.5.300.v20190708-1141 for headless: starting
+[DEBUG] Get org.eclipse.osgi.util-3.5.300.v20190708-1141 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.osgi.util_3.5.300.v20190708-1141.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.osgi.util_3.5.300.v20190708-1141.jar
+[DEBUG] headless: versions(org.eclipse.equinox.common) [3.10.600.v20191004-1420]
+[DEBUG] headless: get org.eclipse.equinox.common 3.10.600.v20191004-1420
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.equinox.common_3.10.600.v20191004-1420.jar
+[DEBUG] Get org.eclipse.equinox.common-3.10.600.v20191004-1420 for headless: starting
+[DEBUG] Get org.eclipse.equinox.common-3.10.600.v20191004-1420 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.equinox.common_3.10.600.v20191004-1420.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.equinox.common_3.10.600.v20191004-1420.jar
+[DEBUG] headless: versions(org.eclipse.app4mc.amalthea.converters.071) [1.1.0.202104220626]
+[DEBUG] headless: get org.eclipse.app4mc.amalthea.converters.071 1.1.0.202104220626
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.071_1.1.0.202104220626.jar
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.071-1.1.0.202104220626 for headless: starting
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.071-1.1.0.202104220626 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.071_1.1.0.202104220626.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.071_1.1.0.202104220626.jar
+[DEBUG] headless: versions(org.eclipse.app4mc.amalthea.converters.072) [1.1.0.202104220626]
+[DEBUG] headless: get org.eclipse.app4mc.amalthea.converters.072 1.1.0.202104220626
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.072_1.1.0.202104220626.jar
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.072-1.1.0.202104220626 for headless: starting
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.072-1.1.0.202104220626 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.072_1.1.0.202104220626.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.072_1.1.0.202104220626.jar
+[DEBUG] headless: versions(org.eclipse.app4mc.amalthea.converters.080) [1.1.0.202104220626]
+[DEBUG] headless: get org.eclipse.app4mc.amalthea.converters.080 1.1.0.202104220626
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.080_1.1.0.202104220626.jar
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.080-1.1.0.202104220626 for headless: starting
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.080-1.1.0.202104220626 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.080_1.1.0.202104220626.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.080_1.1.0.202104220626.jar
+[DEBUG] headless: versions(org.eclipse.app4mc.amalthea.converters.081) [1.1.0.202104220626]
+[DEBUG] headless: get org.eclipse.app4mc.amalthea.converters.081 1.1.0.202104220626
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.081_1.1.0.202104220626.jar
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.081-1.1.0.202104220626 for headless: starting
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.081-1.1.0.202104220626 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.081_1.1.0.202104220626.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.081_1.1.0.202104220626.jar
+[DEBUG] headless: versions(org.eclipse.app4mc.amalthea.converters.082) [1.1.0.202104220626]
+[DEBUG] headless: get org.eclipse.app4mc.amalthea.converters.082 1.1.0.202104220626
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.082_1.1.0.202104220626.jar
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.082-1.1.0.202104220626 for headless: starting
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.082-1.1.0.202104220626 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.082_1.1.0.202104220626.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.082_1.1.0.202104220626.jar
+[DEBUG] headless: versions(org.eclipse.app4mc.amalthea.converters.083) [1.1.0.202104220626]
+[DEBUG] headless: get org.eclipse.app4mc.amalthea.converters.083 1.1.0.202104220626
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.083_1.1.0.202104220626.jar
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.083-1.1.0.202104220626 for headless: starting
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.083-1.1.0.202104220626 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.083_1.1.0.202104220626.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.083_1.1.0.202104220626.jar
+[DEBUG] headless: versions(org.eclipse.app4mc.amalthea.converters.090) [1.1.0.202104220626]
+[DEBUG] headless: get org.eclipse.app4mc.amalthea.converters.090 1.1.0.202104220626
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.090_1.1.0.202104220626.jar
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.090-1.1.0.202104220626 for headless: starting
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.090-1.1.0.202104220626 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.090_1.1.0.202104220626.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.090_1.1.0.202104220626.jar
+[DEBUG] headless: versions(org.eclipse.app4mc.amalthea.converters.091) [1.1.0.202104220626]
+[DEBUG] headless: get org.eclipse.app4mc.amalthea.converters.091 1.1.0.202104220626
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.091_1.1.0.202104220626.jar
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.091-1.1.0.202104220626 for headless: starting
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.091-1.1.0.202104220626 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.091_1.1.0.202104220626.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.091_1.1.0.202104220626.jar
+[DEBUG] headless: versions(org.eclipse.app4mc.amalthea.converters.092) [1.1.0.202104220626]
+[DEBUG] headless: get org.eclipse.app4mc.amalthea.converters.092 1.1.0.202104220626
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.092_1.1.0.202104220626.jar
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.092-1.1.0.202104220626 for headless: starting
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.092-1.1.0.202104220626 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.092_1.1.0.202104220626.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.092_1.1.0.202104220626.jar
+[DEBUG] headless: versions(org.eclipse.app4mc.amalthea.converters.093) [1.1.0.202104220626]
+[DEBUG] headless: get org.eclipse.app4mc.amalthea.converters.093 1.1.0.202104220626
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.093_1.1.0.202104220626.jar
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.093-1.1.0.202104220626 for headless: starting
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.093-1.1.0.202104220626 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.093_1.1.0.202104220626.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.093_1.1.0.202104220626.jar
+[DEBUG] headless: versions(org.eclipse.app4mc.amalthea.converters.094) [1.1.0.202104220626]
+[DEBUG] headless: get org.eclipse.app4mc.amalthea.converters.094 1.1.0.202104220626
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.094_1.1.0.202104220626.jar
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.094-1.1.0.202104220626 for headless: starting
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.094-1.1.0.202104220626 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.094_1.1.0.202104220626.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.094_1.1.0.202104220626.jar
+[DEBUG] headless: versions(org.eclipse.app4mc.amalthea.converters.095) [1.1.0.202104220626]
+[DEBUG] headless: get org.eclipse.app4mc.amalthea.converters.095 1.1.0.202104220626
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.095_1.1.0.202104220626.jar
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.095-1.1.0.202104220626 for headless: starting
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.095-1.1.0.202104220626 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.095_1.1.0.202104220626.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.095_1.1.0.202104220626.jar
+[DEBUG] headless: versions(org.eclipse.app4mc.amalthea.converters.096) [1.1.0.202104220626]
+[DEBUG] headless: get org.eclipse.app4mc.amalthea.converters.096 1.1.0.202104220626
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.096_1.1.0.202104220626.jar
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.096-1.1.0.202104220626 for headless: starting
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.096-1.1.0.202104220626 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.096_1.1.0.202104220626.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.096_1.1.0.202104220626.jar
+[DEBUG] headless: versions(org.eclipse.app4mc.amalthea.converters.097) [1.1.0.202104220626]
+[DEBUG] headless: get org.eclipse.app4mc.amalthea.converters.097 1.1.0.202104220626
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.097_1.1.0.202104220626.jar
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.097-1.1.0.202104220626 for headless: starting
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.097-1.1.0.202104220626 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.097_1.1.0.202104220626.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.097_1.1.0.202104220626.jar
+[DEBUG] headless: versions(org.eclipse.app4mc.amalthea.converters.common) [1.1.0.202104220626]
+[DEBUG] headless: get org.eclipse.app4mc.amalthea.converters.common 1.1.0.202104220626
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.common_1.1.0.202104220626.jar
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.common-1.1.0.202104220626 for headless: starting
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.common-1.1.0.202104220626 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.common_1.1.0.202104220626.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.common_1.1.0.202104220626.jar
+[DEBUG] headless: versions(org.eclipse.app4mc.util.sessionlog) [1.1.0.202104211257]
+[DEBUG] headless: get org.eclipse.app4mc.util.sessionlog 1.1.0.202104211257
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.util.sessionlog_1.1.0.202104211257.jar
+[DEBUG] Get org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257 for headless: starting
+[DEBUG] Get org.eclipse.app4mc.util.sessionlog-1.1.0.202104211257 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.util.sessionlog_1.1.0.202104211257.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.util.sessionlog_1.1.0.202104211257.jar
+[DEBUG] headless: versions(org.eclipse.app4mc.util.sessionlog.console) [1.1.0.202104211257]
+[DEBUG] headless: get org.eclipse.app4mc.util.sessionlog.console 1.1.0.202104211257
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.util.sessionlog.console_1.1.0.202104211257.jar
+[DEBUG] Get org.eclipse.app4mc.util.sessionlog.console-1.1.0.202104211257 for headless: starting
+[DEBUG] Get org.eclipse.app4mc.util.sessionlog.console-1.1.0.202104211257 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.util.sessionlog.console_1.1.0.202104211257.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.util.sessionlog.console_1.1.0.202104211257.jar
+[DEBUG] headless: versions(org.eclipse.app4mc.util.sessionlog.file) [1.1.0.202104211257]
+[DEBUG] headless: get org.eclipse.app4mc.util.sessionlog.file 1.1.0.202104211257
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.util.sessionlog.file_1.1.0.202104211257.jar
+[DEBUG] Get org.eclipse.app4mc.util.sessionlog.file-1.1.0.202104211257 for headless: starting
+[DEBUG] Get org.eclipse.app4mc.util.sessionlog.file-1.1.0.202104211257 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.util.sessionlog.file_1.1.0.202104211257.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.util.sessionlog.file_1.1.0.202104211257.jar
+[DEBUG] headless: versions(javax.xml) [1.3.4.v201005080400]
+[DEBUG] headless: get javax.xml 1.3.4.v201005080400
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/javax.xml_1.3.4.v201005080400.jar
+[DEBUG] Get javax.xml-1.3.4.v201005080400 for headless: starting
+[DEBUG] Get javax.xml-1.3.4.v201005080400 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\javax.xml_1.3.4.v201005080400.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\javax.xml_1.3.4.v201005080400.jar
+[DEBUG] headless: versions(org.jaxen) [1.1.6.v20191106-1554]
+[DEBUG] headless: get org.jaxen 1.1.6.v20191106-1554
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.jaxen_1.1.6.v20191106-1554.jar
+[DEBUG] Get org.jaxen-1.1.6.v20191106-1554 for headless: starting
+[DEBUG] Get org.jaxen-1.1.6.v20191106-1554 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.jaxen_1.1.6.v20191106-1554.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.jaxen_1.1.6.v20191106-1554.jar
+[DEBUG] headless: versions(org.jdom2) [2.0.6.v20191125-0928]
+[DEBUG] headless: get org.jdom2 2.0.6.v20191125-0928
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.jdom2_2.0.6.v20191125-0928.jar
+[DEBUG] Get org.jdom2-2.0.6.v20191125-0928 for headless: starting
+[DEBUG] Get org.jdom2-2.0.6.v20191125-0928 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.jdom2_2.0.6.v20191125-0928.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.jdom2_2.0.6.v20191125-0928.jar
+[DEBUG] headless: versions(org.eclipse.app4mc.amalthea.converters.headless.app) [1.1.0.202104220626]
+[DEBUG] headless: get org.eclipse.app4mc.amalthea.converters.headless.app 1.1.0.202104220626
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.headless.app_1.1.0.202104220626.jar
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.headless.app-1.1.0.202104220626 for headless: starting
+[DEBUG] Get org.eclipse.app4mc.amalthea.converters.headless.app-1.1.0.202104220626 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.headless.app_1.1.0.202104220626.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.app4mc.amalthea.converters.headless.app_1.1.0.202104220626.jar
+[DEBUG] headless: versions(org.apache.felix.gogo.runtime) [1.1.0.v20180713-1646]
+[DEBUG] headless: get org.apache.felix.gogo.runtime 1.1.0.v20180713-1646
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.apache.felix.gogo.runtime_1.1.0.v20180713-1646.jar
+[DEBUG] Get org.apache.felix.gogo.runtime-1.1.0.v20180713-1646 for headless: starting
+[DEBUG] Get org.apache.felix.gogo.runtime-1.1.0.v20180713-1646 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.apache.felix.gogo.runtime_1.1.0.v20180713-1646.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.apache.felix.gogo.runtime_1.1.0.v20180713-1646.jar
+[DEBUG] headless: versions(org.apache.felix.gogo.shell) [1.1.0.v20180713-1646]
+[DEBUG] headless: get org.apache.felix.gogo.shell 1.1.0.v20180713-1646
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.apache.felix.gogo.shell_1.1.0.v20180713-1646.jar
+[DEBUG] Get org.apache.felix.gogo.shell-1.1.0.v20180713-1646 for headless: starting
+[DEBUG] Get org.apache.felix.gogo.shell-1.1.0.v20180713-1646 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.apache.felix.gogo.shell_1.1.0.v20180713-1646.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.apache.felix.gogo.shell_1.1.0.v20180713-1646.jar
+[DEBUG] headless: versions(org.apache.felix.gogo.command) [1.0.2.v20170914-1324]
+[DEBUG] headless: get org.apache.felix.gogo.command 1.0.2.v20170914-1324
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.apache.felix.gogo.command_1.0.2.v20170914-1324.jar
+[DEBUG] Get org.apache.felix.gogo.command-1.0.2.v20170914-1324 for headless: starting
+[DEBUG] Get org.apache.felix.gogo.command-1.0.2.v20170914-1324 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.apache.felix.gogo.command_1.0.2.v20170914-1324.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.apache.felix.gogo.command_1.0.2.v20170914-1324.jar
+[DEBUG] headless: versions(org.eclipse.equinox.console) [1.4.0.v20190819-1430]
+[DEBUG] headless: get org.eclipse.equinox.console 1.4.0.v20190819-1430
+[DEBUG] headless: get returning file:/C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.equinox.console_1.4.0.v20190819-1430.jar
+[DEBUG] Get org.eclipse.equinox.console-1.4.0.v20190819-1430 for headless: starting
+[DEBUG] Get org.eclipse.equinox.console-1.4.0.v20190819-1430 for headless: success C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.equinox.console_1.4.0.v20190819-1430.jar
+[DEBUG] successfully downloaded C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\repository\plugins\org.eclipse.equinox.console_1.4.0.v20190819-1430.jar
+[DEBUG] rejar Optional.empty
+[DEBUG] strip {}
+[DEBUG] embedding runpath C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.osgi_3.15.100.v20191114-1701.jar
+[DEBUG] embedding runpath C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/tmp/export/amalthea_migration/cnf/cache/4.3.1/bnd-cache/biz.aQute.launcher/biz.aQute.launcher-4.3.1.jar
+[DEBUG] embedding run bundles C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.apache.felix.scr_2.1.14.v20190123-1619.jar
+[DEBUG] embedding run bundles C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.osgi.services_3.8.0.v20190206-2147.jar
+[DEBUG] embedding run bundles C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.osgi.util_3.5.300.v20190708-1141.jar
+[DEBUG] embedding run bundles C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.equinox.common_3.10.600.v20191004-1420.jar
+[DEBUG] embedding run bundles C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.071_1.1.0.202104220626.jar
+[DEBUG] embedding run bundles C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.072_1.1.0.202104220626.jar
+[DEBUG] embedding run bundles C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.080_1.1.0.202104220626.jar
+[DEBUG] embedding run bundles C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.081_1.1.0.202104220626.jar
+[DEBUG] embedding run bundles C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.082_1.1.0.202104220626.jar
+[DEBUG] embedding run bundles C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.083_1.1.0.202104220626.jar
+[DEBUG] embedding run bundles C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.090_1.1.0.202104220626.jar
+[DEBUG] embedding run bundles C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.091_1.1.0.202104220626.jar
+[DEBUG] embedding run bundles C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.092_1.1.0.202104220626.jar
+[DEBUG] embedding run bundles C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.093_1.1.0.202104220626.jar
+[DEBUG] embedding run bundles C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.094_1.1.0.202104220626.jar
+[DEBUG] embedding run bundles C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.095_1.1.0.202104220626.jar
+[DEBUG] embedding run bundles C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.096_1.1.0.202104220626.jar
+[DEBUG] embedding run bundles C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.097_1.1.0.202104220626.jar
+[DEBUG] embedding run bundles C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.common_1.1.0.202104220626.jar
+[DEBUG] embedding run bundles C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.util.sessionlog_1.1.0.202104211257.jar
+[DEBUG] embedding run bundles C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.util.sessionlog.console_1.1.0.202104211257.jar
+[DEBUG] embedding run bundles C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.util.sessionlog.file_1.1.0.202104211257.jar
+[DEBUG] embedding run bundles C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/javax.xml_1.3.4.v201005080400.jar
+[DEBUG] embedding run bundles C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.jaxen_1.1.6.v20191106-1554.jar
+[DEBUG] embedding run bundles C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.jdom2_2.0.6.v20191125-0928.jar
+[DEBUG] embedding run bundles C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.app4mc.amalthea.converters.headless.app_1.1.0.202104220626.jar
+[DEBUG] embedding run bundles C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.apache.felix.gogo.runtime_1.1.0.v20180713-1646.jar
+[DEBUG] embedding run bundles C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.apache.felix.gogo.shell_1.1.0.v20180713-1646.jar
+[DEBUG] embedding run bundles C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.apache.felix.gogo.command_1.0.2.v20170914-1324.jar
+[DEBUG] embedding run bundles C:/Development/Sources/app4mc/org.eclipse.app4mc.addon.migration/releng/org.eclipse.app4mc.converters.product/target/repository/plugins/org.eclipse.equinox.console_1.4.0.v20190819-1430.jar
+[DEBUG] preparing the aQute launcher plugin
+[DEBUG] Use Embedded launcher
+[DEBUG] Deleted C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\target\tmp\export\amalthea_migration\generated\launch11890947133801010471.properties
+[INFO] 
+[INFO] ----------------< org.eclipse.app4mc.migration:releng >-----------------
+[INFO] Building [aggregator] releng 1.1.0-SNAPSHOT                      [46/47]
+[INFO] --------------------------------[ pom ]---------------------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): []
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] =======================================================================
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ releng ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\target\test-classes
+[DEBUG] -- end configuration --
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\target\site
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ releng ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = releng-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --< org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target >--
+[INFO] Building [target] Amalthea Model Migration Target 1.1.0-SNAPSHOT [47/47]
+[INFO] ---------------------[ eclipse-target-definition ]----------------------
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy]
+[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
+[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
+[DEBUG] === PROJECT BUILD PLAN ================================================
+[DEBUG] Project:       org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT
+[DEBUG] Dependencies (collect): []
+[DEBUG] Dependencies (resolve): []
+[DEBUG] Repositories (dependencies): [Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] Repositories (plugins)     : [jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/, default, releases+snapshots), jboss-snapshots-repository (https://repository.jboss.org/nexus/content/repositories/snapshots/, default, releases+snapshots), cbi (https://repo.eclipse.org/content/repositories/cbi-releases/, default, releases), Nexus (http://nexus.emt.cdg-smt.de.bosch.com:8280/nexus/content/repositories/central/, default, releases)]
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <directory default-value="${project.build.directory}"/>
+  <excludeDefaultDirectories default-value="false">${clean.excludeDefaultDirectories}</excludeDefaultDirectories>
+  <failOnError default-value="true">${maven.clean.failOnError}</failOnError>
+  <followSymLinks default-value="false">${clean.followSymLinks}</followSymLinks>
+  <outputDirectory default-value="${project.build.outputDirectory}"/>
+  <reportDirectory default-value="${project.reporting.outputDirectory}"/>
+  <retryOnError default-value="true">${maven.clean.retryOnError}</retryOnError>
+  <skip default-value="false">${clean.skip}</skip>
+  <testOutputDirectory default-value="${project.build.testOutputDirectory}"/>
+  <verbose>${clean.verbose}</verbose>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source (plugin-source)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <attach default-value="true">${attach}</attach>
+  <classifier default-value="sources"/>
+  <defaultManifestFile default-value="${project.build.outputDirectory}/META-INF/MANIFEST.MF"/>
+  <distinctSourceRoots default-value="false"/>
+  <excludeResources default-value="false">${source.excludeResources}</excludeResources>
+  <finalName>${project.build.finalName}</finalName>
+  <forceCreation default-value="false">${source.forceCreation}</forceCreation>
+  <includePom default-value="false">${source.includePom}</includePom>
+  <outputDirectory>${project.build.directory}</outputDirectory>
+  <project>${project}</project>
+  <qualifier>${buildQualifier}</qualifier>
+  <reactorProjects>${reactorProjects}</reactorProjects>
+  <requireSourceRoots default-value="false"/>
+  <session>${session}</session>
+  <sourceBundle default-value="true"/>
+  <sourceBundleSuffix default-value=".source">${sourceBundleSuffix}</sourceBundleSuffix>
+  <strictSrcIncludes default-value="true"/>
+  <useDefaultExcludes default-value="true"/>
+  <useDefaultManifestFile default-value="false"/>
+  <useDefaultSourceExcludes default-value="true"/>
+</configuration>
+[DEBUG] -----------------------------------------------------------------------
+[DEBUG] Goal:          org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-target-definition (default-package-target-definition)
+[DEBUG] Style:         Regular
+[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
+<configuration>
+  <project>${project}</project>
+</configuration>
+[DEBUG] =======================================================================
+[INFO] 
+[INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ org.eclipse.app4mc.converters.target ---
+[DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator -->
+[DEBUG]   (f) directory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\target
+[DEBUG]   (f) excludeDefaultDirectories = false
+[DEBUG]   (f) failOnError = true
+[DEBUG]   (f) followSymLinks = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\target\classes
+[DEBUG]   (f) reportDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\target\site
+[DEBUG]   (f) retryOnError = true
+[DEBUG]   (f) skip = false
+[DEBUG]   (f) testOutputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\target\test-classes
+[DEBUG] -- end configuration --
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\target
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\target\classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\target\test-classes
+[DEBUG] Skipping non-existing directory C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\target\site
+[INFO] 
+[INFO] --- tycho-source-plugin:2.3.0:plugin-source (plugin-source) @ org.eclipse.app4mc.converters.target ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-source-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-source-plugin:2.3.0:plugin-source' with basic configurator -->
+[DEBUG]   (f) attach = true
+[DEBUG]   (f) classifier = sources
+[DEBUG]   (f) defaultManifestFile = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\target\classes\META-INF\MANIFEST.MF
+[DEBUG]   (f) distinctSourceRoots = false
+[DEBUG]   (f) excludeResources = false
+[DEBUG]   (f) finalName = org.eclipse.app4mc.converters.target-1.1.0-SNAPSHOT
+[DEBUG]   (f) forceCreation = false
+[DEBUG]   (f) includePom = false
+[DEBUG]   (f) outputDirectory = C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\target
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target
+[DEBUG]   (f) reactorProjects = [MavenProject: org.eclipse.app4mc.migration:parent:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\pom.xml, MavenProject: org.eclipse.app4mc.migration:plugins:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.common\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.071\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.072\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.080\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.081\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.082\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.083\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.090\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.091\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.092\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.093\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.094\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.095\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.096\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.097\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.100\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.app:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.headless.app\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.help:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.help\pom.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.ui:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\plugins\org.eclipse.app4mc.amalthea.converters.ui\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.common.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.common.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.071.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.071.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.072.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.072.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.080.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.080.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.081.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.081.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.082.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.082.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.083.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.083.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.090.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.090.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.091.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.091.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.092.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.092.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.093.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.093.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.094.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.094.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.095.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.095.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.096.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.096.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.097.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.097.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.100.tests:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\tests\org.eclipse.app4mc.amalthea.converters.100.tests\.polyglot.META-INF, MavenProject: org.eclipse.app4mc.migration:features:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.headless.runtime:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.headless.runtime\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.amalthea.converters.sdk:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\features\org.eclipse.app4mc.amalthea.converters.sdk\.polyglot.feature.xml, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.p2repo:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.p2repo\pom.xml, MavenProject: org.eclipse.app4mc.migration:headless:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.product\pom.xml, MavenProject: org.eclipse.app4mc.migration:releng:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\.polyglot.pom.tycho, MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target]
+[DEBUG]   (f) requireSourceRoots = false
+[DEBUG]   (f) session = org.apache.maven.execution.MavenSession@154a317c
+[DEBUG]   (f) sourceBundle = true
+[DEBUG]   (f) sourceBundleSuffix = .source
+[DEBUG]   (f) strictSrcIncludes = true
+[DEBUG]   (f) useDefaultExcludes = true
+[DEBUG]   (f) useDefaultManifestFile = false
+[DEBUG]   (f) useDefaultSourceExcludes = true
+[DEBUG] -- end configuration --
+[INFO] 
+[INFO] --- tycho-packaging-plugin:2.3.0:package-target-definition (default-package-target-definition) @ org.eclipse.app4mc.converters.target ---
+[DEBUG] Configuring mojo org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-target-definition from plugin realm ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:2.3.0, parent: jdk.internal.loader.ClassLoaders$AppClassLoader@30946e09]
+[DEBUG] Configuring mojo 'org.eclipse.tycho:tycho-packaging-plugin:2.3.0:package-target-definition' with basic configurator -->
+[DEBUG]   (f) project = MavenProject: org.eclipse.app4mc.migration:org.eclipse.app4mc.converters.target:1.1.0-SNAPSHOT @ C:\Development\Sources\app4mc\org.eclipse.app4mc.addon.migration\releng\org.eclipse.app4mc.converters.target\.polyglot.org.eclipse.app4mc.converters.target.target
+[DEBUG] -- end configuration --
+[INFO] ------------------------------------------------------------------------
+[INFO] Reactor Summary for APP4MC Migration Component 1.1.0-SNAPSHOT:
+[INFO] 
+[INFO] APP4MC Migration Component ......................... SUCCESS [  0.050 s]
+[INFO] [aggregator] plugins ............................... SUCCESS [  0.005 s]
+[INFO] [bundle] APP4MC Amalthea Converters Common ......... SUCCESS [  7.439 s]
+[INFO] [bundle] APP4MC Amalthea Converters to 0.7.1 ....... SUCCESS [  0.404 s]
+[INFO] [bundle] APP4MC Amalthea Converters to 0.7.2 ....... SUCCESS [  0.344 s]
+[INFO] [bundle] APP4MC Amalthea Converters to 0.8.0 ....... SUCCESS [  0.230 s]
+[INFO] [bundle] APP4MC Amalthea Converters to 0.8.1 ....... SUCCESS [  0.275 s]
+[INFO] [bundle] APP4MC Amalthea Converters to 0.8.2 ....... SUCCESS [  0.247 s]
+[INFO] [bundle] APP4MC Amalthea Converters to 0.8.3 ....... SUCCESS [  0.275 s]
+[INFO] [bundle] APP4MC Amalthea Converters to 0.9.0 ....... SUCCESS [  0.258 s]
+[INFO] [bundle] APP4MC Amalthea Converters to 0.9.1 ....... SUCCESS [  0.221 s]
+[INFO] [bundle] APP4MC Amalthea Converters to 0.9.2 ....... SUCCESS [  0.171 s]
+[INFO] [bundle] APP4MC Amalthea Converters to 0.9.3 ....... SUCCESS [  0.306 s]
+[INFO] [bundle] APP4MC Amalthea Converters to 0.9.4 ....... SUCCESS [  0.257 s]
+[INFO] [bundle] APP4MC Amalthea Converters to 0.9.5 ....... SUCCESS [  0.187 s]
+[INFO] [bundle] APP4MC Amalthea Converters to 0.9.6 ....... SUCCESS [  0.178 s]
+[INFO] [bundle] APP4MC Amalthea Converters to 0.9.7 ....... SUCCESS [  0.198 s]
+[INFO] [bundle] APP4MC Amalthea Converters to 1.0.0 ....... SUCCESS [  0.179 s]
+[INFO] [bundle] APP4MC Amalthea Converters Headless App ... SUCCESS [  0.244 s]
+[INFO] org.eclipse.app4mc.amalthea.converters.help ........ SUCCESS [  0.845 s]
+[INFO] [bundle] APP4MC Amalthea Converters UI ............. SUCCESS [  0.432 s]
+[INFO] [aggregator] tests ................................. SUCCESS [  0.002 s]
+[INFO] [test-bundle] APP4MC Amalthea Converters Common Tests SUCCESS [  2.519 s]
+[INFO] [test-bundle] APP4MC Amalthea Converters to 0.7.1 - Tests SUCCESS [  2.949 s]
+[INFO] [test-bundle] APP4MC Amalthea Converters to 0.7.2 - Tests SUCCESS [  3.298 s]
+[INFO] [test-bundle] APP4MC Amalthea Converters to 0.8.0 - Tests SUCCESS [  3.044 s]
+[INFO] [test-bundle] APP4MC Amalthea Converters to 0.8.1 - Tests SUCCESS [  2.967 s]
+[INFO] [test-bundle] APP4MC Amalthea Converters to 0.8.2 - Tests SUCCESS [  2.301 s]
+[INFO] [test-bundle] APP4MC Amalthea Converters to 0.8.3 - Tests SUCCESS [  2.750 s]
+[INFO] [test-bundle] APP4MC Amalthea Converters to 0.9.0 - Tests SUCCESS [  2.513 s]
+[INFO] [test-bundle] APP4MC Amalthea Converters to 0.9.1 - Tests SUCCESS [  2.400 s]
+[INFO] [test-bundle] APP4MC Amalthea Converters to 0.9.2 - Tests SUCCESS [  2.729 s]
+[INFO] [test-bundle] APP4MC Amalthea Converters to 0.9.3 - Tests SUCCESS [  2.626 s]
+[INFO] [test-bundle] APP4MC Amalthea Converters to 0.9.4 - Tests SUCCESS [  2.521 s]
+[INFO] [test-bundle] APP4MC Amalthea Converters to 0.9.5 - Tests SUCCESS [  2.510 s]
+[INFO] [test-bundle] APP4MC Amalthea Converters to 0.9.6 - Tests SUCCESS [  2.473 s]
+[INFO] [test-bundle] APP4MC Amalthea Converters to 0.9.7 - Tests SUCCESS [  2.644 s]
+[INFO] [test-bundle] APP4MC Amalthea Converters to 1.0.0 - Tests SUCCESS [  2.338 s]
+[INFO] [aggregator] features .............................. SUCCESS [  0.002 s]
+[INFO] [feature] APP4MC AMALTHEA Headless Converters ...... SUCCESS [  0.212 s]
+[INFO] [feature] APP4MC AMALTHEA Converters ............... SUCCESS [  0.090 s]
+[INFO] [feature] APP4MC AMALTHEA Headless Converters Runtime SUCCESS [  0.106 s]
+[INFO] [feature] APP4MC AMALTHEA Converters SDK ........... SUCCESS [  0.191 s]
+[INFO] org.eclipse.app4mc.converters.p2repo ............... SUCCESS [  5.898 s]
+[INFO] headless ........................................... SUCCESS [ 12.270 s]
+[INFO] [aggregator] releng ................................ SUCCESS [  0.003 s]
+[INFO] [target] Amalthea Model Migration Target ........... SUCCESS [  0.003 s]
+[INFO] ------------------------------------------------------------------------
+[INFO] BUILD SUCCESS
+[INFO] ------------------------------------------------------------------------
+[INFO] Total time:  01:32 min
+[INFO] Finished at: 2021-04-22T08:27:35+02:00
+[INFO] ------------------------------------------------------------------------
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.071/META-INF/MANIFEST.MF b/plugins/org.eclipse.app4mc.amalthea.converters.071/META-INF/MANIFEST.MF
index 54d7781..93631ef 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.071/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.071/META-INF/MANIFEST.MF
@@ -9,9 +9,9 @@
  org.eclipse.app4mc.amalthea.converters.common.base,

  org.eclipse.app4mc.amalthea.converters.common.converter,

  org.eclipse.app4mc.amalthea.converters.common.utils,

+ org.eclipse.app4mc.util.sessionlog;version="1.1.0",

  org.jdom2;version="2.0.6",

- org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional,

- org.slf4j;version="1.7.2"

+ org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional

 Automatic-Module-Name: org.eclipse.app4mc.amalthea.converters.071

 Bundle-ActivationPolicy: lazy

 Service-Component: OSGI-INF/org.eclipse.app4mc.amalthea.converters071.impl.ConstraintsConverter.xml,

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.071/OSGI-INF/org.eclipse.app4mc.amalthea.converters071.impl.ConstraintsConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.071/OSGI-INF/org.eclipse.app4mc.amalthea.converters071.impl.ConstraintsConverter.xml
index 5b758be..d4e2181 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.071/OSGI-INF/org.eclipse.app4mc.amalthea.converters071.impl.ConstraintsConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.071/OSGI-INF/org.eclipse.app4mc.amalthea.converters071.impl.ConstraintsConverter.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters071.impl.ConstraintsConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters071.impl.ConstraintsConverter">
    <property name="input_model_version" value="0.7.0"/>
    <property name="output_model_version" value="0.7.1"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters071.impl.ConstraintsConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.071/OSGI-INF/org.eclipse.app4mc.amalthea.converters071.impl.HwConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.071/OSGI-INF/org.eclipse.app4mc.amalthea.converters071.impl.HwConverter.xml
index 2c930fe..b96e151 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.071/OSGI-INF/org.eclipse.app4mc.amalthea.converters071.impl.HwConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.071/OSGI-INF/org.eclipse.app4mc.amalthea.converters071.impl.HwConverter.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters071.impl.HwConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters071.impl.HwConverter">
    <property name="input_model_version" value="0.7.0"/>
    <property name="output_model_version" value="0.7.1"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters071.impl.HwConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.071/OSGI-INF/org.eclipse.app4mc.amalthea.converters071.impl.PropertyConstraintsConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.071/OSGI-INF/org.eclipse.app4mc.amalthea.converters071.impl.PropertyConstraintsConverter.xml
index 26042be..e9c6529 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.071/OSGI-INF/org.eclipse.app4mc.amalthea.converters071.impl.PropertyConstraintsConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.071/OSGI-INF/org.eclipse.app4mc.amalthea.converters071.impl.PropertyConstraintsConverter.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters071.impl.PropertyConstraintsConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters071.impl.PropertyConstraintsConverter">
    <property name="input_model_version" value="0.7.0"/>
    <property name="output_model_version" value="0.7.1"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters071.impl.PropertyConstraintsConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.071/OSGI-INF/org.eclipse.app4mc.amalthea.converters071.impl.RootElementConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.071/OSGI-INF/org.eclipse.app4mc.amalthea.converters071.impl.RootElementConverter.xml
index 13e63ca..e0415fe 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.071/OSGI-INF/org.eclipse.app4mc.amalthea.converters071.impl.RootElementConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.071/OSGI-INF/org.eclipse.app4mc.amalthea.converters071.impl.RootElementConverter.xml
@@ -1,10 +1,11 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters071.impl.RootElementConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters071.impl.RootElementConverter">
    <property name="input_model_version" value="0.7.0"/>
    <property name="output_model_version" value="0.7.1"/>
    <property name="service.ranking" type="Integer" value="100"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters071.impl.RootElementConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.071/OSGI-INF/org.eclipse.app4mc.amalthea.converters071.impl.SwConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.071/OSGI-INF/org.eclipse.app4mc.amalthea.converters071.impl.SwConverter.xml
index 8362389..aea08d0 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.071/OSGI-INF/org.eclipse.app4mc.amalthea.converters071.impl.SwConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.071/OSGI-INF/org.eclipse.app4mc.amalthea.converters071.impl.SwConverter.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters071.impl.SwConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters071.impl.SwConverter">
    <property name="input_model_version" value="0.7.0"/>
    <property name="output_model_version" value="0.7.1"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters071.impl.SwConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.071/OSGI-INF/org.eclipse.app4mc.amalthea.converters071.utils.SectionRunnableLabelCacheBuilder.xml b/plugins/org.eclipse.app4mc.amalthea.converters.071/OSGI-INF/org.eclipse.app4mc.amalthea.converters071.utils.SectionRunnableLabelCacheBuilder.xml
index 65f5f2e..38524cc 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.071/OSGI-INF/org.eclipse.app4mc.amalthea.converters071.utils.SectionRunnableLabelCacheBuilder.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.071/OSGI-INF/org.eclipse.app4mc.amalthea.converters071.utils.SectionRunnableLabelCacheBuilder.xml
@@ -1,8 +1,9 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" name="org.eclipse.app4mc.amalthea.converters071.utils.SectionRunnableLabelCacheBuilder">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" name="org.eclipse.app4mc.amalthea.converters071.utils.SectionRunnableLabelCacheBuilder">
    <property name="input_model_version" value="0.7.0"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.ICache"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters071.utils.SectionRunnableLabelCacheBuilder"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.071/src/org/eclipse/app4mc/amalthea/converters071/impl/ConstraintsConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.071/src/org/eclipse/app4mc/amalthea/converters071/impl/ConstraintsConverter.java
index 2c84d12..36ddcfa 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.071/src/org/eclipse/app4mc/amalthea/converters071/impl/ConstraintsConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.071/src/org/eclipse/app4mc/amalthea/converters071/impl/ConstraintsConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2015-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2015-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -29,13 +29,13 @@
 import org.eclipse.app4mc.amalthea.converters.common.utils.AmaltheaNamespaceRegistry;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

 import org.eclipse.app4mc.amalthea.converters.common.utils.ModelVersion;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Attribute;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 @Component(

 		property = {

@@ -48,7 +48,9 @@
 	private static final String AMLT_PREFIX = "amlt:/#";

 	private static final String AM = "am";

 	private static final String XSI = "xsi";

-	private static final Logger LOGGER = LoggerFactory.getLogger(ConstraintsConverter.class);

+

+	@Reference

+	SessionLogger logger;

 

 	@Override

 	@Activate

@@ -59,7 +61,7 @@
 	@Override

 	public void convert(File targetFile, Map<File, Document> fileName2documentMap, List<ICache> caches) {

 

-		LOGGER.info("Migration from 0.7.0 to 0.7.1 : Executing Constraints converter for model file : {}",

+		logger.info("Migration from 0.7.0 to 0.7.1 : Executing Constraints converter for model file : {0}",

 				targetFile.getName());

 

 		final Document root = fileName2documentMap.get(targetFile);

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.071/src/org/eclipse/app4mc/amalthea/converters071/impl/HwConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.071/src/org/eclipse/app4mc/amalthea/converters071/impl/HwConverter.java
index 5a6783a..56090d7 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.071/src/org/eclipse/app4mc/amalthea/converters071/impl/HwConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.071/src/org/eclipse/app4mc/amalthea/converters071/impl/HwConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2015-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2015-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -24,12 +24,12 @@
 import org.eclipse.app4mc.amalthea.converters.common.base.IConverter;

 import org.eclipse.app4mc.amalthea.converters.common.converter.AbstractConverter;

 import org.eclipse.app4mc.amalthea.converters071.utils.HelperUtils_070_071;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 @Component(

 		property = {

@@ -39,7 +39,8 @@
 

 public class HwConverter extends AbstractConverter {

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(HwConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	@Override

 	@Activate

@@ -50,8 +51,7 @@
 	@Override

 	public void convert(File targetFile, Map<File, Document> filename2documentMap, List<ICache> caches) {

 

-		LOGGER.info("Migration from 0.7.0 to 0.7.1 : Executing Hw converter for model file : {}",

-				targetFile.getName());

+		logger.info("Migration from 0.7.0 to 0.7.1 : Executing Hw converter for model file : {0}", targetFile.getName());

 

 		final Document root = filename2documentMap.get(targetFile);

 

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.071/src/org/eclipse/app4mc/amalthea/converters071/impl/PropertyConstraintsConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.071/src/org/eclipse/app4mc/amalthea/converters071/impl/PropertyConstraintsConverter.java
index 1b05bec..f3aa47b 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.071/src/org/eclipse/app4mc/amalthea/converters071/impl/PropertyConstraintsConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.071/src/org/eclipse/app4mc/amalthea/converters071/impl/PropertyConstraintsConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2015-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2015-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -24,12 +24,12 @@
 import org.eclipse.app4mc.amalthea.converters.common.base.IConverter;

 import org.eclipse.app4mc.amalthea.converters.common.converter.AbstractConverter;

 import org.eclipse.app4mc.amalthea.converters071.utils.HelperUtils_070_071;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 @Component(

 		property = {

@@ -39,7 +39,8 @@
 

 public class PropertyConstraintsConverter extends AbstractConverter {

 

-	public static final Logger LOGGER = LoggerFactory.getLogger(PropertyConstraintsConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	@Override

 	@Activate

@@ -50,7 +51,7 @@
 	@Override

 	public void convert(File targetFile, Map<File, Document> filename2documentMap, List<ICache> caches) {

 

-		LOGGER.info("Migration from 0.7.0 to 0.7.1 : Executing PropertyConstraints converter for model file : {}",

+		logger.info("Migration from 0.7.0 to 0.7.1 : Executing PropertyConstraints converter for model file : {0}",

 				targetFile.getName());

 

 		final Document root = filename2documentMap.get(targetFile);

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.071/src/org/eclipse/app4mc/amalthea/converters071/impl/RootElementConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.071/src/org/eclipse/app4mc/amalthea/converters071/impl/RootElementConverter.java
index 6127c7e..fac2009 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.071/src/org/eclipse/app4mc/amalthea/converters071/impl/RootElementConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.071/src/org/eclipse/app4mc/amalthea/converters071/impl/RootElementConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2015-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2015-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -24,12 +24,12 @@
 import org.eclipse.app4mc.amalthea.converters.common.base.IConverter;

 import org.eclipse.app4mc.amalthea.converters.common.converter.AbstractConverter;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 /**

  * This class is responsible for converting the root element of the model file as : "Amalthea" (only if for the supplied

@@ -47,7 +47,8 @@
 

 public class RootElementConverter extends AbstractConverter {

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(RootElementConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	@Override

 	@Activate

@@ -76,7 +77,7 @@
 		  </am:Amalthea>

 		 */

 

-		LOGGER.info("Migration from 0.7.0 to 0.7.1 : Executing Root Element Converter for model file : {}",

+		logger.info("Migration from 0.7.0 to 0.7.1 : Executing Root Element Converter for model file : {0}",

 				targetFile.getName());

 

 		final Document document = filename2documentMap.get(targetFile);

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.071/src/org/eclipse/app4mc/amalthea/converters071/impl/SwConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.071/src/org/eclipse/app4mc/amalthea/converters071/impl/SwConverter.java
index c43c66e..8f46a77 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.071/src/org/eclipse/app4mc/amalthea/converters071/impl/SwConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.071/src/org/eclipse/app4mc/amalthea/converters071/impl/SwConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2015-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2015-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -34,13 +34,13 @@
 import org.eclipse.app4mc.amalthea.converters.common.utils.ModelVersion;

 import org.eclipse.app4mc.amalthea.converters071.utils.SectionRunnableLabelCacheBuilder;

 import org.eclipse.app4mc.amalthea.converters071.utils.SectionRunnableLabelCacheEnum;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Attribute;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 @Component(

 		property = {

@@ -57,7 +57,8 @@
 	private static final String VALUE = "value";

 	private static final String AMLT_PREFIX = "amlt:/#";

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(SwConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	protected SectionRunnableLabelCacheBuilder cache;

 

@@ -74,8 +75,8 @@
 	@Override

 	public void convert(File targetFile, Map<File, Document> fileDocumentMapping, List<ICache> caches) {

 

-		LOGGER.info(

-				"Migration from 0.7.0 to 0.7.1 : Executing Sw converter for model file : {}", targetFile.getName());

+		logger.info(

+				"Migration from 0.7.0 to 0.7.1 : Executing Sw converter for model file : {0}", targetFile.getName());

 

 		this.cache = getSectionRunnableLabelCacheBuilder(caches);

 		if (this.cache == null) {

@@ -351,7 +352,7 @@
 				}

 

 				if (sections.size() > 1) {

-					LOGGER.warn("MemoryElement : {} is associated to multiple sections: {}. \n"

+					logger.warn("MemoryElement : {0} is associated to multiple sections: {1}. \n"

 							+ "As per AMALTHEA 0.7.1 it is allowed to be part of one Section only.", memoryElementName, sections.toArray());

 				}

 			}

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.071/src/org/eclipse/app4mc/amalthea/converters071/utils/SectionRunnableLabelCacheBuilder.java b/plugins/org.eclipse.app4mc.amalthea.converters.071/src/org/eclipse/app4mc/amalthea/converters071/utils/SectionRunnableLabelCacheBuilder.java
index 31de084..9f268f0 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.071/src/org/eclipse/app4mc/amalthea/converters071/utils/SectionRunnableLabelCacheBuilder.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.071/src/org/eclipse/app4mc/amalthea/converters071/utils/SectionRunnableLabelCacheBuilder.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2015-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2015-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -28,26 +28,29 @@
 import org.eclipse.app4mc.amalthea.converters.common.utils.AmaltheaNamespaceRegistry;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

 import org.eclipse.app4mc.amalthea.converters.common.utils.ModelVersion;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Attribute;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 @Component(

 		property = ServiceConstants.INPUT_MODEL_VERSION_PROPERTY + "=0.7.0")

 

 public class SectionRunnableLabelCacheBuilder implements ICache {

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(SectionRunnableLabelCacheBuilder.class);

+	@Reference

+	SessionLogger logger;

 

 	private final HashMap<File, Map<String, Object>> map = new HashMap<>();

 

 	@Override

 	public void buildCache(final Map<File, Document> fileDocumentMapping) {

 

-		LOGGER.info("Build up SectionRunnableLabelCache for 0.7.0");

+		if (logger != null) {

+			logger.info("Build up SectionRunnableLabelCache for 0.7.0");

+		}

 

 		for (Entry<File, Document> entry : fileDocumentMapping.entrySet()) {

 			final File targetFile = entry.getKey();

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.072/META-INF/MANIFEST.MF b/plugins/org.eclipse.app4mc.amalthea.converters.072/META-INF/MANIFEST.MF
index 5e4b414..81a0d45 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.072/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.072/META-INF/MANIFEST.MF
@@ -10,9 +10,9 @@
  org.eclipse.app4mc.amalthea.converters.common.base,

  org.eclipse.app4mc.amalthea.converters.common.converter,

  org.eclipse.app4mc.amalthea.converters.common.utils,

+ org.eclipse.app4mc.util.sessionlog;version="1.1.0",

  org.jdom2;version="2.0.6",

- org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional,

- org.slf4j

+ org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional

 Bundle-ActivationPolicy: lazy

 Service-Component: OSGI-INF/org.eclipse.app4mc.amalthea.converters072.impl.ConfigConverter.xml,

  OSGI-INF/org.eclipse.app4mc.amalthea.converters072.impl.SwConverter.xml,

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.072/OSGI-INF/org.eclipse.app4mc.amalthea.converters072.impl.CommonElementsConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.072/OSGI-INF/org.eclipse.app4mc.amalthea.converters072.impl.CommonElementsConverter.xml
index 4061fc5..ebdb2cc 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.072/OSGI-INF/org.eclipse.app4mc.amalthea.converters072.impl.CommonElementsConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.072/OSGI-INF/org.eclipse.app4mc.amalthea.converters072.impl.CommonElementsConverter.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters072.impl.CommonElementsConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters072.impl.CommonElementsConverter">
    <property name="input_model_version" value="0.7.1"/>
    <property name="output_model_version" value="0.7.2"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters072.impl.CommonElementsConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.072/OSGI-INF/org.eclipse.app4mc.amalthea.converters072.impl.ConfigConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.072/OSGI-INF/org.eclipse.app4mc.amalthea.converters072.impl.ConfigConverter.xml
index cd7268f..5d3aae6 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.072/OSGI-INF/org.eclipse.app4mc.amalthea.converters072.impl.ConfigConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.072/OSGI-INF/org.eclipse.app4mc.amalthea.converters072.impl.ConfigConverter.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters072.impl.ConfigConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters072.impl.ConfigConverter">
    <property name="input_model_version" value="0.7.1"/>
    <property name="output_model_version" value="0.7.2"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters072.impl.ConfigConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.072/OSGI-INF/org.eclipse.app4mc.amalthea.converters072.impl.ConstraintsConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.072/OSGI-INF/org.eclipse.app4mc.amalthea.converters072.impl.ConstraintsConverter.xml
index 4f1c059..75c993b 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.072/OSGI-INF/org.eclipse.app4mc.amalthea.converters072.impl.ConstraintsConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.072/OSGI-INF/org.eclipse.app4mc.amalthea.converters072.impl.ConstraintsConverter.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters072.impl.ConstraintsConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters072.impl.ConstraintsConverter">
    <property name="input_model_version" value="0.7.1"/>
    <property name="output_model_version" value="0.7.2"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters072.impl.ConstraintsConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.072/OSGI-INF/org.eclipse.app4mc.amalthea.converters072.impl.OSConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.072/OSGI-INF/org.eclipse.app4mc.amalthea.converters072.impl.OSConverter.xml
index 57d64c6..ca195a6 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.072/OSGI-INF/org.eclipse.app4mc.amalthea.converters072.impl.OSConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.072/OSGI-INF/org.eclipse.app4mc.amalthea.converters072.impl.OSConverter.xml
@@ -1,10 +1,11 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters072.impl.OSConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters072.impl.OSConverter">
    <property name="input_model_version" value="0.7.1"/>
    <property name="output_model_version" value="0.7.2"/>
    <property name="service.ranking" type="Integer" value="90"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters072.impl.OSConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.072/OSGI-INF/org.eclipse.app4mc.amalthea.converters072.impl.PropertyConstraintsConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.072/OSGI-INF/org.eclipse.app4mc.amalthea.converters072.impl.PropertyConstraintsConverter.xml
index 02e8259..9fa216d 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.072/OSGI-INF/org.eclipse.app4mc.amalthea.converters072.impl.PropertyConstraintsConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.072/OSGI-INF/org.eclipse.app4mc.amalthea.converters072.impl.PropertyConstraintsConverter.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters072.impl.PropertyConstraintsConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters072.impl.PropertyConstraintsConverter">
    <property name="input_model_version" value="0.7.1"/>
    <property name="output_model_version" value="0.7.2"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters072.impl.PropertyConstraintsConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.072/OSGI-INF/org.eclipse.app4mc.amalthea.converters072.impl.RootElementConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.072/OSGI-INF/org.eclipse.app4mc.amalthea.converters072.impl.RootElementConverter.xml
index 3806e01..bd4dbd4 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.072/OSGI-INF/org.eclipse.app4mc.amalthea.converters072.impl.RootElementConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.072/OSGI-INF/org.eclipse.app4mc.amalthea.converters072.impl.RootElementConverter.xml
@@ -1,10 +1,11 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters072.impl.RootElementConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters072.impl.RootElementConverter">
    <property name="input_model_version" value="0.7.1"/>
    <property name="output_model_version" value="0.7.2"/>
    <property name="service.ranking" type="Integer" value="100"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters072.impl.RootElementConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.072/OSGI-INF/org.eclipse.app4mc.amalthea.converters072.impl.StimuliConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.072/OSGI-INF/org.eclipse.app4mc.amalthea.converters072.impl.StimuliConverter.xml
index 3ea4ac7..896581f 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.072/OSGI-INF/org.eclipse.app4mc.amalthea.converters072.impl.StimuliConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.072/OSGI-INF/org.eclipse.app4mc.amalthea.converters072.impl.StimuliConverter.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters072.impl.StimuliConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters072.impl.StimuliConverter">
    <property name="input_model_version" value="0.7.1"/>
    <property name="output_model_version" value="0.7.2"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters072.impl.StimuliConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.072/OSGI-INF/org.eclipse.app4mc.amalthea.converters072.impl.SwConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.072/OSGI-INF/org.eclipse.app4mc.amalthea.converters072.impl.SwConverter.xml
index 4e35f91..4407da5 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.072/OSGI-INF/org.eclipse.app4mc.amalthea.converters072.impl.SwConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.072/OSGI-INF/org.eclipse.app4mc.amalthea.converters072.impl.SwConverter.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters072.impl.SwConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters072.impl.SwConverter">
    <property name="input_model_version" value="0.7.1"/>
    <property name="output_model_version" value="0.7.2"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters072.impl.SwConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.072/OSGI-INF/org.eclipse.app4mc.amalthea.converters072.utils.HwElementsCacheBuilder.xml b/plugins/org.eclipse.app4mc.amalthea.converters.072/OSGI-INF/org.eclipse.app4mc.amalthea.converters072.utils.HwElementsCacheBuilder.xml
index caaa316..54f66bc 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.072/OSGI-INF/org.eclipse.app4mc.amalthea.converters072.utils.HwElementsCacheBuilder.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.072/OSGI-INF/org.eclipse.app4mc.amalthea.converters072.utils.HwElementsCacheBuilder.xml
@@ -1,8 +1,9 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" name="org.eclipse.app4mc.amalthea.converters072.utils.HwElementsCacheBuilder">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" name="org.eclipse.app4mc.amalthea.converters072.utils.HwElementsCacheBuilder">
    <property name="input_model_version" value="0.7.1"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.ICache"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters072.utils.HwElementsCacheBuilder"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.072/src/org/eclipse/app4mc/amalthea/converters072/impl/CommonElementsConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.072/src/org/eclipse/app4mc/amalthea/converters072/impl/CommonElementsConverter.java
index a773af5..1cc9b5c 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.072/src/org/eclipse/app4mc/amalthea/converters072/impl/CommonElementsConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.072/src/org/eclipse/app4mc/amalthea/converters072/impl/CommonElementsConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2017-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2017-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -25,12 +25,12 @@
 import org.eclipse.app4mc.amalthea.converters.common.converter.AbstractConverter;

 import org.eclipse.app4mc.amalthea.converters.common.utils.AmaltheaNamespaceRegistry;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 @Component(

 		property = {

@@ -40,7 +40,8 @@
 

 public class CommonElementsConverter extends AbstractConverter {

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(CommonElementsConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	@Override

 	@Activate

@@ -51,7 +52,7 @@
 	@Override

 	public void convert(File targetFile, Map<File, Document> fileName2documentMap, List<ICache> caches) {

 

-		LOGGER.info("Migration from 0.7.1 to 0.7.2 : Executing Common Elements converter for model file : {}",

+		logger.info("Migration from 0.7.1 to 0.7.2 : Executing Common Elements converter for model file : {0}",

 				targetFile.getName());

 

 		final Document root = fileName2documentMap.get(targetFile);

@@ -86,7 +87,7 @@
 

 		if (!tagElements.isEmpty()) {

 

-			LOGGER.warn(

+			logger.warn(

 					"Tag element's from Components Model, HW Model, SW Model are shifted to CommonElements model");

 

 			Element commonElements = rootElement.getChild("commonElements");

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.072/src/org/eclipse/app4mc/amalthea/converters072/impl/ConfigConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.072/src/org/eclipse/app4mc/amalthea/converters072/impl/ConfigConverter.java
index e9c258c..c1ed4a9 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.072/src/org/eclipse/app4mc/amalthea/converters072/impl/ConfigConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.072/src/org/eclipse/app4mc/amalthea/converters072/impl/ConfigConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2017-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2017-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -25,12 +25,12 @@
 import org.eclipse.app4mc.amalthea.converters.common.converter.AbstractConverter;

 import org.eclipse.app4mc.amalthea.converters.common.utils.AmaltheaNamespaceRegistry;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 @Component(

 		property = {

@@ -40,7 +40,8 @@
 

 public class ConfigConverter extends AbstractConverter {

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(ConfigConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	@Override

 	@Activate

@@ -51,7 +52,7 @@
 	@Override

 	public void convert(File targetFile, Map<File, Document> fileName2documentMap, List<ICache> caches) {

 

-		LOGGER.info("Migration from 0.7.1 to 0.7.2 : Executing Config Model converter for model file : {}",

+		logger.info("Migration from 0.7.1 to 0.7.2 : Executing Config Model converter for model file : {0}",

 				targetFile.getName());

 

 		final Document root = fileName2documentMap.get(targetFile);

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.072/src/org/eclipse/app4mc/amalthea/converters072/impl/ConstraintsConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.072/src/org/eclipse/app4mc/amalthea/converters072/impl/ConstraintsConverter.java
index af0f996..b028b95 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.072/src/org/eclipse/app4mc/amalthea/converters072/impl/ConstraintsConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.072/src/org/eclipse/app4mc/amalthea/converters072/impl/ConstraintsConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2015-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2015-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -25,12 +25,12 @@
 import org.eclipse.app4mc.amalthea.converters.common.converter.AbstractConverter;

 import org.eclipse.app4mc.amalthea.converters.common.utils.AmaltheaNamespaceRegistry;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 @Component(

 		property = {

@@ -40,7 +40,8 @@
 

 public class ConstraintsConverter extends AbstractConverter {

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(ConstraintsConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	@Override

 	@Activate

@@ -51,7 +52,7 @@
 	@Override

 	public void convert(File targetFile, Map<File, Document> fileName2documentMap, List<ICache> caches) {

 

-		LOGGER.info("Migration from 0.7.1 to 0.7.2 : Executing Constraints converter for model file : {}",

+		logger.info("Migration from 0.7.1 to 0.7.2 : Executing Constraints converter for model file : {0}",

 				targetFile.getName());

 

 		final Document root = fileName2documentMap.get(targetFile);

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.072/src/org/eclipse/app4mc/amalthea/converters072/impl/OSConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.072/src/org/eclipse/app4mc/amalthea/converters072/impl/OSConverter.java
index b5d98d9..f551dd4 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.072/src/org/eclipse/app4mc/amalthea/converters072/impl/OSConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.072/src/org/eclipse/app4mc/amalthea/converters072/impl/OSConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2015-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2015-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -25,14 +25,14 @@
 import org.eclipse.app4mc.amalthea.converters.common.converter.AbstractConverter;

 import org.eclipse.app4mc.amalthea.converters.common.utils.AmaltheaNamespaceRegistry;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Attribute;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.jdom2.Parent;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 @Component(

 		property = {

@@ -43,7 +43,8 @@
 

 public class OSConverter extends AbstractConverter {

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(OSConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	@Override

 	@Activate

@@ -54,8 +55,8 @@
 	@Override

 	public void convert(File targetFile, Map<File, Document> filename2documentMap, List<ICache> caches) {

 

-		LOGGER.info(

-				"Migration from 0.7.1 to 0.7.2 : Executing OS converter for model file : {}", targetFile.getName());

+		logger.info(

+				"Migration from 0.7.1 to 0.7.2 : Executing OS converter for model file : {0}", targetFile.getName());

 

 		final Document root = filename2documentMap.get(targetFile);

 

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.072/src/org/eclipse/app4mc/amalthea/converters072/impl/PropertyConstraintsConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.072/src/org/eclipse/app4mc/amalthea/converters072/impl/PropertyConstraintsConverter.java
index fa1301d..7551cc3 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.072/src/org/eclipse/app4mc/amalthea/converters072/impl/PropertyConstraintsConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.072/src/org/eclipse/app4mc/amalthea/converters072/impl/PropertyConstraintsConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2015-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2015-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -35,13 +35,13 @@
 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

 import org.eclipse.app4mc.amalthea.converters072.utils.HwElementsCacheBuilder;

 import org.eclipse.app4mc.amalthea.converters072.utils.HwElementsCacheEnum;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Attribute;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 @Component(

 		property = {

@@ -56,7 +56,8 @@
 	private static final String NAME = "name";

 	private static final String SYSTEM = "system";

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(PropertyConstraintsConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	private HwElementsCacheBuilder cache;

 

@@ -72,7 +73,7 @@
 	@Override

 	public void convert(File targetFile, Map<File, Document> fileDocumentMapping, List<ICache> caches) {

 

-		LOGGER.info("Migration from 0.7.1 to 0.7.2 : Executing PropertyConstraints converter for model file : {}",

+		logger.info("Migration from 0.7.1 to 0.7.2 : Executing PropertyConstraints converter for model file : {0}",

 				targetFile.getName());

 

 		this.cache = getHwElementsCacheBuilder(caches);

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.072/src/org/eclipse/app4mc/amalthea/converters072/impl/RootElementConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.072/src/org/eclipse/app4mc/amalthea/converters072/impl/RootElementConverter.java
index 8c4aca0..6f82f12 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.072/src/org/eclipse/app4mc/amalthea/converters072/impl/RootElementConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.072/src/org/eclipse/app4mc/amalthea/converters072/impl/RootElementConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2015-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2015-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -24,12 +24,12 @@
 import org.eclipse.app4mc.amalthea.converters.common.base.IConverter;

 import org.eclipse.app4mc.amalthea.converters.common.converter.AbstractConverter;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 /**

  * This class is responsible for converting the root element of the model file as : "Amalthea" (only if for the supplied

@@ -47,7 +47,8 @@
 

 public class RootElementConverter extends AbstractConverter {

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(RootElementConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	@Override

 	@Activate

@@ -77,7 +78,7 @@
 		 */

 

 

-		LOGGER.info("Migration from 0.7.1 to 0.7.2 : Executing Root Element Converter for model file : {}",

+		logger.info("Migration from 0.7.1 to 0.7.2 : Executing Root Element Converter for model file : {0}",

 				targetFile.getName());

 

 		final Document document = filename2documentMap.get(targetFile);

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.072/src/org/eclipse/app4mc/amalthea/converters072/impl/StimuliConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.072/src/org/eclipse/app4mc/amalthea/converters072/impl/StimuliConverter.java
index ef45d95..739305f 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.072/src/org/eclipse/app4mc/amalthea/converters072/impl/StimuliConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.072/src/org/eclipse/app4mc/amalthea/converters072/impl/StimuliConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2015-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2015-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -25,12 +25,12 @@
 import org.eclipse.app4mc.amalthea.converters.common.converter.AbstractConverter;

 import org.eclipse.app4mc.amalthea.converters.common.utils.AmaltheaNamespaceRegistry;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 @Component(

 		property = {

@@ -40,7 +40,8 @@
 

 public class StimuliConverter extends AbstractConverter {

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(StimuliConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	@Override

 	@Activate

@@ -51,8 +52,8 @@
 	@Override

 	public void convert(File targetFile, Map<File, Document> filename2documentMap, List<ICache> caches) {

 

-		LOGGER.info(

-				"Migration from 0.7.1 to 0.7.2 : Executing Stimuli converter for model file : {}", targetFile.getName());

+		logger.info(

+				"Migration from 0.7.1 to 0.7.2 : Executing Stimuli converter for model file : {0}", targetFile.getName());

 

 		final Document root = filename2documentMap.get(targetFile);

 

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.072/src/org/eclipse/app4mc/amalthea/converters072/impl/SwConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.072/src/org/eclipse/app4mc/amalthea/converters072/impl/SwConverter.java
index c521214..16b92d1 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.072/src/org/eclipse/app4mc/amalthea/converters072/impl/SwConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.072/src/org/eclipse/app4mc/amalthea/converters072/impl/SwConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2015-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2015-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -26,13 +26,13 @@
 import org.eclipse.app4mc.amalthea.converters.common.converter.AbstractConverter;

 import org.eclipse.app4mc.amalthea.converters.common.utils.AmaltheaNamespaceRegistry;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Attribute;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 @Component(

 		property = {

@@ -42,7 +42,8 @@
 

 public class SwConverter extends AbstractConverter {

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(SwConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	@Override

 	@Activate

@@ -53,8 +54,8 @@
 	@Override

 	public void convert(File targetFile, Map<File, Document> filename2documentMap, List<ICache> caches) {

 

-		LOGGER.info(

-				"Migration from 0.7.1 to 0.7.2 : Executing SW converter for model file : {}", targetFile.getName());

+		logger.info(

+				"Migration from 0.7.1 to 0.7.2 : Executing SW converter for model file : {0}", targetFile.getName());

 

 

 		final Document root = filename2documentMap.get(targetFile);

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.072/src/org/eclipse/app4mc/amalthea/converters072/utils/HwElementsCacheBuilder.java b/plugins/org.eclipse.app4mc.amalthea.converters.072/src/org/eclipse/app4mc/amalthea/converters072/utils/HwElementsCacheBuilder.java
index c2776af..2328816 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.072/src/org/eclipse/app4mc/amalthea/converters072/utils/HwElementsCacheBuilder.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.072/src/org/eclipse/app4mc/amalthea/converters072/utils/HwElementsCacheBuilder.java
@@ -27,25 +27,28 @@
 import org.eclipse.app4mc.amalthea.converters.common.utils.AmaltheaNamespaceRegistry;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

 import org.eclipse.app4mc.amalthea.converters.common.utils.ModelVersion;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 @Component(

 		property = ServiceConstants.INPUT_MODEL_VERSION_PROPERTY + "=0.7.1")

 

 public class HwElementsCacheBuilder implements ICache {

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(HwElementsCacheBuilder.class);

+	@Reference

+	SessionLogger logger;

 

 	private final HashMap<File, Map<String, Object>> map = new HashMap<>();

 

 	@Override

 	public void buildCache(final Map<File, Document> fileDocumentMapping) {

 

-		LOGGER.info("Build up HwElementsCache for 0.7.1");

+		if (logger != null) {

+			logger.info("Build up HwElementsCache for 0.7.1");

+		}

 

 		for (Entry<File, Document> entry : fileDocumentMapping.entrySet()) {

 			File targetFile = entry.getKey();

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.080/META-INF/MANIFEST.MF b/plugins/org.eclipse.app4mc.amalthea.converters.080/META-INF/MANIFEST.MF
index 5a64e6a..2ef565d 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.080/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.080/META-INF/MANIFEST.MF
@@ -10,10 +10,10 @@
  org.eclipse.app4mc.amalthea.converters.common.base,

  org.eclipse.app4mc.amalthea.converters.common.converter,

  org.eclipse.app4mc.amalthea.converters.common.utils,

+ org.eclipse.app4mc.util.sessionlog;version="1.1.0",

  org.jdom2;version="2.0.6",

  org.jdom2.output;version="2.0.6",

- org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional,

- org.slf4j

+ org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional

 Bundle-ActivationPolicy: lazy

 Service-Component: OSGI-INF/org.eclipse.app4mc.amalthea.converters080.impl.PropertyConstraintsConverter.xml,

  OSGI-INF/org.eclipse.app4mc.amalthea.converters080.impl.MappingConverter.xml,

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.080/OSGI-INF/org.eclipse.app4mc.amalthea.converters080.impl.MappingConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.080/OSGI-INF/org.eclipse.app4mc.amalthea.converters080.impl.MappingConverter.xml
index 2ec3611..a53d381 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.080/OSGI-INF/org.eclipse.app4mc.amalthea.converters080.impl.MappingConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.080/OSGI-INF/org.eclipse.app4mc.amalthea.converters080.impl.MappingConverter.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters080.impl.MappingConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters080.impl.MappingConverter">
    <property name="input_model_version" value="0.7.2"/>
    <property name="output_model_version" value="0.8.0"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters080.impl.MappingConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.080/OSGI-INF/org.eclipse.app4mc.amalthea.converters080.impl.OSConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.080/OSGI-INF/org.eclipse.app4mc.amalthea.converters080.impl.OSConverter.xml
index 7c17e4f..fd6b9c3 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.080/OSGI-INF/org.eclipse.app4mc.amalthea.converters080.impl.OSConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.080/OSGI-INF/org.eclipse.app4mc.amalthea.converters080.impl.OSConverter.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters080.impl.OSConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters080.impl.OSConverter">
    <property name="input_model_version" value="0.7.2"/>
    <property name="output_model_version" value="0.8.0"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters080.impl.OSConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.080/OSGI-INF/org.eclipse.app4mc.amalthea.converters080.impl.PropertyConstraintsConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.080/OSGI-INF/org.eclipse.app4mc.amalthea.converters080.impl.PropertyConstraintsConverter.xml
index 2d22b28..ca7a38e 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.080/OSGI-INF/org.eclipse.app4mc.amalthea.converters080.impl.PropertyConstraintsConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.080/OSGI-INF/org.eclipse.app4mc.amalthea.converters080.impl.PropertyConstraintsConverter.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters080.impl.PropertyConstraintsConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters080.impl.PropertyConstraintsConverter">
    <property name="input_model_version" value="0.7.2"/>
    <property name="output_model_version" value="0.8.0"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters080.impl.PropertyConstraintsConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.080/OSGI-INF/org.eclipse.app4mc.amalthea.converters080.impl.RootElementConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.080/OSGI-INF/org.eclipse.app4mc.amalthea.converters080.impl.RootElementConverter.xml
index 76ff484..ecc68b9 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.080/OSGI-INF/org.eclipse.app4mc.amalthea.converters080.impl.RootElementConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.080/OSGI-INF/org.eclipse.app4mc.amalthea.converters080.impl.RootElementConverter.xml
@@ -1,10 +1,11 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters080.impl.RootElementConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters080.impl.RootElementConverter">
    <property name="input_model_version" value="0.7.2"/>
    <property name="output_model_version" value="0.8.0"/>
    <property name="service.ranking" type="Integer" value="100"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters080.impl.RootElementConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.080/OSGI-INF/org.eclipse.app4mc.amalthea.converters080.impl.StimuliConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.080/OSGI-INF/org.eclipse.app4mc.amalthea.converters080.impl.StimuliConverter.xml
index 4771427..57182ca 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.080/OSGI-INF/org.eclipse.app4mc.amalthea.converters080.impl.StimuliConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.080/OSGI-INF/org.eclipse.app4mc.amalthea.converters080.impl.StimuliConverter.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters080.impl.StimuliConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters080.impl.StimuliConverter">
    <property name="input_model_version" value="0.7.2"/>
    <property name="output_model_version" value="0.8.0"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters080.impl.StimuliConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.080/OSGI-INF/org.eclipse.app4mc.amalthea.converters080.impl.SwConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.080/OSGI-INF/org.eclipse.app4mc.amalthea.converters080.impl.SwConverter.xml
index bba2d3b..09c37c6 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.080/OSGI-INF/org.eclipse.app4mc.amalthea.converters080.impl.SwConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.080/OSGI-INF/org.eclipse.app4mc.amalthea.converters080.impl.SwConverter.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters080.impl.SwConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters080.impl.SwConverter">
    <property name="input_model_version" value="0.7.2"/>
    <property name="output_model_version" value="0.8.0"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters080.impl.SwConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.080/src/org/eclipse/app4mc/amalthea/converters080/impl/MappingConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.080/src/org/eclipse/app4mc/amalthea/converters080/impl/MappingConverter.java
index c80bf20..63f3316 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.080/src/org/eclipse/app4mc/amalthea/converters080/impl/MappingConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.080/src/org/eclipse/app4mc/amalthea/converters080/impl/MappingConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2015-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2015-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -25,12 +25,12 @@
 import org.eclipse.app4mc.amalthea.converters.common.converter.AbstractConverter;

 import org.eclipse.app4mc.amalthea.converters.common.utils.AmaltheaNamespaceRegistry;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 /**

  * This class is responsible for converting the Mapping Model elements from 0.7.2 to 0.8.0 version format of AMALTHEA

@@ -47,7 +47,8 @@
 

 public class MappingConverter extends AbstractConverter {

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(MappingConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	@Override

 	@Activate

@@ -58,8 +59,8 @@
 	@Override

 	public void convert(File targetFile, Map<File, Document> filename2documentMap, List<ICache> caches) {

 

-		LOGGER.info(

-				"Migration from 0.7.2 to 0.8.0 : Executing Mapping converter for model file : {}", targetFile.getName());

+		logger.info(

+				"Migration from 0.7.2 to 0.8.0 : Executing Mapping converter for model file : {0}", targetFile.getName());

 

 

 		final Document root = filename2documentMap.get(targetFile);

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.080/src/org/eclipse/app4mc/amalthea/converters080/impl/OSConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.080/src/org/eclipse/app4mc/amalthea/converters080/impl/OSConverter.java
index 2c4ddfc..785977b 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.080/src/org/eclipse/app4mc/amalthea/converters080/impl/OSConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.080/src/org/eclipse/app4mc/amalthea/converters080/impl/OSConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2015-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2015-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -25,12 +25,12 @@
 import org.eclipse.app4mc.amalthea.converters.common.converter.AbstractConverter;

 import org.eclipse.app4mc.amalthea.converters.common.utils.AmaltheaNamespaceRegistry;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 /**

  * This class is responsible for converting the OS Model elements from 0.7.2 to 0.8.0 version format of AMALTHEA model

@@ -46,7 +46,8 @@
 

 public class OSConverter extends AbstractConverter {

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(OSConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	@Override

 	@Activate

@@ -57,8 +58,8 @@
 	@Override

 	public void convert(File targetFile, Map<File, Document> filename2documentMap, List<ICache> caches) {

 

-		LOGGER.info(

-				"Migration from 0.7.2 to 0.8.0 : Executing OS converter for model file : {}", targetFile.getName());

+		logger.info(

+				"Migration from 0.7.2 to 0.8.0 : Executing OS converter for model file : {0}", targetFile.getName());

 

 

 		final Document root = filename2documentMap.get(targetFile);

@@ -109,7 +110,7 @@
 				operatingSystemElement.addContent(clone_osDataConsistencyElement);

 			}

 

-			LOGGER.warn(

+			logger.warn(

 					"OsDataConsistency element is removed from OsModel, and is added (cloned content) to each OperatingSystem element (which is part of corresponding OsModel).");

 

 			/*-As per change in 0.8.0 : OsDataConsistency element is removed from OsModel */

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.080/src/org/eclipse/app4mc/amalthea/converters080/impl/PropertyConstraintsConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.080/src/org/eclipse/app4mc/amalthea/converters080/impl/PropertyConstraintsConverter.java
index dfa65c1..1fec10a 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.080/src/org/eclipse/app4mc/amalthea/converters080/impl/PropertyConstraintsConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.080/src/org/eclipse/app4mc/amalthea/converters080/impl/PropertyConstraintsConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2015-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2015-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -25,13 +25,13 @@
 import org.eclipse.app4mc.amalthea.converters.common.converter.AbstractConverter;

 import org.eclipse.app4mc.amalthea.converters.common.utils.AmaltheaNamespaceRegistry;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.jdom2.output.XMLOutputter;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 /**

  * This class is responsible for converting the PropertyConstraints Model elements from 0.7.2 to 0.8.0 version format of

@@ -48,7 +48,8 @@
 

 public class PropertyConstraintsConverter extends AbstractConverter {

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(PropertyConstraintsConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	@Override

 	@Activate

@@ -59,8 +60,8 @@
 	@Override

 	public void convert(File targetFile, Map<File, Document> filename2documentMap, List<ICache> caches) {

 

-		LOGGER.info(

-				"Migration from 0.7.2 to 0.8.0 : Executing PropertyConstraints converter for model file : {}", targetFile.getName());

+		logger.info(

+				"Migration from 0.7.2 to 0.8.0 : Executing PropertyConstraints converter for model file : {0}", targetFile.getName());

 

 

 		final Document root = filename2documentMap.get(targetFile);

@@ -107,8 +108,6 @@
 

 			final String xmlString = xmlOutputter.outputString(hwConstraintElement);

 

-			LOGGER.trace(xmlString);

-

 			final Element parentElement = hwConstraintElement.getParentElement();

 

 			final Element customPropertyElement = new Element("customProperties");

@@ -123,7 +122,7 @@
 

 			parentElement.addContent(customPropertyElement);

 

-			LOGGER.warn("hwConstraint tag is removed from {}. Below is the content of hwConstraint object: \n{}", parentElement.getName(), xmlString);

+			logger.warn("hwConstraint tag is removed from {0}. Below is the content of hwConstraint object: \n{1}", parentElement.getName(), xmlString);

 

 			/*- removing HWConstraint model element -> as there is no equivalent of it in AMALTHEA 0.8.0 version */

 			parentElement.removeContent(hwConstraintElement);

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.080/src/org/eclipse/app4mc/amalthea/converters080/impl/RootElementConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.080/src/org/eclipse/app4mc/amalthea/converters080/impl/RootElementConverter.java
index 5e26901..e8fdb4c 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.080/src/org/eclipse/app4mc/amalthea/converters080/impl/RootElementConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.080/src/org/eclipse/app4mc/amalthea/converters080/impl/RootElementConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2015-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2015-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -24,12 +24,12 @@
 import org.eclipse.app4mc.amalthea.converters.common.base.IConverter;

 import org.eclipse.app4mc.amalthea.converters.common.converter.AbstractConverter;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 /**

  * This class is responsible for converting the root element of the model file as : "Amalthea" (only if for the supplied

@@ -47,7 +47,8 @@
 

 public class RootElementConverter extends AbstractConverter {

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(RootElementConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	@Override

 	@Activate

@@ -77,7 +78,7 @@
 		 */

 

 

-		LOGGER.info("Migration from 0.7.2 to 0.8.0 : Executing Root Element Converter for model file : {}",

+		logger.info("Migration from 0.7.2 to 0.8.0 : Executing Root Element Converter for model file : {0}",

 				targetFile.getName());

 

 		final Document document = filename2documentMap.get(targetFile);

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.080/src/org/eclipse/app4mc/amalthea/converters080/impl/StimuliConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.080/src/org/eclipse/app4mc/amalthea/converters080/impl/StimuliConverter.java
index 578ae53..370827f 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.080/src/org/eclipse/app4mc/amalthea/converters080/impl/StimuliConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.080/src/org/eclipse/app4mc/amalthea/converters080/impl/StimuliConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2015-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2015-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -25,13 +25,13 @@
 import org.eclipse.app4mc.amalthea.converters.common.converter.AbstractConverter;

 import org.eclipse.app4mc.amalthea.converters.common.utils.AmaltheaNamespaceRegistry;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Attribute;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 /**

  * This class is responsible for converting the Stimuli Model elements from 0.7.2 to 0.8.0 version format of AMALTHEA

@@ -48,7 +48,8 @@
 

 public class StimuliConverter extends AbstractConverter {

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(StimuliConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	@Override

 	@Activate

@@ -59,8 +60,8 @@
 	@Override

 	public void convert(File targetFile, Map<File, Document> filename2documentMap, List<ICache> caches) {

 

-		LOGGER.info(

-				"Migration from 0.7.2 to 0.8.0 : Executing Stimuli converter for model file : {}", targetFile.getName());

+		logger.info(

+				"Migration from 0.7.2 to 0.8.0 : Executing Stimuli converter for model file : {0}", targetFile.getName());

 

 		final Document root = filename2documentMap.get(targetFile);

 

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.080/src/org/eclipse/app4mc/amalthea/converters080/impl/SwConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.080/src/org/eclipse/app4mc/amalthea/converters080/impl/SwConverter.java
index 2b302e0..c58a968 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.080/src/org/eclipse/app4mc/amalthea/converters080/impl/SwConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.080/src/org/eclipse/app4mc/amalthea/converters080/impl/SwConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2015-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2015-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -25,13 +25,13 @@
 import org.eclipse.app4mc.amalthea.converters.common.converter.AbstractConverter;

 import org.eclipse.app4mc.amalthea.converters.common.utils.AmaltheaNamespaceRegistry;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Attribute;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 /**

  * This class is responsible for converting the SW Model elements from 0.7.2 to 0.8.0 version format of AMALTHEA model

@@ -47,7 +47,8 @@
 

 public class SwConverter extends AbstractConverter {

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(SwConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	@Override

 	@Activate

@@ -58,8 +59,8 @@
 	@Override

 	public void convert(File targetFile, Map<File, Document> filename2documentMap, List<ICache> caches) {

 

-		LOGGER.info(

-				"Migration from 0.7.2 to 0.8.0 : Executing SW converter for model file : {}", targetFile.getName());

+		logger.info(

+				"Migration from 0.7.2 to 0.8.0 : Executing SW converter for model file : {0}", targetFile.getName());

 

 		final Document root = filename2documentMap.get(targetFile);

 

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.081/META-INF/MANIFEST.MF b/plugins/org.eclipse.app4mc.amalthea.converters.081/META-INF/MANIFEST.MF
index cce8616..e150bc6 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.081/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.081/META-INF/MANIFEST.MF
@@ -10,9 +10,9 @@
  org.eclipse.app4mc.amalthea.converters.common.base,

  org.eclipse.app4mc.amalthea.converters.common.converter,

  org.eclipse.app4mc.amalthea.converters.common.utils,

+ org.eclipse.app4mc.util.sessionlog;version="1.1.0",

  org.jdom2;version="2.0.6",

- org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional,

- org.slf4j

+ org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional

 Bundle-ActivationPolicy: lazy

 Service-Component: OSGI-INF/org.eclipse.app4mc.amalthea.converters081.impl.RootElementConverter.xml,

  OSGI-INF/org.eclipse.app4mc.amalthea.converters081.impl.ConstraintsConverter.xml,

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.081/OSGI-INF/org.eclipse.app4mc.amalthea.converters081.impl.ConstraintsConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.081/OSGI-INF/org.eclipse.app4mc.amalthea.converters081.impl.ConstraintsConverter.xml
index 6c9d7d5..3bc8060 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.081/OSGI-INF/org.eclipse.app4mc.amalthea.converters081.impl.ConstraintsConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.081/OSGI-INF/org.eclipse.app4mc.amalthea.converters081.impl.ConstraintsConverter.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters081.impl.ConstraintsConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters081.impl.ConstraintsConverter">
    <property name="input_model_version" value="0.8.0"/>
    <property name="output_model_version" value="0.8.1"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters081.impl.ConstraintsConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.081/OSGI-INF/org.eclipse.app4mc.amalthea.converters081.impl.HwConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.081/OSGI-INF/org.eclipse.app4mc.amalthea.converters081.impl.HwConverter.xml
index 93a0d8d..0e7f320 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.081/OSGI-INF/org.eclipse.app4mc.amalthea.converters081.impl.HwConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.081/OSGI-INF/org.eclipse.app4mc.amalthea.converters081.impl.HwConverter.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters081.impl.HwConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters081.impl.HwConverter">
    <property name="input_model_version" value="0.8.0"/>
    <property name="output_model_version" value="0.8.1"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters081.impl.HwConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.081/OSGI-INF/org.eclipse.app4mc.amalthea.converters081.impl.MappingConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.081/OSGI-INF/org.eclipse.app4mc.amalthea.converters081.impl.MappingConverter.xml
index 9d19f4c..111156a 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.081/OSGI-INF/org.eclipse.app4mc.amalthea.converters081.impl.MappingConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.081/OSGI-INF/org.eclipse.app4mc.amalthea.converters081.impl.MappingConverter.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters081.impl.MappingConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters081.impl.MappingConverter">
    <property name="input_model_version" value="0.8.0"/>
    <property name="output_model_version" value="0.8.1"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters081.impl.MappingConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.081/OSGI-INF/org.eclipse.app4mc.amalthea.converters081.impl.OSConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.081/OSGI-INF/org.eclipse.app4mc.amalthea.converters081.impl.OSConverter.xml
index 3d04888..f809463 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.081/OSGI-INF/org.eclipse.app4mc.amalthea.converters081.impl.OSConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.081/OSGI-INF/org.eclipse.app4mc.amalthea.converters081.impl.OSConverter.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters081.impl.OSConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters081.impl.OSConverter">
    <property name="input_model_version" value="0.8.0"/>
    <property name="output_model_version" value="0.8.1"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters081.impl.OSConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.081/OSGI-INF/org.eclipse.app4mc.amalthea.converters081.impl.RootElementConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.081/OSGI-INF/org.eclipse.app4mc.amalthea.converters081.impl.RootElementConverter.xml
index 5052c03..ba86667 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.081/OSGI-INF/org.eclipse.app4mc.amalthea.converters081.impl.RootElementConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.081/OSGI-INF/org.eclipse.app4mc.amalthea.converters081.impl.RootElementConverter.xml
@@ -1,10 +1,11 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters081.impl.RootElementConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters081.impl.RootElementConverter">
    <property name="input_model_version" value="0.8.0"/>
    <property name="output_model_version" value="0.8.1"/>
    <property name="service.ranking" type="Integer" value="100"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters081.impl.RootElementConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.081/OSGI-INF/org.eclipse.app4mc.amalthea.converters081.impl.StimuliConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.081/OSGI-INF/org.eclipse.app4mc.amalthea.converters081.impl.StimuliConverter.xml
index 6cd41e1..73dd014 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.081/OSGI-INF/org.eclipse.app4mc.amalthea.converters081.impl.StimuliConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.081/OSGI-INF/org.eclipse.app4mc.amalthea.converters081.impl.StimuliConverter.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters081.impl.StimuliConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters081.impl.StimuliConverter">
    <property name="input_model_version" value="0.8.0"/>
    <property name="output_model_version" value="0.8.1"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters081.impl.StimuliConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.081/OSGI-INF/org.eclipse.app4mc.amalthea.converters081.impl.SwConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.081/OSGI-INF/org.eclipse.app4mc.amalthea.converters081.impl.SwConverter.xml
index bd19cba..320b0f6 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.081/OSGI-INF/org.eclipse.app4mc.amalthea.converters081.impl.SwConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.081/OSGI-INF/org.eclipse.app4mc.amalthea.converters081.impl.SwConverter.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters081.impl.SwConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters081.impl.SwConverter">
    <property name="input_model_version" value="0.8.0"/>
    <property name="output_model_version" value="0.8.1"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters081.impl.SwConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.081/OSGI-INF/org.eclipse.app4mc.amalthea.converters081.utils.ConstraintElementsCacheBuilder.xml b/plugins/org.eclipse.app4mc.amalthea.converters.081/OSGI-INF/org.eclipse.app4mc.amalthea.converters081.utils.ConstraintElementsCacheBuilder.xml
index f8ac99b..50ebec3 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.081/OSGI-INF/org.eclipse.app4mc.amalthea.converters081.utils.ConstraintElementsCacheBuilder.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.081/OSGI-INF/org.eclipse.app4mc.amalthea.converters081.utils.ConstraintElementsCacheBuilder.xml
@@ -1,8 +1,9 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" name="org.eclipse.app4mc.amalthea.converters081.utils.ConstraintElementsCacheBuilder">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" name="org.eclipse.app4mc.amalthea.converters081.utils.ConstraintElementsCacheBuilder">
    <property name="input_model_version" value="0.8.0"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.ICache"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters081.utils.ConstraintElementsCacheBuilder"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.081/src/org/eclipse/app4mc/amalthea/converters081/impl/ConstraintsConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.081/src/org/eclipse/app4mc/amalthea/converters081/impl/ConstraintsConverter.java
index 126aad1..c6082d0 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.081/src/org/eclipse/app4mc/amalthea/converters081/impl/ConstraintsConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.081/src/org/eclipse/app4mc/amalthea/converters081/impl/ConstraintsConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2015-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2015-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -30,13 +30,13 @@
 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

 import org.eclipse.app4mc.amalthea.converters081.utils.ConstraintElementsCacheBuilder;

 import org.eclipse.app4mc.amalthea.converters081.utils.ConstraintElementsCacheEnum;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Attribute;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 /**

  * This class is responsible for converting the Constraints Model elements from 0.8.0 to 0.8.1 version format of

@@ -61,7 +61,8 @@
 	private static final String SCOPE = "scope";

 	private static final String EVENT_CHAIN = "eventChain";

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(ConstraintsConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	private ConstraintElementsCacheBuilder cache;

 

@@ -74,7 +75,7 @@
 	@Override

 	public void convert(File targetFile, Map<File, Document> fileDocumentMapping, List<ICache> caches) {

 

-		LOGGER.info("Migration from 0.8.0 to 0.8.1 : Executing Constraints converter for model file : {}",

+		logger.info("Migration from 0.8.0 to 0.8.1 : Executing Constraints converter for model file : {0}",

 				targetFile.getName());

 

 		this.cache = getConstraintElementsCacheBuilder(caches);

@@ -343,9 +344,9 @@
 	private void logEventChainMessage_TimingConstraint(final Element timingConstraintElement,

 			final String refEventChainName) {

 

-		LOGGER.warn("Sub EventChain : {} is referred inside TimingConstraint as \"Scope\": {}. "

+		logger.warn("Sub EventChain : {0} is referred inside TimingConstraint as \"Scope\": {1}. "

 				+ "As per 0.8.1, it is not valid to refer sub EventChain elements directly.\n\r"

-				+ "EventChain {}'s association is removed from TimingConstraint object, and corresponding information is stored as a CustomProperty",

+				+ "EventChain {2}'s association is removed from TimingConstraint object, and corresponding information is stored as a CustomProperty",

 				HelperUtil.decodeName(refEventChainName),

 				timingConstraintElement.getAttributeValue("name"),

 				refEventChainName);

@@ -355,7 +356,7 @@
 			final Element eventChainReferenceElement, final String refEventChainString,

 			final String refEventChainName) {

 

-		LOGGER.warn("Sub EventChain : {} is referred inside EventChainReference of EventChain : {}."

+		logger.warn("Sub EventChain : {0} is referred inside EventChainReference of EventChain : {1}."

 				+ " As per 0.8.1, it is not valid to refer sub EventChain elements inside EventChainReference.\n\r"

 				+ " eventChain association is removed from EventChainReference object, and corresponding information is stored as a CustomProperty",

 				HelperUtil.decodeName(refEventChainName),

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.081/src/org/eclipse/app4mc/amalthea/converters081/impl/HwConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.081/src/org/eclipse/app4mc/amalthea/converters081/impl/HwConverter.java
index e2c25ed..0c5602d 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.081/src/org/eclipse/app4mc/amalthea/converters081/impl/HwConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.081/src/org/eclipse/app4mc/amalthea/converters081/impl/HwConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2015-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2015-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -25,14 +25,14 @@
 import org.eclipse.app4mc.amalthea.converters.common.converter.AbstractConverter;

 import org.eclipse.app4mc.amalthea.converters.common.utils.AmaltheaNamespaceRegistry;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Attribute;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.jdom2.Parent;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 /**

  * This class is responsible for converting the HW Model elements from 0.8.0 to 0.8.1 version format of AMALTHEA model

@@ -48,7 +48,8 @@
 

 public class HwConverter extends AbstractConverter {

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(HwConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	@Override

 	@Activate

@@ -59,7 +60,7 @@
 	@Override

 	public void convert(File targetFile, Map<File, Document> filename2documentMap, List<ICache> caches) {

 

-		LOGGER.info("Migration from 0.8.0 to 0.8.1 : Executing Hardware converter for model file : {}",

+		logger.info("Migration from 0.8.0 to 0.8.1 : Executing Hardware converter for model file : {0}",

 				targetFile.getName());

 

 		final Document root = filename2documentMap.get(targetFile);

@@ -125,34 +126,34 @@
 

 			String quartzName = nameAttribute != null ? nameAttribute.getValue() : "";

 

-			LOGGER.info("Moved Quartz element {} as a child element of HwSystem", quartzName);

+			logger.info("Moved Quartz element {0} as a child element of HwSystem", quartzName);

 

 			// removing sub-elements which are no longer valid as per 0.8.1

 			boolean removedComponents = quartzElement.removeChild("components");

 			if (removedComponents) {

-				LOGGER.warn("-- Removed all HwComponent objects defined inside Quartz : {}", quartzName);

+				logger.warn("-- Removed all HwComponent objects defined inside Quartz : {0}", quartzName);

 			}

 			boolean removedMemories = quartzElement.removeChild("memories");

 

 			if (removedMemories) {

-				LOGGER.warn("-- Removed all Memory objects defined inside Quartz : {}", quartzName);

+				logger.warn("-- Removed all Memory objects defined inside Quartz : {0}", quartzName);

 			}

 			boolean removedNetworks = quartzElement.removeChild("networks");

 			if (removedNetworks) {

-				LOGGER.warn("-- Removed all Network objects defined inside Quartz : {}", quartzName);

+				logger.warn("-- Removed all Network objects defined inside Quartz : {0}", quartzName);

 			}

 			boolean removedPorts = quartzElement.removeChild("ports");

 			if (removedPorts) {

-				LOGGER.warn("-- Removed all HwPort objects defined inside Quartz : {}", quartzName);

+				logger.warn("-- Removed all HwPort objects defined inside Quartz : {0}", quartzName);

 			}

 			boolean removedPrescalers = quartzElement.removeChild("prescaler");

 			if (removedPrescalers) {

-				LOGGER.warn("-- Removed all Prescaler objects defined inside Quartz : {}", quartzName);

+				logger.warn("-- Removed all Prescaler objects defined inside Quartz : {0}", quartzName);

 			}

 			boolean removedQuartzes = quartzElement.removeChild("quartzes");

 

 			if (removedQuartzes) {

-				LOGGER.warn("-- Moved all Quartz objects defined inside Quartz : {} as elements inside HwSystem", quartzName);

+				logger.warn("-- Moved all Quartz objects defined inside Quartz : {0} as elements inside HwSystem", quartzName);

 			}

 		}

 	}

@@ -176,7 +177,7 @@
 		for (final Element memoryTypeElement : memoryTypeElements) {

 			memoryTypeElement.removeAttribute("xAccessPattern");

 

-			LOGGER.info("xAccessPattern attribute and its value are removed from MemoryType: {}", memoryTypeElement.getAttributeValue("name"));

+			logger.info("xAccessPattern attribute and its value are removed from MemoryType: {0}", memoryTypeElement.getAttributeValue("name"));

 		}

 	}

 

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.081/src/org/eclipse/app4mc/amalthea/converters081/impl/MappingConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.081/src/org/eclipse/app4mc/amalthea/converters081/impl/MappingConverter.java
index b33f1e6..9d7126f 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.081/src/org/eclipse/app4mc/amalthea/converters081/impl/MappingConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.081/src/org/eclipse/app4mc/amalthea/converters081/impl/MappingConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2015-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2015-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -25,13 +25,13 @@
 import org.eclipse.app4mc.amalthea.converters.common.converter.AbstractConverter;

 import org.eclipse.app4mc.amalthea.converters.common.utils.AmaltheaNamespaceRegistry;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Attribute;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 /**

  * This class is responsible for converting the Mapping Model elements from 0.8.0 to 0.8.1 version format of AMALTHEA model

@@ -47,7 +47,8 @@
 

 public class MappingConverter extends AbstractConverter {

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(MappingConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	@Override

 	@Activate

@@ -58,7 +59,7 @@
 	@Override

 	public void convert(File targetFile, Map<File, Document> filename2documentMap, List<ICache> caches) {

 

-		LOGGER.info("Migration from 0.8.0 to 0.8.1 : Executing Mapping converter for model file : {}",

+		logger.info("Migration from 0.8.0 to 0.8.1 : Executing Mapping converter for model file : {0}",

 				targetFile.getName());

 

 		final Document root = filename2documentMap.get(targetFile);

@@ -121,7 +122,7 @@
 		}

 

 		if(priorityAddedAsSchedulingParameter){

-			LOGGER.info("Priority is removed from TaskAllocation elements and added as a attribute in corresponding SchedulingParameters element");

+			logger.info("Priority is removed from TaskAllocation elements and added as a attribute in corresponding SchedulingParameters element");

 		}

 	}

 

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.081/src/org/eclipse/app4mc/amalthea/converters081/impl/OSConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.081/src/org/eclipse/app4mc/amalthea/converters081/impl/OSConverter.java
index 72cc675..0ba6f3e 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.081/src/org/eclipse/app4mc/amalthea/converters081/impl/OSConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.081/src/org/eclipse/app4mc/amalthea/converters081/impl/OSConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2015-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2015-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -26,13 +26,13 @@
 import org.eclipse.app4mc.amalthea.converters.common.utils.AmaltheaNamespaceRegistry;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

 import org.eclipse.app4mc.amalthea.converters081.utils.HelperUtils_080_081;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Attribute;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 /**

  * This class is responsible for converting the OS Model elements from 0.8.0 to 0.8.1 version format of AMALTHEA model

@@ -48,7 +48,8 @@
 

 public class OSConverter extends AbstractConverter {

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(OSConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	@Override

 	@Activate

@@ -59,7 +60,7 @@
 	@Override

 	public void convert(File targetFile, Map<File, Document> filename2documentMap, List<ICache> caches) {

 

-		LOGGER.info("Migration from 0.8.0 to 0.8.1 : Executing OS converter for model file : {}",

+		logger.info("Migration from 0.8.0 to 0.8.1 : Executing OS converter for model file : {0}",

 				targetFile.getName());

 

 

@@ -130,7 +131,7 @@
 

 			if(schedulingUnitElement !=null){

 

-				LOGGER.warn("SchedulingUnit removed from Scheduler : {}", schedulerElement.getAttributeValue("name"));

+				logger.warn("SchedulingUnit removed from Scheduler : {0}", schedulerElement.getAttributeValue("name"));

 

 				String schedulingUnitType = schedulingUnitElement.getAttributeValue("type", AmaltheaNamespaceRegistry.getGenericNamespace("xsi"));

 

@@ -171,7 +172,7 @@
 						List<Element> instructionElements = schedulingUnitElement.getChildren("instructions");

 

 						if (!instructionElements.isEmpty()) {

-							LOGGER.warn("-- Instructions inside SchedulingSWUnit are migrated to RunnableInstructions element");

+							logger.warn("-- Instructions inside SchedulingSWUnit are migrated to RunnableInstructions element");

 						}

 

 						for (Element instructionElement : instructionElements) {

@@ -200,7 +201,7 @@
 

 						// removing interruptController

 						if (schedulingUnitElement.removeAttribute("interruptController") || schedulingUnitElement.removeChild("interruptController")) {

-							LOGGER.warn("-- InterruptController inside SchedulingSWUnit is removed, as there is no equivalent element for it in AMALTHEA 0.8.1");

+							logger.warn("-- InterruptController inside SchedulingSWUnit is removed, as there is no equivalent element for it in AMALTHEA 0.8.1");

 						}

 					}

 				}

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.081/src/org/eclipse/app4mc/amalthea/converters081/impl/RootElementConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.081/src/org/eclipse/app4mc/amalthea/converters081/impl/RootElementConverter.java
index ff63eba..13fec7d 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.081/src/org/eclipse/app4mc/amalthea/converters081/impl/RootElementConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.081/src/org/eclipse/app4mc/amalthea/converters081/impl/RootElementConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2015-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2015-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -24,12 +24,12 @@
 import org.eclipse.app4mc.amalthea.converters.common.base.IConverter;

 import org.eclipse.app4mc.amalthea.converters.common.converter.AbstractConverter;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 /**

  * This class is responsible for converting the root element of the model file as : "Amalthea" (only if for the supplied

@@ -47,7 +47,8 @@
 

 public class RootElementConverter extends AbstractConverter {

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(RootElementConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	@Override

 	@Activate

@@ -77,7 +78,7 @@
 		 */

 

 

-		LOGGER.info("Migration from 0.8.0 to 0.8.1 : Executing Root Element Converter for model file : {}",

+		logger.info("Migration from 0.8.0 to 0.8.1 : Executing Root Element Converter for model file : {0}",

 				targetFile.getName());

 

 		final Document document = filename2documentMap.get(targetFile);

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.081/src/org/eclipse/app4mc/amalthea/converters081/impl/StimuliConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.081/src/org/eclipse/app4mc/amalthea/converters081/impl/StimuliConverter.java
index 91e5415..770ccfa 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.081/src/org/eclipse/app4mc/amalthea/converters081/impl/StimuliConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.081/src/org/eclipse/app4mc/amalthea/converters081/impl/StimuliConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2015-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2015-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -27,13 +27,13 @@
 import org.eclipse.app4mc.amalthea.converters.common.converter.AbstractConverter;

 import org.eclipse.app4mc.amalthea.converters.common.utils.AmaltheaNamespaceRegistry;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Attribute;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 /**

  * This class is responsible for converting the Stimuli Model elements from 0.8.0 to 0.8.1 version format of AMALTHEA model

@@ -49,7 +49,8 @@
 

 public class StimuliConverter extends AbstractConverter {

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(StimuliConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	@Override

 	@Activate

@@ -60,7 +61,7 @@
 	@Override

 	public void convert(File targetFile, Map<File, Document> filename2documentMap, List<ICache> caches) {

 

-		LOGGER.info("Migration from 0.8.0 to 0.8.1 : Executing Stimuli converter for model file : {}",

+		logger.info("Migration from 0.8.0 to 0.8.1 : Executing Stimuli converter for model file : {0}",

 				targetFile.getName());

 

 

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.081/src/org/eclipse/app4mc/amalthea/converters081/impl/SwConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.081/src/org/eclipse/app4mc/amalthea/converters081/impl/SwConverter.java
index b5b8e1c..57f5cca 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.081/src/org/eclipse/app4mc/amalthea/converters081/impl/SwConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.081/src/org/eclipse/app4mc/amalthea/converters081/impl/SwConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2015-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2015-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -26,13 +26,13 @@
 import org.eclipse.app4mc.amalthea.converters.common.utils.AmaltheaNamespaceRegistry;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

 import org.eclipse.app4mc.amalthea.converters081.utils.HelperUtils_080_081;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Attribute;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 /**

  * This class is responsible for converting the SW Model elements from 0.8.0 to 0.8.1 version format of AMALTHEA model

@@ -53,7 +53,8 @@
 	private static final String NAME = "name";

 	private static final String VALUE = "value";

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(SwConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	@Override

 	@Activate

@@ -64,7 +65,7 @@
 	@Override

 	public void convert(File targetFile, Map<File, Document> filename2documentMap, List<ICache> caches) {

 

-		LOGGER.info("Migration from 0.8.0 to 0.8.1 : Executing Software converter for model file : {}",

+		logger.info("Migration from 0.8.0 to 0.8.1 : Executing Software converter for model file : {0}",

 				targetFile.getName());

 

 

@@ -133,7 +134,7 @@
 

 					abstractProcessElement.addContent(customPropertiesElement);

 

-					LOGGER.info("Priority is removed from : {} element ({}) and added as a CustomProperty with key as Priority",

+					logger.info("Priority is removed from : {0} element ({1}) and added as a CustomProperty with key as Priority",

 							abstractProcessElement.getName(),

 							abstractProcessElement.getAttributeValue(NAME));

 

@@ -156,7 +157,7 @@
 					 if(!osekTaskGroupValue.equals("0")){

 						 HelperUtils_080_081.addCustomProperty(abstractProcessElement, "osekTaskGroup", osekTaskGroupValue);

 

-						 LOGGER.info("osekTaskGroup attribute is removed from Task ({}) and added as a CustomProperty with key as osekTaskGroup",

+						 logger.info("osekTaskGroup attribute is removed from Task ({0}) and added as a CustomProperty with key as osekTaskGroup",

 								 abstractProcessElement.getAttributeValue(NAME));

 					 }

 

@@ -284,7 +285,7 @@
 		}

 

 		if(removedDeadLine){

-			LOGGER.warn("-- Deadline inside PeriodicActivation elements is removed, as there is no equivalent element for it in AMALTHEA 0.8.1");

+			logger.warn("-- Deadline inside PeriodicActivation elements is removed, as there is no equivalent element for it in AMALTHEA 0.8.1");

 		}

 	}

 

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.081/src/org/eclipse/app4mc/amalthea/converters081/utils/ConstraintElementsCacheBuilder.java b/plugins/org.eclipse.app4mc.amalthea.converters.081/src/org/eclipse/app4mc/amalthea/converters081/utils/ConstraintElementsCacheBuilder.java
index a0dc86f..de491f7 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.081/src/org/eclipse/app4mc/amalthea/converters081/utils/ConstraintElementsCacheBuilder.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.081/src/org/eclipse/app4mc/amalthea/converters081/utils/ConstraintElementsCacheBuilder.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2015-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2015-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -27,25 +27,28 @@
 import org.eclipse.app4mc.amalthea.converters.common.utils.AmaltheaNamespaceRegistry;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

 import org.eclipse.app4mc.amalthea.converters.common.utils.ModelVersion;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 @Component(

 		property = ServiceConstants.INPUT_MODEL_VERSION_PROPERTY + "=0.8.0")

 

 public class ConstraintElementsCacheBuilder implements ICache {

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(ConstraintElementsCacheBuilder.class);

-

 	private final HashMap<File, Map<String, Object>> map = new HashMap<>();

 

+	@Reference

+	SessionLogger logger;

+

 	@Override

 	public void buildCache(final Map<File, Document> fileDocumentMapping) {

 

-		LOGGER.info("Build up ConstraintElementsCache for 0.8.0");

+		if (logger != null) {

+			logger.info("Build up ConstraintElementsCache for 0.8.0");

+		}

 

 		for (Entry<File, Document> entry : fileDocumentMapping.entrySet()) {

 			File targetFile = entry.getKey();

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.082/META-INF/MANIFEST.MF b/plugins/org.eclipse.app4mc.amalthea.converters.082/META-INF/MANIFEST.MF
index 1983887..b9e3f0f 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.082/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.082/META-INF/MANIFEST.MF
@@ -10,8 +10,8 @@
  org.eclipse.app4mc.amalthea.converters.common.base,

  org.eclipse.app4mc.amalthea.converters.common.converter,

  org.eclipse.app4mc.amalthea.converters.common.utils,

+ org.eclipse.app4mc.util.sessionlog;version="1.1.0",

  org.jdom2;version="2.0.6",

- org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional,

- org.slf4j

+ org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional

 Bundle-ActivationPolicy: lazy

 Service-Component: OSGI-INF/org.eclipse.app4mc.amalthea.converters082.impl.RootElementConverter.xml

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.082/OSGI-INF/org.eclipse.app4mc.amalthea.converters082.impl.RootElementConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.082/OSGI-INF/org.eclipse.app4mc.amalthea.converters082.impl.RootElementConverter.xml
index f375a52..ad5a65e 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.082/OSGI-INF/org.eclipse.app4mc.amalthea.converters082.impl.RootElementConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.082/OSGI-INF/org.eclipse.app4mc.amalthea.converters082.impl.RootElementConverter.xml
@@ -1,10 +1,11 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters082.impl.RootElementConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters082.impl.RootElementConverter">
    <property name="input_model_version" value="0.8.1"/>
    <property name="output_model_version" value="0.8.2"/>
    <property name="service.ranking" type="Integer" value="100"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters082.impl.RootElementConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.082/src/org/eclipse/app4mc/amalthea/converters082/impl/RootElementConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.082/src/org/eclipse/app4mc/amalthea/converters082/impl/RootElementConverter.java
index a589356..96cb5ef 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.082/src/org/eclipse/app4mc/amalthea/converters082/impl/RootElementConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.082/src/org/eclipse/app4mc/amalthea/converters082/impl/RootElementConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2015-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2015-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -24,12 +24,12 @@
 import org.eclipse.app4mc.amalthea.converters.common.base.IConverter;

 import org.eclipse.app4mc.amalthea.converters.common.converter.AbstractConverter;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 /**

  * This class is responsible for converting the root element of the model file as : "Amalthea" (only if for the supplied

@@ -47,7 +47,8 @@
 

 public class RootElementConverter extends AbstractConverter {

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(RootElementConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	@Override

 	@Activate

@@ -77,7 +78,7 @@
 		 */

 

 

-		LOGGER.info("Migration from 0.8.1 to 0.8.2 : Executing Root Element Converter for model file : {}",

+		logger.info("Migration from 0.8.1 to 0.8.2 : Executing Root Element Converter for model file : {0}",

 				targetFile.getName());

 

 		final Document document = filename2documentMap.get(targetFile);

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.083/META-INF/MANIFEST.MF b/plugins/org.eclipse.app4mc.amalthea.converters.083/META-INF/MANIFEST.MF
index 9cd4929..bbb6ec8 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.083/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.083/META-INF/MANIFEST.MF
@@ -10,9 +10,9 @@
  org.eclipse.app4mc.amalthea.converters.common.base,

  org.eclipse.app4mc.amalthea.converters.common.converter,

  org.eclipse.app4mc.amalthea.converters.common.utils,

+ org.eclipse.app4mc.util.sessionlog;version="1.1.0",

  org.jdom2;version="2.0.6",

- org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional,

- org.slf4j

+ org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional

 Bundle-ActivationPolicy: lazy

 Service-Component: OSGI-INF/org.eclipse.app4mc.amalthea.converters083.impl.ComponentModelConverter.xml,

  OSGI-INF/org.eclipse.app4mc.amalthea.converters083.impl.SwConverter.xml,

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.083/OSGI-INF/org.eclipse.app4mc.amalthea.converters083.impl.ComponentModelConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.083/OSGI-INF/org.eclipse.app4mc.amalthea.converters083.impl.ComponentModelConverter.xml
index 1b2f02b..b6cf716 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.083/OSGI-INF/org.eclipse.app4mc.amalthea.converters083.impl.ComponentModelConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.083/OSGI-INF/org.eclipse.app4mc.amalthea.converters083.impl.ComponentModelConverter.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters083.impl.ComponentModelConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters083.impl.ComponentModelConverter">
    <property name="input_model_version" value="0.8.2"/>
    <property name="output_model_version" value="0.8.3"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters083.impl.ComponentModelConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.083/OSGI-INF/org.eclipse.app4mc.amalthea.converters083.impl.RootElementConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.083/OSGI-INF/org.eclipse.app4mc.amalthea.converters083.impl.RootElementConverter.xml
index 40c1833..176f5c7 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.083/OSGI-INF/org.eclipse.app4mc.amalthea.converters083.impl.RootElementConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.083/OSGI-INF/org.eclipse.app4mc.amalthea.converters083.impl.RootElementConverter.xml
@@ -1,10 +1,11 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters083.impl.RootElementConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters083.impl.RootElementConverter">
    <property name="input_model_version" value="0.8.2"/>
    <property name="output_model_version" value="0.8.3"/>
    <property name="service.ranking" type="Integer" value="100"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters083.impl.RootElementConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.083/OSGI-INF/org.eclipse.app4mc.amalthea.converters083.impl.StimuliConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.083/OSGI-INF/org.eclipse.app4mc.amalthea.converters083.impl.StimuliConverter.xml
index 609b9b9..031dfee 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.083/OSGI-INF/org.eclipse.app4mc.amalthea.converters083.impl.StimuliConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.083/OSGI-INF/org.eclipse.app4mc.amalthea.converters083.impl.StimuliConverter.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters083.impl.StimuliConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters083.impl.StimuliConverter">
    <property name="input_model_version" value="0.8.2"/>
    <property name="output_model_version" value="0.8.3"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters083.impl.StimuliConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.083/OSGI-INF/org.eclipse.app4mc.amalthea.converters083.impl.SwConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.083/OSGI-INF/org.eclipse.app4mc.amalthea.converters083.impl.SwConverter.xml
index 05296bc..e3c1e94 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.083/OSGI-INF/org.eclipse.app4mc.amalthea.converters083.impl.SwConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.083/OSGI-INF/org.eclipse.app4mc.amalthea.converters083.impl.SwConverter.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters083.impl.SwConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters083.impl.SwConverter">
    <property name="input_model_version" value="0.8.2"/>
    <property name="output_model_version" value="0.8.3"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters083.impl.SwConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.083/OSGI-INF/org.eclipse.app4mc.amalthea.converters083.utils.PeriodicStimulusCacheBuilder.xml b/plugins/org.eclipse.app4mc.amalthea.converters.083/OSGI-INF/org.eclipse.app4mc.amalthea.converters083.utils.PeriodicStimulusCacheBuilder.xml
index a22f893..d612305 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.083/OSGI-INF/org.eclipse.app4mc.amalthea.converters083.utils.PeriodicStimulusCacheBuilder.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.083/OSGI-INF/org.eclipse.app4mc.amalthea.converters083.utils.PeriodicStimulusCacheBuilder.xml
@@ -1,8 +1,9 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" name="org.eclipse.app4mc.amalthea.converters083.utils.PeriodicStimulusCacheBuilder">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" name="org.eclipse.app4mc.amalthea.converters083.utils.PeriodicStimulusCacheBuilder">
    <property name="input_model_version" value="0.8.2"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.ICache"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters083.utils.PeriodicStimulusCacheBuilder"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.083/src/org/eclipse/app4mc/amalthea/converters083/impl/ComponentModelConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.083/src/org/eclipse/app4mc/amalthea/converters083/impl/ComponentModelConverter.java
index 61cc50e..e05db49 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.083/src/org/eclipse/app4mc/amalthea/converters083/impl/ComponentModelConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.083/src/org/eclipse/app4mc/amalthea/converters083/impl/ComponentModelConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2018-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2018-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -25,13 +25,13 @@
 import org.eclipse.app4mc.amalthea.converters.common.converter.AbstractConverter;

 import org.eclipse.app4mc.amalthea.converters.common.utils.AmaltheaNamespaceRegistry;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Attribute;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 /**

  * This class is responsible for converting the HW Model elements from 0.8.2 to 0.8.3 version format of AMALTHEA model

@@ -47,7 +47,8 @@
 

 public class ComponentModelConverter extends AbstractConverter {

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(ComponentModelConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	@Override

 	@Activate

@@ -58,7 +59,7 @@
 	@Override

 	public void convert(File targetFile, Map<File, Document> fileName2documentMap, List<ICache> caches) {

 

-		LOGGER.info("Migration from 0.8.2 to 0.8.3 : Executing Component model converter for model file : {}",

+		logger.info("Migration from 0.8.2 to 0.8.3 : Executing Component model converter for model file : {0}",

 				targetFile.getName());

 

 

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.083/src/org/eclipse/app4mc/amalthea/converters083/impl/RootElementConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.083/src/org/eclipse/app4mc/amalthea/converters083/impl/RootElementConverter.java
index 0797c12..ca9866d 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.083/src/org/eclipse/app4mc/amalthea/converters083/impl/RootElementConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.083/src/org/eclipse/app4mc/amalthea/converters083/impl/RootElementConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2015-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2015-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -24,12 +24,12 @@
 import org.eclipse.app4mc.amalthea.converters.common.base.IConverter;

 import org.eclipse.app4mc.amalthea.converters.common.converter.AbstractConverter;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 /**

  * This class is responsible for converting the root element of the model file as : "Amalthea" (only if for the supplied

@@ -47,7 +47,8 @@
 

 public class RootElementConverter extends AbstractConverter {

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(RootElementConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	@Override

 	@Activate

@@ -77,7 +78,7 @@
 		 */

 

 

-		LOGGER.info("Migration from 0.8.2 to 0.8.3 : Executing Root Element Converter for model file : {}",

+		logger.info("Migration from 0.8.2 to 0.8.3 : Executing Root Element Converter for model file : {0}",

 				targetFile.getName());

 

 		final Document document = filename2documentMap.get(targetFile);

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.083/src/org/eclipse/app4mc/amalthea/converters083/impl/StimuliConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.083/src/org/eclipse/app4mc/amalthea/converters083/impl/StimuliConverter.java
index 585910f..c0b221c 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.083/src/org/eclipse/app4mc/amalthea/converters083/impl/StimuliConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.083/src/org/eclipse/app4mc/amalthea/converters083/impl/StimuliConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2018-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2018-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -28,13 +28,13 @@
 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

 import org.eclipse.app4mc.amalthea.converters.common.utils.ModelVersion;

 import org.eclipse.app4mc.amalthea.converters083.utils.PeriodicStimulusCacheBuilder;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Attribute;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 /**

  * This class is responsible for converting the Stimulus model elements from

@@ -60,7 +60,8 @@
 	private static final String STIMULI = "stimuli";

 	private static final String STIMULUS_DEVIATION = "stimulusDeviation";

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(StimuliConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	private PeriodicStimulusCacheBuilder cache;

 

@@ -73,7 +74,7 @@
 	@Override

 	public void convert(File targetFile, Map<File, Document> fileDocumentMapping, List<ICache> caches) {

 

-		LOGGER.info("Migration from 0.8.2 to 0.8.3 : Executing Stimulus model converter for model file : {}",

+		logger.info("Migration from 0.8.2 to 0.8.3 : Executing Stimulus model converter for model file : {0}",

 				targetFile.getName());

 

 		this.cache = getPeriodicStimulusCacheBuilder(caches);

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.083/src/org/eclipse/app4mc/amalthea/converters083/impl/SwConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.083/src/org/eclipse/app4mc/amalthea/converters083/impl/SwConverter.java
index c9e49d5..cf0fa63 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.083/src/org/eclipse/app4mc/amalthea/converters083/impl/SwConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.083/src/org/eclipse/app4mc/amalthea/converters083/impl/SwConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2018-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2018-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -27,13 +27,13 @@
 import org.eclipse.app4mc.amalthea.converters.common.utils.AmaltheaNamespaceRegistry;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

 import org.eclipse.app4mc.amalthea.converters.common.utils.ModelVersion;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Attribute;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 /**

  * This class is responsible for converting the HW Model elements from 0.8.2 to 0.8.3 version format of AMALTHEA model

@@ -57,7 +57,8 @@
 	private static final String VALUES = "values";

 	private static final String VALUE_PROVIDER = "valueProvider";

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(SwConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	@Override

 	@Activate

@@ -68,7 +69,7 @@
 	@Override

 	public void convert(File targetFile, Map<File, Document> filename2documentMap, List<ICache> caches) {

 

-		LOGGER.info("Migration from 0.8.2 to 0.8.3 : Executing Software model converter for model file : {}",

+		logger.info("Migration from 0.8.2 to 0.8.3 : Executing Software model converter for model file : {0}",

 				targetFile.getName());

 

 

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.083/src/org/eclipse/app4mc/amalthea/converters083/utils/PeriodicStimulusCacheBuilder.java b/plugins/org.eclipse.app4mc.amalthea.converters.083/src/org/eclipse/app4mc/amalthea/converters083/utils/PeriodicStimulusCacheBuilder.java
index 86e75b5..e879fc9 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.083/src/org/eclipse/app4mc/amalthea/converters083/utils/PeriodicStimulusCacheBuilder.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.083/src/org/eclipse/app4mc/amalthea/converters083/utils/PeriodicStimulusCacheBuilder.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2018-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2018-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -27,27 +27,30 @@
 import org.eclipse.app4mc.amalthea.converters.common.utils.AmaltheaNamespaceRegistry;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

 import org.eclipse.app4mc.amalthea.converters.common.utils.ModelVersion;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 @Component(

 		property = ServiceConstants.INPUT_MODEL_VERSION_PROPERTY + "=0.8.2")

 

 public class PeriodicStimulusCacheBuilder implements ICache {

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(PeriodicStimulusCacheBuilder.class);

-

 	public static final String CACHE_KEY = "PeriodicStimulus_Containing_Clock";

 

 	private final HashMap<File, Map<String, Object>> map = new HashMap<>();

 

+	@Reference

+	SessionLogger logger;

+

 	@Override

 	public void buildCache(final Map<File, Document> fileDocumentMapping) {

 

-		LOGGER.info("Build up PeriodicStimulusCache for 0.8.2");

+		if (logger != null) {

+			logger.info("Build up PeriodicStimulusCache for 0.8.2");

+		}

 

 		for (Entry<File, Document> entry : fileDocumentMapping.entrySet()) {

 			File targetFile = entry.getKey();

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.090/META-INF/MANIFEST.MF b/plugins/org.eclipse.app4mc.amalthea.converters.090/META-INF/MANIFEST.MF
index b570276..b46f7b5 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.090/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.090/META-INF/MANIFEST.MF
@@ -10,9 +10,9 @@
  org.eclipse.app4mc.amalthea.converters.common.base,

  org.eclipse.app4mc.amalthea.converters.common.converter,

  org.eclipse.app4mc.amalthea.converters.common.utils,

+ org.eclipse.app4mc.util.sessionlog;version="1.1.0",

  org.jdom2;version="2.0.6",

- org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional,

- org.slf4j

+ org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional

 Bundle-ActivationPolicy: lazy

 Service-Component: OSGI-INF/org.eclipse.app4mc.amalthea.converters090.impl.HwReferencesConverter.xml,

  OSGI-INF/org.eclipse.app4mc.amalthea.converters090.impl.RootElementConverter.xml,

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.090/OSGI-INF/org.eclipse.app4mc.amalthea.converters090.impl.HwConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.090/OSGI-INF/org.eclipse.app4mc.amalthea.converters090.impl.HwConverter.xml
index 2d3582f..c6f654d 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.090/OSGI-INF/org.eclipse.app4mc.amalthea.converters090.impl.HwConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.090/OSGI-INF/org.eclipse.app4mc.amalthea.converters090.impl.HwConverter.xml
@@ -1,10 +1,11 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters090.impl.HwConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters090.impl.HwConverter">
    <property name="input_model_version" value="0.8.3"/>
    <property name="output_model_version" value="0.9.0"/>
    <property name="service.ranking" type="Integer" value="90"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters090.impl.HwConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.090/OSGI-INF/org.eclipse.app4mc.amalthea.converters090.impl.HwReferencesConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.090/OSGI-INF/org.eclipse.app4mc.amalthea.converters090.impl.HwReferencesConverter.xml
index b9a085c..bfdf688 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.090/OSGI-INF/org.eclipse.app4mc.amalthea.converters090.impl.HwReferencesConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.090/OSGI-INF/org.eclipse.app4mc.amalthea.converters090.impl.HwReferencesConverter.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters090.impl.HwReferencesConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters090.impl.HwReferencesConverter">
    <property name="input_model_version" value="0.8.3"/>
    <property name="output_model_version" value="0.9.0"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters090.impl.HwReferencesConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.090/OSGI-INF/org.eclipse.app4mc.amalthea.converters090.impl.RootElementConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.090/OSGI-INF/org.eclipse.app4mc.amalthea.converters090.impl.RootElementConverter.xml
index ccad9c2..0832e7e 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.090/OSGI-INF/org.eclipse.app4mc.amalthea.converters090.impl.RootElementConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.090/OSGI-INF/org.eclipse.app4mc.amalthea.converters090.impl.RootElementConverter.xml
@@ -1,10 +1,11 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters090.impl.RootElementConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters090.impl.RootElementConverter">
    <property name="input_model_version" value="0.8.3"/>
    <property name="output_model_version" value="0.9.0"/>
    <property name="service.ranking" type="Integer" value="100"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters090.impl.RootElementConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.090/OSGI-INF/org.eclipse.app4mc.amalthea.converters090.utils.HWCacheBuilder.xml b/plugins/org.eclipse.app4mc.amalthea.converters.090/OSGI-INF/org.eclipse.app4mc.amalthea.converters090.utils.HWCacheBuilder.xml
index b85284c..7a9d4f9 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.090/OSGI-INF/org.eclipse.app4mc.amalthea.converters090.utils.HWCacheBuilder.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.090/OSGI-INF/org.eclipse.app4mc.amalthea.converters090.utils.HWCacheBuilder.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" name="org.eclipse.app4mc.amalthea.converters090.utils.HWCacheBuilder">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" name="org.eclipse.app4mc.amalthea.converters090.utils.HWCacheBuilder">
    <property name="input_model_version" value="0.8.3"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.ICache"/>
       <provide interface="org.eclipse.app4mc.amalthea.converters090.utils.HWCacheBuilder"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters090.utils.HWCacheBuilder"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.090/OSGI-INF/org.eclipse.app4mc.amalthea.converters090.utils.UpdateCustomPropsPostProcessor.xml b/plugins/org.eclipse.app4mc.amalthea.converters.090/OSGI-INF/org.eclipse.app4mc.amalthea.converters090.utils.UpdateCustomPropsPostProcessor.xml
index 13cbb2a..b4bcbc0 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.090/OSGI-INF/org.eclipse.app4mc.amalthea.converters090.utils.UpdateCustomPropsPostProcessor.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.090/OSGI-INF/org.eclipse.app4mc.amalthea.converters090.utils.UpdateCustomPropsPostProcessor.xml
@@ -6,5 +6,6 @@
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IPostProcessor"/>
    </service>
    <reference cardinality="1..1" field="cache" interface="org.eclipse.app4mc.amalthea.converters090.utils.HWCacheBuilder" name="cache"/>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters090.utils.UpdateCustomPropsPostProcessor"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.090/src/org/eclipse/app4mc/amalthea/converters090/impl/HwConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.090/src/org/eclipse/app4mc/amalthea/converters090/impl/HwConverter.java
index f66cb27..764d501 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.090/src/org/eclipse/app4mc/amalthea/converters090/impl/HwConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.090/src/org/eclipse/app4mc/amalthea/converters090/impl/HwConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2018-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2018-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -32,13 +32,13 @@
 import org.eclipse.app4mc.amalthea.converters.common.utils.ModelVersion;

 import org.eclipse.app4mc.amalthea.converters090.utils.HWCacheBuilder;

 import org.eclipse.app4mc.amalthea.converters090.utils.HWTransformationCache;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Attribute;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 /**

  * This class is responsible for converting the HW Model elements from 0.8.3 to 0.9.0 version format of AMALTHEA model

@@ -66,7 +66,8 @@
 	private static final String STRUCTURES = "structures";

 	private static final String STRUCTURE_TYPE = "structureType";

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(HwConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	private HWTransformationCache hwTransformationCache;

 

@@ -84,7 +85,7 @@
 	@Override

 	public void convert(File targetFile, Map<File, Document> fileDocumentMapping, List<ICache> caches) {

 

-		LOGGER.info("Migration from 0.8.3 to 0.9.0 : Executing HW model converter for model file : {}",

+		logger.info("Migration from 0.8.3 to 0.9.0 : Executing HW model converter for model file : {0}",

 				targetFile.getName());

 

 		/*-getting the cache object */

@@ -212,7 +213,7 @@
 						}

 

 					} else {

-						LOGGER.warn("Unable to migrate LatencyAccessPath from 0.8.3, as the Source type is : {}. Migration is supported only if source element is of type Core", oldHW_element_type);

+						logger.warn("Unable to migrate LatencyAccessPath from 0.8.3, as the Source type is : {0}. Migration is supported only if source element is of type Core", oldHW_element_type);

 					}

 				}

 

@@ -234,7 +235,7 @@
 

 					} else {

 

-						LOGGER.warn("Unable to migrate LatencyAccessPath destination from 0.8.3 successfully, as the destination type is : {}. Migration is supported only if target element is of type Memory or Core", oldHW_element_type);

+						logger.warn("Unable to migrate LatencyAccessPath destination from 0.8.3 successfully, as the destination type is : {0}. Migration is supported only if target element is of type Memory or Core", oldHW_element_type);

 					}

 

 					if (newHW_AccessElements != null) {

@@ -1197,7 +1198,7 @@
 									newHW_frequency_value_attribute.setValue(newHW_frequency_value);

 

 								} catch (Exception e) {

-									LOGGER.error("Exception occured during creation of new FrequencyDomain : {}",newHW_FrequencyDomain.getAttributeValue(NAME));

+									logger.error("Exception occured during creation of new FrequencyDomain : {0}",newHW_FrequencyDomain.getAttributeValue(NAME));

 								}

 							}

 						}

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.090/src/org/eclipse/app4mc/amalthea/converters090/impl/HwReferencesConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.090/src/org/eclipse/app4mc/amalthea/converters090/impl/HwReferencesConverter.java
index 9c4ca76..35c9650 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.090/src/org/eclipse/app4mc/amalthea/converters090/impl/HwReferencesConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.090/src/org/eclipse/app4mc/amalthea/converters090/impl/HwReferencesConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2018-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2018-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -28,13 +28,13 @@
 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

 import org.eclipse.app4mc.amalthea.converters090.utils.HWCacheBuilder;

 import org.eclipse.app4mc.amalthea.converters090.utils.HWTransformationCache;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Attribute;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 /**

  * This class is responsible for converting the HW Model elements from 0.8.3 to 0.9.0 version format of AMALTHEA model

@@ -63,7 +63,8 @@
 	private static final String INSTRUCTIONS = "Instructions";

 	private static final String AMLT_PREFIX = "amlt:/#";

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(HwReferencesConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	private HWTransformationCache hwTransformationCache;

 

@@ -81,7 +82,7 @@
 	@Override

 	public void convert(File targetFile, Map<File, Document> fileDocumentMapping, List<ICache> caches) {

 

-		LOGGER.info("Migration from 0.8.3 to 0.9.0 : Executing HW references converter for model file : {}",

+		logger.info("Migration from 0.8.3 to 0.9.0 : Executing HW references converter for model file : {0}",

 				targetFile.getName());

 		

 		/*-getting the cache object */

@@ -394,8 +395,8 @@
 					physicalSectionMapping.addContent(memoryElement);

 				} else {

 					if (hwTransformationCache.getNewCachesMap().containsKey(memoryName)) {

-						LOGGER.warn(

-								"In 0.8.3, Memory : \"{}\" referred as a Target element in AffinityConstraint is no longer a valid Target element. \r\n -- As in 0.9.0 -> this Memory element is transformed to Cache ",

+						logger.warn(

+								"In 0.8.3, Memory : \"{0}\" referred as a Target element in AffinityConstraint is no longer a valid Target element. \r\n -- As in 0.9.0 -> this Memory element is transformed to Cache ",

 								memoryName);

 					}

 				}

@@ -428,8 +429,8 @@
 					memroyMapping.addContent(memoryElement);

 				} else {

 					if (hwTransformationCache.getNewCachesMap().containsKey(memoryName)) {

-						LOGGER.warn(

-								"In 0.8.3, Memory : \"{}\" referred as a Target element in AffinityConstraint is no longer a valid Target element. \r\n -- As in 0.9.0 -> this Memory element is transformed to Cache ",

+						logger.warn(

+								"In 0.8.3, Memory : \"{0}\" referred as a Target element in AffinityConstraint is no longer a valid Target element. \r\n -- As in 0.9.0 -> this Memory element is transformed to Cache ",

 								memoryName);

 					}

 				}

@@ -461,8 +462,8 @@
 					physicalSectionContraint.addContent(memoryElement);

 				} else {

 					if (hwTransformationCache.getNewCachesMap().containsKey(memoryName)) {

-						LOGGER.warn(

-								"In 0.8.3, Memory : \"{}\" referred as a Target element in AffinityConstraint is no longer a valid Target element. \r\n -- As in 0.9.0 -> this Memory element is transformed to Cache ",

+						logger.warn(

+								"In 0.8.3, Memory : \"{0}\" referred as a Target element in AffinityConstraint is no longer a valid Target element. \r\n -- As in 0.9.0 -> this Memory element is transformed to Cache ",

 								memoryName);

 					}

 				}

@@ -499,8 +500,8 @@
 							puElement.setAttribute(HREF, AMLT_PREFIX + complexNodeName + "?type=ProcessingUnit");

 							limitElement.addContent(puElement);

 						} else {

-							LOGGER.warn(

-									"As per 0.9.0 : Only ProcessingUnit element can be referred inside CPUPercentageRequirementLimit as a hardwareContext.\r\n Reference of : {} of type : {} is removed : as it is not valid as per 0.9.0",

+							logger.warn(

+									"As per 0.9.0 : Only ProcessingUnit element can be referred inside CPUPercentageRequirementLimit as a hardwareContext.\r\n Reference of : {0} of type : {1} is removed : as it is not valid as per 0.9.0",

 									complexNodeName, complexNodeType);

 						}

 					}

@@ -540,8 +541,8 @@
 						} else {

 

 							if (hwTransformationCache.getNewCachesMap().containsKey(memoryName)) {

-								LOGGER.warn(

-										"In 0.8.3, Memory : \"{}\" referred as a Target element in AffinityConstraint is no longer a valid Target element. \r\n -- As in 0.9.0 -> this Memory element is transformed to Cache ",

+								logger.warn(

+										"In 0.8.3, Memory : \"{0}\" referred as a Target element in AffinityConstraint is no longer a valid Target element. \r\n -- As in 0.9.0 -> this Memory element is transformed to Cache ",

 										memoryName);

 							}

 						}

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.090/src/org/eclipse/app4mc/amalthea/converters090/impl/RootElementConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.090/src/org/eclipse/app4mc/amalthea/converters090/impl/RootElementConverter.java
index 02f6252..0423c06 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.090/src/org/eclipse/app4mc/amalthea/converters090/impl/RootElementConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.090/src/org/eclipse/app4mc/amalthea/converters090/impl/RootElementConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2018-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2018-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -24,12 +24,12 @@
 import org.eclipse.app4mc.amalthea.converters.common.base.IConverter;

 import org.eclipse.app4mc.amalthea.converters.common.converter.AbstractConverter;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 /**

  * This class is responsible for converting the root element of the model file as : "Amalthea" (only if for the supplied

@@ -47,7 +47,8 @@
 

 public class RootElementConverter extends AbstractConverter {

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(RootElementConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	@Override

 	@Activate

@@ -77,7 +78,7 @@
 		 */

 

 

-		LOGGER.info("Migration from 0.8.3 to 0.9.0 : Executing Root Element Converter for model file : {}",

+		logger.info("Migration from 0.8.3 to 0.9.0 : Executing Root Element Converter for model file : {0}",

 				targetFile.getName());

 

 		final Document document = filename2documentMap.get(targetFile);

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.090/src/org/eclipse/app4mc/amalthea/converters090/utils/HWCacheBuilder.java b/plugins/org.eclipse.app4mc.amalthea.converters.090/src/org/eclipse/app4mc/amalthea/converters090/utils/HWCacheBuilder.java
index 330b14f..17fa770 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.090/src/org/eclipse/app4mc/amalthea/converters090/utils/HWCacheBuilder.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.090/src/org/eclipse/app4mc/amalthea/converters090/utils/HWCacheBuilder.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2018-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2018-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -23,11 +23,11 @@
 import org.eclipse.app4mc.amalthea.converters.common.ServiceConstants;

 import org.eclipse.app4mc.amalthea.converters.common.base.ICache;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 @Component(

 		property = ServiceConstants.INPUT_MODEL_VERSION_PROPERTY + "=0.8.3",

@@ -35,7 +35,8 @@
 

 public class HWCacheBuilder implements ICache {

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(HWCacheBuilder.class);

+	@Reference

+	SessionLogger logger;

 

 	public static final String cache_key = "PeriodicStimulus_Containing_Clock";

 	

@@ -44,7 +45,9 @@
 	@Override

 	public void buildCache(final Map<File, Document> fileDocumentMapping) {

 

-		LOGGER.info("Build up HWTransformationCache for 0.8.3");

+		if (logger != null) {

+			logger.info("Build up HWTransformationCache for 0.8.3");

+		}

 

 		HWTransformationCache cache = new HWTransformationCache();

 

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.090/src/org/eclipse/app4mc/amalthea/converters090/utils/UpdateCustomPropsPostProcessor.java b/plugins/org.eclipse.app4mc.amalthea.converters.090/src/org/eclipse/app4mc/amalthea/converters090/utils/UpdateCustomPropsPostProcessor.java
index a0d5f0b..58bf547 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.090/src/org/eclipse/app4mc/amalthea/converters090/utils/UpdateCustomPropsPostProcessor.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.090/src/org/eclipse/app4mc/amalthea/converters090/utils/UpdateCustomPropsPostProcessor.java
@@ -25,12 +25,11 @@
 import org.eclipse.app4mc.amalthea.converters.common.base.IPostProcessor;

 import org.eclipse.app4mc.amalthea.converters.common.utils.AmaltheaNamespaceRegistry;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Component;

 import org.osgi.service.component.annotations.Reference;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

 

 @Component(

 		property = {

@@ -43,7 +42,8 @@
 	private static final String VALUE = "value";

 	private static final String AMLT_PREFIX = "amlt:/#";

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(UpdateCustomPropsPostProcessor.class);

+	@Reference

+	SessionLogger logger;

 

 	@Reference

 	private HWCacheBuilder cache;

@@ -51,7 +51,9 @@
 	@Override

 	public void process(Map<File, Document> filename2documentMap) {

 

-		LOGGER.info("Start UpdateCustomPropsPostProcessor from 0.8.3 to 0.9.0");

+		if (logger != null) {

+			logger.info("Start UpdateCustomPropsPostProcessor from 0.8.3 to 0.9.0");

+		}

 

 		List<String> hwTypes_083 =initializeHwTypesList();

 

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.091/META-INF/MANIFEST.MF b/plugins/org.eclipse.app4mc.amalthea.converters.091/META-INF/MANIFEST.MF
index cd4e4e4..95f913c 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.091/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.091/META-INF/MANIFEST.MF
@@ -10,9 +10,9 @@
  org.eclipse.app4mc.amalthea.converters.common.base,

  org.eclipse.app4mc.amalthea.converters.common.converter,

  org.eclipse.app4mc.amalthea.converters.common.utils,

+ org.eclipse.app4mc.util.sessionlog;version="1.1.0",

  org.jdom2;version="2.0.6",

- org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional,

- org.slf4j

+ org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional

 Bundle-ActivationPolicy: lazy

 Service-Component: OSGI-INF/org.eclipse.app4mc.amalthea.converters091.impl.RootElementConverter.xml,

  OSGI-INF/org.eclipse.app4mc.amalthea.converters091.impl.CustomPropertiesConverter.xml

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.091/OSGI-INF/org.eclipse.app4mc.amalthea.converters091.impl.CustomPropertiesConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.091/OSGI-INF/org.eclipse.app4mc.amalthea.converters091.impl.CustomPropertiesConverter.xml
index 4971200..3baa355 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.091/OSGI-INF/org.eclipse.app4mc.amalthea.converters091.impl.CustomPropertiesConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.091/OSGI-INF/org.eclipse.app4mc.amalthea.converters091.impl.CustomPropertiesConverter.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters091.impl.CustomPropertiesConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters091.impl.CustomPropertiesConverter">
    <property name="input_model_version" value="0.9.0"/>
    <property name="output_model_version" value="0.9.1"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters091.impl.CustomPropertiesConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.091/OSGI-INF/org.eclipse.app4mc.amalthea.converters091.impl.RootElementConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.091/OSGI-INF/org.eclipse.app4mc.amalthea.converters091.impl.RootElementConverter.xml
index 82df085..0016490 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.091/OSGI-INF/org.eclipse.app4mc.amalthea.converters091.impl.RootElementConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.091/OSGI-INF/org.eclipse.app4mc.amalthea.converters091.impl.RootElementConverter.xml
@@ -1,10 +1,11 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters091.impl.RootElementConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters091.impl.RootElementConverter">
    <property name="input_model_version" value="0.9.0"/>
    <property name="output_model_version" value="0.9.1"/>
    <property name="service.ranking" type="Integer" value="100"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters091.impl.RootElementConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.091/src/org/eclipse/app4mc/amalthea/converters091/impl/CustomPropertiesConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.091/src/org/eclipse/app4mc/amalthea/converters091/impl/CustomPropertiesConverter.java
index bb903e1..272d265 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.091/src/org/eclipse/app4mc/amalthea/converters091/impl/CustomPropertiesConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.091/src/org/eclipse/app4mc/amalthea/converters091/impl/CustomPropertiesConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2018-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2018-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -25,13 +25,13 @@
 import org.eclipse.app4mc.amalthea.converters.common.converter.AbstractConverter;

 import org.eclipse.app4mc.amalthea.converters.common.utils.AmaltheaNamespaceRegistry;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Attribute;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 /**

  * This class is responsible for converting the CustomProperties elements from 0.9.0 to 0.9.1 version format of AMALTHEA model

@@ -47,7 +47,8 @@
 

 public class CustomPropertiesConverter extends AbstractConverter {

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(CustomPropertiesConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	@Override

 	@Activate

@@ -58,7 +59,7 @@
 	@Override

 	public void convert(File targetFile, Map<File, Document> filename2documentMap, List<ICache> caches) {

 

-		LOGGER.info("Migration from 0.9.0 to 0.9.1 : Executing CustomProperties converter for model file : {}",

+		logger.info("Migration from 0.9.0 to 0.9.1 : Executing CustomProperties converter for model file : {0}",

 				targetFile.getName());

 

 		final Document root = filename2documentMap.get(targetFile);

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.091/src/org/eclipse/app4mc/amalthea/converters091/impl/RootElementConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.091/src/org/eclipse/app4mc/amalthea/converters091/impl/RootElementConverter.java
index 046949a..113ed62 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.091/src/org/eclipse/app4mc/amalthea/converters091/impl/RootElementConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.091/src/org/eclipse/app4mc/amalthea/converters091/impl/RootElementConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2018-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2018-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -24,12 +24,12 @@
 import org.eclipse.app4mc.amalthea.converters.common.base.IConverter;

 import org.eclipse.app4mc.amalthea.converters.common.converter.AbstractConverter;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 /**

  * This class is responsible for converting the root element of the model file as : "Amalthea" (only if for the supplied

@@ -47,7 +47,8 @@
 

 public class RootElementConverter extends AbstractConverter {

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(RootElementConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	@Override

 	@Activate

@@ -77,7 +78,7 @@
 		 */

 

 

-		LOGGER.info("Migration from 0.9.0 to 0.9.1 : Executing Root Element Converter for model file : {}",

+		logger.info("Migration from 0.9.0 to 0.9.1 : Executing Root Element Converter for model file : {0}",

 				targetFile.getName());

 

 		final Document document = filename2documentMap.get(targetFile);

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.092/META-INF/MANIFEST.MF b/plugins/org.eclipse.app4mc.amalthea.converters.092/META-INF/MANIFEST.MF
index b70ac2d..9d152fd 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.092/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.092/META-INF/MANIFEST.MF
@@ -10,8 +10,8 @@
  org.eclipse.app4mc.amalthea.converters.common.base,

  org.eclipse.app4mc.amalthea.converters.common.converter,

  org.eclipse.app4mc.amalthea.converters.common.utils,

+ org.eclipse.app4mc.util.sessionlog;version="1.1.0",

  org.jdom2;version="2.0.6",

- org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional,

- org.slf4j

+ org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional

 Bundle-ActivationPolicy: lazy

 Service-Component: OSGI-INF/org.eclipse.app4mc.amalthea.converters092.impl.RootElementConverter.xml

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.092/OSGI-INF/org.eclipse.app4mc.amalthea.converters092.impl.RootElementConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.092/OSGI-INF/org.eclipse.app4mc.amalthea.converters092.impl.RootElementConverter.xml
index ff8452b..249e5f0 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.092/OSGI-INF/org.eclipse.app4mc.amalthea.converters092.impl.RootElementConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.092/OSGI-INF/org.eclipse.app4mc.amalthea.converters092.impl.RootElementConverter.xml
@@ -1,10 +1,11 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters092.impl.RootElementConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters092.impl.RootElementConverter">
    <property name="input_model_version" value="0.9.1"/>
    <property name="output_model_version" value="0.9.2"/>
    <property name="service.ranking" type="Integer" value="100"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters092.impl.RootElementConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.092/src/org/eclipse/app4mc/amalthea/converters092/impl/RootElementConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.092/src/org/eclipse/app4mc/amalthea/converters092/impl/RootElementConverter.java
index 1431264..effdcbc 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.092/src/org/eclipse/app4mc/amalthea/converters092/impl/RootElementConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.092/src/org/eclipse/app4mc/amalthea/converters092/impl/RootElementConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2018-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2018-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -24,12 +24,12 @@
 import org.eclipse.app4mc.amalthea.converters.common.base.IConverter;

 import org.eclipse.app4mc.amalthea.converters.common.converter.AbstractConverter;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 /**

  * This class is responsible for converting the root element of the model file as : "Amalthea" (only if for the supplied

@@ -47,7 +47,8 @@
 

 public class RootElementConverter extends AbstractConverter {

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(RootElementConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	@Override

 	@Activate

@@ -77,7 +78,7 @@
 		 */

 

 

-		LOGGER.info("Migration from 0.9.1 to 0.9.2 : Executing Root Element Converter for model file : {}",

+		logger.info("Migration from 0.9.1 to 0.9.2 : Executing Root Element Converter for model file : {0}",

 				targetFile.getName());

 

 		final Document document = filename2documentMap.get(targetFile);

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.093/META-INF/MANIFEST.MF b/plugins/org.eclipse.app4mc.amalthea.converters.093/META-INF/MANIFEST.MF
index 10ce296..4bdb0a8 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.093/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.093/META-INF/MANIFEST.MF
@@ -10,9 +10,9 @@
  org.eclipse.app4mc.amalthea.converters.common.base,

  org.eclipse.app4mc.amalthea.converters.common.converter,

  org.eclipse.app4mc.amalthea.converters.common.utils,

+ org.eclipse.app4mc.util.sessionlog;version="1.1.0",

  org.jdom2;version="2.0.6",

- org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional,

- org.slf4j

+ org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional

 Bundle-ActivationPolicy: lazy

 Service-Component: OSGI-INF/org.eclipse.app4mc.amalthea.converters093.impl.RootElementConverter.xml,

  OSGI-INF/org.eclipse.app4mc.amalthea.converters093.impl.SwConverter.xml,

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.093/OSGI-INF/org.eclipse.app4mc.amalthea.converters093.impl.HwConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.093/OSGI-INF/org.eclipse.app4mc.amalthea.converters093.impl.HwConverter.xml
index 5fada96..2482e4d 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.093/OSGI-INF/org.eclipse.app4mc.amalthea.converters093.impl.HwConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.093/OSGI-INF/org.eclipse.app4mc.amalthea.converters093.impl.HwConverter.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters093.impl.HwConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters093.impl.HwConverter">
    <property name="input_model_version" value="0.9.2"/>
    <property name="output_model_version" value="0.9.3"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters093.impl.HwConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.093/OSGI-INF/org.eclipse.app4mc.amalthea.converters093.impl.MeasurementConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.093/OSGI-INF/org.eclipse.app4mc.amalthea.converters093.impl.MeasurementConverter.xml
index 6c35353..4fdcd56 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.093/OSGI-INF/org.eclipse.app4mc.amalthea.converters093.impl.MeasurementConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.093/OSGI-INF/org.eclipse.app4mc.amalthea.converters093.impl.MeasurementConverter.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters093.impl.MeasurementConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters093.impl.MeasurementConverter">
    <property name="input_model_version" value="0.9.2"/>
    <property name="output_model_version" value="0.9.3"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters093.impl.MeasurementConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.093/OSGI-INF/org.eclipse.app4mc.amalthea.converters093.impl.OsConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.093/OSGI-INF/org.eclipse.app4mc.amalthea.converters093.impl.OsConverter.xml
index da5f8fe..527d7ed 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.093/OSGI-INF/org.eclipse.app4mc.amalthea.converters093.impl.OsConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.093/OSGI-INF/org.eclipse.app4mc.amalthea.converters093.impl.OsConverter.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters093.impl.OsConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters093.impl.OsConverter">
    <property name="input_model_version" value="0.9.2"/>
    <property name="output_model_version" value="0.9.3"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters093.impl.OsConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.093/OSGI-INF/org.eclipse.app4mc.amalthea.converters093.impl.RootElementConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.093/OSGI-INF/org.eclipse.app4mc.amalthea.converters093.impl.RootElementConverter.xml
index 36a8fb2..f22be44 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.093/OSGI-INF/org.eclipse.app4mc.amalthea.converters093.impl.RootElementConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.093/OSGI-INF/org.eclipse.app4mc.amalthea.converters093.impl.RootElementConverter.xml
@@ -1,10 +1,11 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters093.impl.RootElementConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters093.impl.RootElementConverter">
    <property name="input_model_version" value="0.9.2"/>
    <property name="output_model_version" value="0.9.3"/>
    <property name="service.ranking" type="Integer" value="100"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters093.impl.RootElementConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.093/OSGI-INF/org.eclipse.app4mc.amalthea.converters093.impl.StimulusConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.093/OSGI-INF/org.eclipse.app4mc.amalthea.converters093.impl.StimulusConverter.xml
index 4981711..f1f5484 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.093/OSGI-INF/org.eclipse.app4mc.amalthea.converters093.impl.StimulusConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.093/OSGI-INF/org.eclipse.app4mc.amalthea.converters093.impl.StimulusConverter.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters093.impl.StimulusConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters093.impl.StimulusConverter">
    <property name="input_model_version" value="0.9.2"/>
    <property name="output_model_version" value="0.9.3"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters093.impl.StimulusConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.093/OSGI-INF/org.eclipse.app4mc.amalthea.converters093.impl.SwConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.093/OSGI-INF/org.eclipse.app4mc.amalthea.converters093.impl.SwConverter.xml
index 60083c9..baae63e 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.093/OSGI-INF/org.eclipse.app4mc.amalthea.converters093.impl.SwConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.093/OSGI-INF/org.eclipse.app4mc.amalthea.converters093.impl.SwConverter.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters093.impl.SwConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters093.impl.SwConverter">
    <property name="input_model_version" value="0.9.2"/>
    <property name="output_model_version" value="0.9.3"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters093.impl.SwConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.093/OSGI-INF/org.eclipse.app4mc.amalthea.converters093.utils.HWCacheBuilder.xml b/plugins/org.eclipse.app4mc.amalthea.converters.093/OSGI-INF/org.eclipse.app4mc.amalthea.converters093.utils.HWCacheBuilder.xml
index 281268d..b573799 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.093/OSGI-INF/org.eclipse.app4mc.amalthea.converters093.utils.HWCacheBuilder.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.093/OSGI-INF/org.eclipse.app4mc.amalthea.converters093.utils.HWCacheBuilder.xml
@@ -1,8 +1,9 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" name="org.eclipse.app4mc.amalthea.converters093.utils.HWCacheBuilder">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" name="org.eclipse.app4mc.amalthea.converters093.utils.HWCacheBuilder">
    <property name="input_model_version" value="0.9.2"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.ICache"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters093.utils.HWCacheBuilder"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.093/src/org/eclipse/app4mc/amalthea/converters093/impl/HwConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.093/src/org/eclipse/app4mc/amalthea/converters093/impl/HwConverter.java
index 7a0d4d6..c740933 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.093/src/org/eclipse/app4mc/amalthea/converters093/impl/HwConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.093/src/org/eclipse/app4mc/amalthea/converters093/impl/HwConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2018-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2018-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -27,14 +27,14 @@
 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

 import org.eclipse.app4mc.amalthea.converters.common.utils.ModelVersion;

 import org.eclipse.app4mc.amalthea.converters093.utils.HelperUtils_092_093;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Attribute;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.jdom2.Parent;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 @Component(

 		property = {

@@ -44,7 +44,8 @@
 

 public class HwConverter extends AbstractConverter {

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(HwConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	@Override

 	@Activate

@@ -55,7 +56,7 @@
 	@Override

 	public void convert(File targetFile, Map<File, Document> filename2documentMap, List<ICache> caches) {

 

-		LOGGER.info("Migration from 0.9.2 to 0.9.3 : Executing Hw converter for model file : {}", targetFile.getName());

+		logger.info("Migration from 0.9.2 to 0.9.3 : Executing Hw converter for model file : {0}", targetFile.getName());

 

 		final Document root = filename2documentMap.get(targetFile);

 

@@ -117,7 +118,7 @@
 					int indexOf = parentElement.indexOf(latencyElement);

 

 					Element migratedElement = HelperUtils_092_093.migrateDeviationElementContainingLongValue(

-							latencyElement.getChild("cycles"), elementName, 1.0);

+							latencyElement.getChild("cycles"), elementName, 1.0, logger);

 

 					parentElement.removeContent(latencyElement);

 

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.093/src/org/eclipse/app4mc/amalthea/converters093/impl/MeasurementConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.093/src/org/eclipse/app4mc/amalthea/converters093/impl/MeasurementConverter.java
index 13e96d1..bd04eb4 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.093/src/org/eclipse/app4mc/amalthea/converters093/impl/MeasurementConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.093/src/org/eclipse/app4mc/amalthea/converters093/impl/MeasurementConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2018-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2018-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -27,12 +27,12 @@
 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

 import org.eclipse.app4mc.amalthea.converters.common.utils.ModelVersion;

 import org.eclipse.app4mc.amalthea.converters093.utils.HelperUtils_092_093;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 @Component(

 		property = {

@@ -42,7 +42,8 @@
 

 public class MeasurementConverter extends AbstractConverter {

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(MeasurementConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	@Override

 	@Activate

@@ -53,8 +54,8 @@
 	@Override

 	public void convert(File targetFile, Map<File, Document> filename2documentMap, List<ICache> caches) {

 

-		LOGGER.info(

-				"Migration from 0.9.2 to 0.9.3 : Executing Measurement converter for model file : {}", targetFile.getName());

+		logger.info(

+				"Migration from 0.9.2 to 0.9.3 : Executing Measurement converter for model file : {0}", targetFile.getName());

 

 		final Document root = filename2documentMap.get(targetFile);

 

@@ -81,7 +82,7 @@
 			Element runtimeDeviation_Time_element = measurementElement.getChild("runtimeDeviation");

 

 			if(runtimeDeviation_Time_element!=null) {

-				Element migratedElement = HelperUtils_092_093.migrateDeviationElementContainingTimeValue(runtimeDeviation_Time_element, "runtimeDeviation");

+				Element migratedElement = HelperUtils_092_093.migrateDeviationElementContainingTimeValue(runtimeDeviation_Time_element, "runtimeDeviation", logger);

 				int indexOf = measurementElement.indexOf(runtimeDeviation_Time_element);

 				measurementElement.removeContent(runtimeDeviation_Time_element);

 

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.093/src/org/eclipse/app4mc/amalthea/converters093/impl/OsConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.093/src/org/eclipse/app4mc/amalthea/converters093/impl/OsConverter.java
index 91e2ade..6755128 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.093/src/org/eclipse/app4mc/amalthea/converters093/impl/OsConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.093/src/org/eclipse/app4mc/amalthea/converters093/impl/OsConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2018-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2018-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -27,13 +27,13 @@
 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

 import org.eclipse.app4mc.amalthea.converters.common.utils.ModelVersion;

 import org.eclipse.app4mc.amalthea.converters093.utils.HelperUtils_092_093;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Attribute;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 @Component(

 		property = {

@@ -49,7 +49,8 @@
 	private static final String VALUE = "value";

 	private static final String AMLT_PREFIX = "amlt://#";

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(OsConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	@Override

 	@Activate

@@ -60,7 +61,7 @@
 	@Override

 	public void convert(File targetFile, Map<File, Document> filename2documentMap, List<ICache> caches) {

 

-		LOGGER.info("Migration from 0.9.2 to 0.9.3 : Executing Os converter for model file : {}",

+		logger.info("Migration from 0.9.2 to 0.9.3 : Executing Os converter for model file : {0}",

 				targetFile.getName());

 

 		final Document root = filename2documentMap.get(targetFile);

@@ -200,7 +201,7 @@
 

 				if(deviationElement !=null) {

 

-					Element migratedElement= HelperUtils_092_093.migrateDeviationElementContainingLongValue(deviationElement, "default",1.0);

+					Element migratedElement= HelperUtils_092_093.migrateDeviationElementContainingLongValue(deviationElement, "default", 1.0, logger);

 

 					osInstructionsSubElement.removeContent(deviationElement);

 

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.093/src/org/eclipse/app4mc/amalthea/converters093/impl/RootElementConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.093/src/org/eclipse/app4mc/amalthea/converters093/impl/RootElementConverter.java
index b24c30f..ff7b7a0 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.093/src/org/eclipse/app4mc/amalthea/converters093/impl/RootElementConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.093/src/org/eclipse/app4mc/amalthea/converters093/impl/RootElementConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2018-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2018-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -24,12 +24,12 @@
 import org.eclipse.app4mc.amalthea.converters.common.base.IConverter;

 import org.eclipse.app4mc.amalthea.converters.common.converter.AbstractConverter;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 /**

  * This class is responsible for converting the root element of the model file as : "Amalthea" (only if for the supplied

@@ -47,7 +47,8 @@
 		service = IConverter.class)

 public class RootElementConverter extends AbstractConverter {

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(RootElementConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	@Override

 	@Activate

@@ -77,7 +78,7 @@
 		 */

 

 

-		LOGGER.info("Migration from 0.9.2 to 0.9.3 : Executing Root Element Converter for model file : {}",

+		logger.info("Migration from 0.9.2 to 0.9.3 : Executing Root Element Converter for model file : {0}",

 				targetFile.getName());

 

 		final Document document = fileName2documentMap.get(targetFile);

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.093/src/org/eclipse/app4mc/amalthea/converters093/impl/StimulusConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.093/src/org/eclipse/app4mc/amalthea/converters093/impl/StimulusConverter.java
index 4154cb5..608167a 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.093/src/org/eclipse/app4mc/amalthea/converters093/impl/StimulusConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.093/src/org/eclipse/app4mc/amalthea/converters093/impl/StimulusConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2018-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2018-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -27,12 +27,12 @@
 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

 import org.eclipse.app4mc.amalthea.converters.common.utils.ModelVersion;

 import org.eclipse.app4mc.amalthea.converters093.utils.HelperUtils_092_093;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 @Component(

 		property = {

@@ -42,7 +42,8 @@
 		service = IConverter.class)

 public class StimulusConverter extends AbstractConverter {

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(StimulusConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	@Override

 	@Activate

@@ -53,8 +54,8 @@
 	@Override

 	public void convert(File targetFile, Map<File, Document> filename2documentMap, List<ICache> caches) {

 

-		LOGGER.info(

-				"Migration from 0.9.2 to 0.9.3 : Executing Stimulus converter for model file : {}", targetFile.getName());

+		logger.info(

+				"Migration from 0.9.2 to 0.9.3 : Executing Stimulus converter for model file : {0}", targetFile.getName());

 

 		final Document root = filename2documentMap.get(targetFile);

 		if (root == null) return;

@@ -84,7 +85,7 @@
 

 					if (jitter_time_deviationElement != null) {

 

-						Element migratedElement = HelperUtils_092_093.migrateDeviationElementContainingTimeValue(jitter_time_deviationElement, "jitter");

+						Element migratedElement = HelperUtils_092_093.migrateDeviationElementContainingTimeValue(jitter_time_deviationElement, "jitter", logger);

 

 						int indexOf = stimuliElement.indexOf(jitter_time_deviationElement);

 

@@ -102,7 +103,7 @@
 

 					if (nextOccurrence_time_deviationElement != null) {

 

-						Element migratedElement = HelperUtils_092_093.migrateDeviationElementContainingTimeValue(nextOccurrence_time_deviationElement, "nextOccurrence");

+						Element migratedElement = HelperUtils_092_093.migrateDeviationElementContainingTimeValue(nextOccurrence_time_deviationElement, "nextOccurrence", logger);

 

 						int indexOf = stimuliElement.indexOf(nextOccurrence_time_deviationElement);

 

@@ -123,7 +124,7 @@
 

 					if(occurrencesPerStep_double_deviationElement!=null) {

 

-						Element migratedElement = HelperUtils_092_093.migrateDeviationElementContainingDoubleValue(occurrencesPerStep_double_deviationElement, "occurrencesPerStep");

+						Element migratedElement = HelperUtils_092_093.migrateDeviationElementContainingDoubleValue(occurrencesPerStep_double_deviationElement, "occurrencesPerStep", logger);

 

 						int indexOf = stimuliElement.indexOf(occurrencesPerStep_double_deviationElement);

 

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.093/src/org/eclipse/app4mc/amalthea/converters093/impl/SwConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.093/src/org/eclipse/app4mc/amalthea/converters093/impl/SwConverter.java
index 9dbd526..7e49864 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.093/src/org/eclipse/app4mc/amalthea/converters093/impl/SwConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.093/src/org/eclipse/app4mc/amalthea/converters093/impl/SwConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2018-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2018-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -34,14 +34,14 @@
 import org.eclipse.app4mc.amalthea.converters093.utils.HWCacheBuilder;

 import org.eclipse.app4mc.amalthea.converters093.utils.HelperUtils_092_093;

 import org.eclipse.app4mc.amalthea.converters093.utils.PUDefinition_IPCData;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Attribute;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.jdom2.Parent;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 @Component(

 		property = {

@@ -57,7 +57,8 @@
 	private static final String KEY = "key";

 	private static final String VALUE = "value";

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(SwConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	private PUDefinition_IPCData cache;

 

@@ -70,8 +71,8 @@
 	@Override

 	public void convert(File targetFile, Map<File, Document> fileDocumentMapping, List<ICache> caches) {

 

-		LOGGER.info(

-				"Migration from 0.9.2 to 0.9.3 : Executing Sw converter for model file : {}", targetFile.getName());

+		logger.info(

+				"Migration from 0.9.2 to 0.9.3 : Executing Sw converter for model file : {0}", targetFile.getName());

 

 		this.cache = getHWCache(caches);

 		if (this.cache == null) {

@@ -114,7 +115,7 @@
 

 					if(occurrencesPerStep_double_deviationElement!=null) {

 

-						Element migratedElement = HelperUtils_092_093.migrateDeviationElementContainingDoubleValue(occurrencesPerStep_double_deviationElement, "occurrencesPerStep");

+						Element migratedElement = HelperUtils_092_093.migrateDeviationElementContainingDoubleValue(occurrencesPerStep_double_deviationElement, "occurrencesPerStep", logger);

 

 						int indexOf = activationElement.indexOf(occurrencesPerStep_double_deviationElement);

 

@@ -131,7 +132,7 @@
 

 					if(activationDeviation_Time_deviationElement!=null) {

 

-						Element migratedElement = HelperUtils_092_093.migrateDeviationElementContainingTimeValue(activationDeviation_Time_deviationElement, "activationDeviation");

+						Element migratedElement = HelperUtils_092_093.migrateDeviationElementContainingTimeValue(activationDeviation_Time_deviationElement, "activationDeviation", logger);

 

 						int indexOf = activationElement.indexOf(activationDeviation_Time_deviationElement);

 

@@ -304,7 +305,7 @@
 				} else {

 

 					if (containerType.equals("TaskScheduler") || containerType.equals("InterruptController")) {

-						LOGGER.warn("In {} : {}, ExecutionNeed element's NeedEntry (having HwFeatureCategory : {})-> can not be migrated. As this is not supported in 0.9.3. \nIn {} element only NeedEntry elements having HwFeatureCategory Instructions are migrated to Ticks",

+						logger.warn("In {0} : {1}, ExecutionNeed element's NeedEntry (having HwFeatureCategory : {2})-> can not be migrated. As this is not supported in 0.9.3. \nIn {3} element only NeedEntry elements having HwFeatureCategory Instructions are migrated to Ticks",

 								containerType,

 								containerElementName,

 								key,

@@ -451,7 +452,7 @@
 			}

 

 			if (extendedElementsbuffer.length() > 0) {

-				LOGGER.info("In {} : \"{}, \" Entries of ExecutionNeed (extended elements) with following keys can not be migrated : {} -> (only supported \"HwFeatureCategory\" as key is : \"Instructions\")",

+				logger.info("In {0} : \"{1}, \" Entries of ExecutionNeed (extended elements) with following keys can not be migrated : {2} -> (only supported \"HwFeatureCategory\" as key is : \"Instructions\")",

 						containerType,

 						containerElementName,

 						extendedElementsbuffer.toString().substring(0, extendedElementsbuffer.length() - 1));

@@ -459,7 +460,7 @@
 			}

 

 			if ((defaultElementsbuffer.length() > 0)&&(containerType.equals("TaskScheduler")||containerType.equals("InterruptController"))) {

-				LOGGER.info("In {} : \"{}, \" Entries of ExecutionNeed (default elements) with following keys can not be migrated : {} ->(only supported \"HwFeatureCategory\" as key is : \"Instructions\")",

+				logger.info("In {0} : \"{1}, \" Entries of ExecutionNeed (default elements) with following keys can not be migrated : {2} ->(only supported \"HwFeatureCategory\" as key is : \"Instructions\")",

 						containerType,

 						containerElementName,

 						defaultElementsbuffer.toString().substring(0, defaultElementsbuffer.length() - 1));

@@ -512,7 +513,7 @@
 

 				 if(valueValue!=null) {

 					 //TODO: divide with value of Instructions

-					 tc_executionTicksElement.getAttributes().add(new Attribute(VALUE, HelperUtils_092_093.getValueAfterApplyingIPC(valueValue, ipcValue)));

+					 tc_executionTicksElement.getAttributes().add(new Attribute(VALUE, HelperUtils_092_093.getValueAfterApplyingIPC(valueValue, ipcValue, logger)));

 				 }

 

 				 return tc_executionTicksElement;

@@ -520,7 +521,7 @@
 

 				 Element deviationElement = valueElement.getChild("deviation");

 

-				 return HelperUtils_092_093.migrateDeviationElementContainingLongValue(deviationElement, newElementName,ipcValue);

+				 return HelperUtils_092_093.migrateDeviationElementContainingLongValue(deviationElement, newElementName, ipcValue, logger);

 			 }

 		}

 		return null;

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.093/src/org/eclipse/app4mc/amalthea/converters093/utils/HWCacheBuilder.java b/plugins/org.eclipse.app4mc.amalthea.converters.093/src/org/eclipse/app4mc/amalthea/converters093/utils/HWCacheBuilder.java
index 5def10d..b2848c3 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.093/src/org/eclipse/app4mc/amalthea/converters093/utils/HWCacheBuilder.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.093/src/org/eclipse/app4mc/amalthea/converters093/utils/HWCacheBuilder.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2018-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2018-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -26,23 +26,26 @@
 import org.eclipse.app4mc.amalthea.converters.common.ServiceConstants;

 import org.eclipse.app4mc.amalthea.converters.common.base.ICache;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 @Component(property = ServiceConstants.INPUT_MODEL_VERSION_PROPERTY + "=0.9.2")

 public class HWCacheBuilder implements ICache {

 

-	public static final Logger LOGGER = LoggerFactory.getLogger(HWCacheBuilder.class);

+	@Reference

+	SessionLogger logger;

 

 	private final HashMap<File, Map<String, Object>> map = new HashMap<>();

 

 	@Override

 	public void buildCache(final Map<File, Document> fileDocumentMapping) {

 

-		LOGGER.info("Build up HWCache for 0.9.2");

+		if (logger != null) {

+			logger.info("Build up HWCache for 0.9.2");

+		}

 

 		HashMap<String, Object> hashMap = new HashMap<>();

 

@@ -89,8 +92,8 @@
 								.collect(Collectors.toList());

 						if (!ipcHwFeatures.isEmpty()) {

 							if (ipcHwFeatures.size() > 1) {

-								LOGGER.error(

-										"ProcessingUnitDefinition : \"{}\" contains multiple HwFeatures of type IPC. In this case, only the first HwFeature : {} will be considered for runtime info calculation",

+								logger.error(

+										"ProcessingUnitDefinition : \"{0}\" contains multiple HwFeatures of type IPC. In this case, only the first HwFeature : {1} will be considered for runtime info calculation",

 										puDefinitionName, ipcHwFeatures.get(0));

 							}

 

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.093/src/org/eclipse/app4mc/amalthea/converters093/utils/HelperUtils_092_093.java b/plugins/org.eclipse.app4mc.amalthea.converters.093/src/org/eclipse/app4mc/amalthea/converters093/utils/HelperUtils_092_093.java
index 8d255b5..6cfdffe 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.093/src/org/eclipse/app4mc/amalthea/converters093/utils/HelperUtils_092_093.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.093/src/org/eclipse/app4mc/amalthea/converters093/utils/HelperUtils_092_093.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2017-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2017-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -17,10 +17,9 @@
 

 import org.eclipse.app4mc.amalthea.converters.common.utils.AmaltheaNamespaceRegistry;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Attribute;

 import org.jdom2.Element;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

 

 public final class HelperUtils_092_093 {

 

@@ -36,8 +35,6 @@
 	private static final String UPPER_BOUND = "upperBound";

 	private static final String UNIT = "unit";

 

-	public static final Logger LOGGER = LoggerFactory.getLogger(HelperUtils_092_093.class);

-

 	private HelperUtils_092_093() {

 		// empty private default constructor

 	}

@@ -63,7 +60,7 @@
 	 * @return

 	 */

 	public static Element migrateDeviationElementContainingLongValue(Element oldDeviationElement, String newElementName,

-			double ipcValue) {

+			double ipcValue, SessionLogger logger) {

 

 		if (oldDeviationElement == null) return null;

 		

@@ -74,7 +71,7 @@
 			String value = lowerBound.getAttributeValue(VALUE);

 			if (value != null) {

 				newDeviationElement.setAttribute(

-						new Attribute(LOWER_BOUND, getValueAfterApplyingIPC(value, ipcValue)));

+						new Attribute(LOWER_BOUND, getValueAfterApplyingIPC(value, ipcValue, logger)));

 			}

 		}

 

@@ -83,7 +80,7 @@
 			String value = upperBound.getAttributeValue(VALUE);

 			if (value != null) {

 				newDeviationElement.setAttribute(

-						new Attribute(UPPER_BOUND, getValueAfterApplyingIPC(value, ipcValue)));

+						new Attribute(UPPER_BOUND, getValueAfterApplyingIPC(value, ipcValue, logger)));

 			}

 		}

 

@@ -151,7 +148,7 @@
 

 			String mean = HelperUtil.getValueFromChildElement(oldDistributionElement, MEAN, VALUE);

 			if (mean != null) {

-				newDeviationElement.setAttribute(new Attribute(MEAN, getValueAfterApplyingIPC(mean, ipcValue)));

+				newDeviationElement.setAttribute(new Attribute(MEAN, getValueAfterApplyingIPC(mean, ipcValue, logger)));

 			}

 

 			String sd = HelperUtil.getValueFromChildElement(oldDistributionElement, SD, VALUE);

@@ -191,12 +188,12 @@
 			String mean = HelperUtil.getValueFromChildElement(oldDistributionElement, MEAN, VALUE);

 			if (mean != null) {

 				newDeviationElement

-						.setAttribute(new Attribute(AVERAGE, getValueAfterApplyingIPC(mean, ipcValue)));

+						.setAttribute(new Attribute(AVERAGE, getValueAfterApplyingIPC(mean, ipcValue, logger)));

 			}

 

 		} else if (oldDistributionType.equals("am:WeibullParameters")) {

 

-			LOGGER.error(

+			logger.error(

 					"Deviation with \"WeibullParameters\" as distribution can not be migrated as the semantics of \"WeibullParameters\" were not clearly described");

 			return null;

 		}

@@ -224,7 +221,7 @@
 	 * @return

 	 */

 

-	public static Element migrateDeviationElementContainingDoubleValue(Element oldDeviationElement, String newElementName) {

+	public static Element migrateDeviationElementContainingDoubleValue(Element oldDeviationElement, String newElementName, SessionLogger logger) {

 

 		if (oldDeviationElement == null) return null;

 		

@@ -354,7 +351,7 @@
 

 		} else if (oldDistributionType.equals("am:WeibullParameters")) {

 

-			LOGGER.error(

+			logger.error(

 					"Deviation with \"WeibullParameters\" as distribution can not be migrated as the semantics of \"WeibullParameters\" were not clearly described");

 

 			return null;

@@ -384,7 +381,7 @@
 	 * @return

 	 */

 

-	public static Element migrateDeviationElementContainingTimeValue(Element oldDeviationElement, String newElementName) {

+	public static Element migrateDeviationElementContainingTimeValue(Element oldDeviationElement, String newElementName, SessionLogger logger) {

 

 		if (oldDeviationElement == null) return null;

 		

@@ -553,7 +550,7 @@
 

 		} else if (oldDistributionType.equals("am:WeibullParameters")) {

 

-			LOGGER.error(

+			logger.error(

 					"Deviation with \"WeibullParameters\" as distribution can not be migrated as the semantics of \"WeibullParameters\" were not clearly described");

 

 			return null;

@@ -562,13 +559,13 @@
 		return newDeviationElement;

 	}

 

-	public static String getValueAfterApplyingIPC(String value, double ipcValue) {

+	public static String getValueAfterApplyingIPC(String value, double ipcValue, SessionLogger logger) {

 		if (ipcValue != 0) {

 			try {

 				Double result = Double.parseDouble(value) / ipcValue;

 				return result.longValue() + "";

 			} catch (Exception e) {

-				LOGGER.error("error on IPC value conversion", e);

+				logger.error("error on IPC value conversion", e);

 			}

 		}

 		return value;

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.094/META-INF/MANIFEST.MF b/plugins/org.eclipse.app4mc.amalthea.converters.094/META-INF/MANIFEST.MF
index 13a00f8..1086c3a 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.094/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.094/META-INF/MANIFEST.MF
@@ -10,9 +10,9 @@
  org.eclipse.app4mc.amalthea.converters.common.base,

  org.eclipse.app4mc.amalthea.converters.common.converter,

  org.eclipse.app4mc.amalthea.converters.common.utils,

+ org.eclipse.app4mc.util.sessionlog;version="1.1.0",

  org.jdom2;version="2.0.6",

- org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional,

- org.slf4j

+ org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional

 Bundle-ActivationPolicy: lazy

 Service-Component: OSGI-INF/org.eclipse.app4mc.amalthea.converters094.impl.HwConverter.xml,

  OSGI-INF/org.eclipse.app4mc.amalthea.converters094.impl.SwConverter.xml

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.094/OSGI-INF/org.eclipse.app4mc.amalthea.converters094.impl.HwConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.094/OSGI-INF/org.eclipse.app4mc.amalthea.converters094.impl.HwConverter.xml
index ee9322b..e801e4a 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.094/OSGI-INF/org.eclipse.app4mc.amalthea.converters094.impl.HwConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.094/OSGI-INF/org.eclipse.app4mc.amalthea.converters094.impl.HwConverter.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters094.impl.HwConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters094.impl.HwConverter">
    <property name="input_model_version" value="0.9.3"/>
    <property name="output_model_version" value="0.9.4"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters094.impl.HwConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.094/OSGI-INF/org.eclipse.app4mc.amalthea.converters094.impl.SwConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.094/OSGI-INF/org.eclipse.app4mc.amalthea.converters094.impl.SwConverter.xml
index 1e0b37a..4dadcaf 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.094/OSGI-INF/org.eclipse.app4mc.amalthea.converters094.impl.SwConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.094/OSGI-INF/org.eclipse.app4mc.amalthea.converters094.impl.SwConverter.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters094.impl.SwConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters094.impl.SwConverter">
    <property name="input_model_version" value="0.9.3"/>
    <property name="output_model_version" value="0.9.4"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters094.impl.SwConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.094/src/org/eclipse/app4mc/amalthea/converters094/impl/HwConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.094/src/org/eclipse/app4mc/amalthea/converters094/impl/HwConverter.java
index bce123c..0f61288 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.094/src/org/eclipse/app4mc/amalthea/converters094/impl/HwConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.094/src/org/eclipse/app4mc/amalthea/converters094/impl/HwConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2019, 2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2019, 2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -26,13 +26,13 @@
 import org.eclipse.app4mc.amalthea.converters.common.utils.AmaltheaNamespaceRegistry;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

 import org.eclipse.app4mc.amalthea.converters.common.utils.ModelVersion;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Attribute;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 @Component(

 		property = {

@@ -42,7 +42,8 @@
 

 public class HwConverter extends AbstractConverter {

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(HwConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	@Override

 	@Activate

@@ -53,7 +54,7 @@
 	@Override

 	public void convert(File targetFile, Map<File, Document> filename2documentMap, List<ICache> caches) {

 

-		LOGGER.info("Migration from 0.9.3 to 0.9.4 : Executing Hw converter for model file : {}", targetFile.getName());

+		logger.info("Migration from 0.9.3 to 0.9.4 : Executing Hw converter for model file : {0}", targetFile.getName());

 

 		final Document document = filename2documentMap.get(targetFile);

 		if (document == null) {

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.094/src/org/eclipse/app4mc/amalthea/converters094/impl/SwConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.094/src/org/eclipse/app4mc/amalthea/converters094/impl/SwConverter.java
index 7d2e6d6..bb35c22 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.094/src/org/eclipse/app4mc/amalthea/converters094/impl/SwConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.094/src/org/eclipse/app4mc/amalthea/converters094/impl/SwConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2019, 2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2019, 2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -28,13 +28,13 @@
 import org.eclipse.app4mc.amalthea.converters.common.utils.AmaltheaNamespaceRegistry;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

 import org.eclipse.app4mc.amalthea.converters.common.utils.ModelVersion;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Attribute;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 @Component(

 		property = {

@@ -52,7 +52,8 @@
 	private static final String VALUE = "value";

 	private static final String AMLT_PREFIX = "amlt:/#";

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(SwConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	@Override

 	@Activate

@@ -63,7 +64,7 @@
 	@Override

 	public void convert(File targetFile, Map<File, Document> filename2documentMap, List<ICache> caches) {

 

-		LOGGER.info("Migration from 0.9.3 to 0.9.4 : Executing Sw converter for model file : {}", targetFile.getName());

+		logger.info("Migration from 0.9.3 to 0.9.4 : Executing Sw converter for model file : {0}", targetFile.getName());

 

 		final Document document = filename2documentMap.get(targetFile);

 		if (document == null) {

@@ -378,7 +379,7 @@
 			// remove disabling list

 			Element disablingList = getSingleChild(stimulus, "disablingModeValueList");

 			if (disablingList != null) {

-				LOGGER.warn("From Stimulus : {}, disablingModeValueList element is removed (as this element is no longer supported by AMALTHEA meta model from 0.9.4 version) ", stimulusName);

+				logger.warn("From Stimulus : {0}, disablingModeValueList element is removed (as this element is no longer supported by AMALTHEA meta model from 0.9.4 version) ", stimulusName);

 				stimulus.removeChild("disablingModeValueList");

 			}

 		}

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.095/META-INF/MANIFEST.MF b/plugins/org.eclipse.app4mc.amalthea.converters.095/META-INF/MANIFEST.MF
index 5a5bfd7..dafabaa 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.095/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.095/META-INF/MANIFEST.MF
@@ -10,9 +10,9 @@
  org.eclipse.app4mc.amalthea.converters.common.base,

  org.eclipse.app4mc.amalthea.converters.common.converter,

  org.eclipse.app4mc.amalthea.converters.common.utils,

+ org.eclipse.app4mc.util.sessionlog;version="1.1.0",

  org.jdom2;version="2.0.6",

- org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional,

- org.slf4j

+ org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional

 Bundle-ActivationPolicy: lazy

 Service-Component: OSGI-INF/org.eclipse.app4mc.amalthea.converters095.impl.SwConverter.xml,

  OSGI-INF/org.eclipse.app4mc.amalthea.converters095.impl.StimuliConverter.xml

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.095/OSGI-INF/org.eclipse.app4mc.amalthea.converters095.impl.StimuliConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.095/OSGI-INF/org.eclipse.app4mc.amalthea.converters095.impl.StimuliConverter.xml
index e82d4b6..1abf2fc 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.095/OSGI-INF/org.eclipse.app4mc.amalthea.converters095.impl.StimuliConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.095/OSGI-INF/org.eclipse.app4mc.amalthea.converters095.impl.StimuliConverter.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters095.impl.StimuliConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters095.impl.StimuliConverter">
    <property name="input_model_version" value="0.9.4"/>
    <property name="output_model_version" value="0.9.5"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters095.impl.StimuliConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.095/OSGI-INF/org.eclipse.app4mc.amalthea.converters095.impl.SwConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.095/OSGI-INF/org.eclipse.app4mc.amalthea.converters095.impl.SwConverter.xml
index cd00dc0..c2e6ec0 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.095/OSGI-INF/org.eclipse.app4mc.amalthea.converters095.impl.SwConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.095/OSGI-INF/org.eclipse.app4mc.amalthea.converters095.impl.SwConverter.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters095.impl.SwConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters095.impl.SwConverter">
    <property name="input_model_version" value="0.9.4"/>
    <property name="output_model_version" value="0.9.5"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters095.impl.SwConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.095/src/org/eclipse/app4mc/amalthea/converters095/impl/StimuliConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.095/src/org/eclipse/app4mc/amalthea/converters095/impl/StimuliConverter.java
index 5e5d068..7f9ae3e 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.095/src/org/eclipse/app4mc/amalthea/converters095/impl/StimuliConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.095/src/org/eclipse/app4mc/amalthea/converters095/impl/StimuliConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2019-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2019-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -28,13 +28,13 @@
 import org.eclipse.app4mc.amalthea.converters.common.utils.AmaltheaNamespaceRegistry;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

 import org.eclipse.app4mc.amalthea.converters.common.utils.ModelVersion;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Attribute;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 @Component(

 		property = {

@@ -49,7 +49,8 @@
 	private static final String VALUE = "value";

 	private static final String UNIT = "unit";

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(StimuliConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	@Override

 	@Activate

@@ -59,7 +60,7 @@
 

 	@Override

 	public void convert(File targetFile, Map<File, Document> filename2documentMap, List<ICache> caches) {

-		LOGGER.info("Migration from 0.9.4 to 0.9.5 : Executing Stimuli converter for model file : {}", targetFile.getName());

+		logger.info("Migration from 0.9.4 to 0.9.5 : Executing Stimuli converter for model file : {0}", targetFile.getName());

 		basicConvert(targetFile, filename2documentMap);

 	}

 

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.095/src/org/eclipse/app4mc/amalthea/converters095/impl/SwConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.095/src/org/eclipse/app4mc/amalthea/converters095/impl/SwConverter.java
index 77a7bb9..a7239cc 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.095/src/org/eclipse/app4mc/amalthea/converters095/impl/SwConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.095/src/org/eclipse/app4mc/amalthea/converters095/impl/SwConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2019-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2019-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -26,13 +26,13 @@
 import org.eclipse.app4mc.amalthea.converters.common.converter.AbstractConverter;

 import org.eclipse.app4mc.amalthea.converters.common.utils.AmaltheaNamespaceRegistry;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Attribute;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 @Component(

 		property = {

@@ -42,7 +42,8 @@
 

 public class SwConverter extends AbstractConverter {

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(SwConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	@Override

 	@Activate

@@ -52,7 +53,7 @@
 

 	@Override

 	public void convert(File targetFile, Map<File, Document> filename2documentMap, List<ICache> caches) {

-		LOGGER.info("Migration from 0.9.4 to 0.9.5 : Executing Sw converter for model file : {}",

+		logger.info("Migration from 0.9.4 to 0.9.5 : Executing Sw converter for model file : {0}",

 				targetFile.getName());

 

 		basicConvert(targetFile, filename2documentMap, caches);

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.096/META-INF/MANIFEST.MF b/plugins/org.eclipse.app4mc.amalthea.converters.096/META-INF/MANIFEST.MF
index 7737670..d24a818 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.096/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.096/META-INF/MANIFEST.MF
@@ -10,9 +10,9 @@
  org.eclipse.app4mc.amalthea.converters.common.base,

  org.eclipse.app4mc.amalthea.converters.common.converter,

  org.eclipse.app4mc.amalthea.converters.common.utils,

+ org.eclipse.app4mc.util.sessionlog;version="1.1.0",

  org.jdom2;version="2.0.6",

- org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional,

- org.slf4j

+ org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional

 Bundle-ActivationPolicy: lazy

 Service-Component: OSGI-INF/org.eclipse.app4mc.amalthea.converters096.impl.SwConverter.xml,

  OSGI-INF/org.eclipse.app4mc.amalthea.converters096.impl.ConstraintsConverter.xml

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.096/OSGI-INF/org.eclipse.app4mc.amalthea.converters096.impl.ConstraintsConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.096/OSGI-INF/org.eclipse.app4mc.amalthea.converters096.impl.ConstraintsConverter.xml
index 65d4676..6184f7e 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.096/OSGI-INF/org.eclipse.app4mc.amalthea.converters096.impl.ConstraintsConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.096/OSGI-INF/org.eclipse.app4mc.amalthea.converters096.impl.ConstraintsConverter.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters096.impl.ConstraintsConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters096.impl.ConstraintsConverter">
    <property name="input_model_version" value="0.9.5"/>
    <property name="output_model_version" value="0.9.6"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters096.impl.ConstraintsConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.096/OSGI-INF/org.eclipse.app4mc.amalthea.converters096.impl.SwConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.096/OSGI-INF/org.eclipse.app4mc.amalthea.converters096.impl.SwConverter.xml
index 1ea3594..9a97b60 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.096/OSGI-INF/org.eclipse.app4mc.amalthea.converters096.impl.SwConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.096/OSGI-INF/org.eclipse.app4mc.amalthea.converters096.impl.SwConverter.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters096.impl.SwConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters096.impl.SwConverter">
    <property name="input_model_version" value="0.9.5"/>
    <property name="output_model_version" value="0.9.6"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters096.impl.SwConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.096/src/org/eclipse/app4mc/amalthea/converters096/impl/ConstraintsConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.096/src/org/eclipse/app4mc/amalthea/converters096/impl/ConstraintsConverter.java
index bd0ce57..6e88c90 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.096/src/org/eclipse/app4mc/amalthea/converters096/impl/ConstraintsConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.096/src/org/eclipse/app4mc/amalthea/converters096/impl/ConstraintsConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2019, 2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2019, 2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -26,13 +26,13 @@
 import org.eclipse.app4mc.amalthea.converters.common.converter.AbstractConverter;

 import org.eclipse.app4mc.amalthea.converters.common.utils.AmaltheaNamespaceRegistry;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Attribute;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 @Component(

 		property = {

@@ -42,7 +42,8 @@
 

 public class ConstraintsConverter extends AbstractConverter {

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(ConstraintsConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	@Override

 	@Activate

@@ -53,7 +54,7 @@
 	@Override

 	public void convert(File file, Map<File, Document> map, List<ICache> caches) {

 

-		LOGGER.info("Migration from 0.9.5 to 0.9.6 : Executing Constraints converter for model file : {}", file.getName());

+		logger.info("Migration from 0.9.5 to 0.9.6 : Executing Constraints converter for model file : {0}", file.getName());

 

 		basicConvert(file, map);

 	}

@@ -89,7 +90,7 @@
 

 			List<Element> strands = new ArrayList<>(element.getChildren("strands"));

 			if(hasSegments && !strands.isEmpty()) {

-				LOGGER.info("EventChains Migration from 0.9.5 to 0.9.6 : Removing strands because Segments are already migrated and both cannot exist at a time in 0.9.6.");

+				logger.info("EventChains Migration from 0.9.5 to 0.9.6 : Removing strands because Segments are already migrated and both cannot exist at a time in 0.9.6.");

 				for (Element strand : strands) {

 					strand.detach();

 				}

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.096/src/org/eclipse/app4mc/amalthea/converters096/impl/SwConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.096/src/org/eclipse/app4mc/amalthea/converters096/impl/SwConverter.java
index d23210c..d5c5cbb 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.096/src/org/eclipse/app4mc/amalthea/converters096/impl/SwConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.096/src/org/eclipse/app4mc/amalthea/converters096/impl/SwConverter.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2019, 2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2019, 2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -26,12 +26,12 @@
 import org.eclipse.app4mc.amalthea.converters.common.converter.AbstractConverter;

 import org.eclipse.app4mc.amalthea.converters.common.utils.AmaltheaNamespaceRegistry;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Document;

 import org.jdom2.Element;

 import org.osgi.service.component.annotations.Activate;

 import org.osgi.service.component.annotations.Component;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

+import org.osgi.service.component.annotations.Reference;

 

 @Component(

 		property = {

@@ -46,7 +46,8 @@
 	private static final String KEY = "key";

 	private static final String VALUE = "value";

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(SwConverter.class);

+	@Reference

+	SessionLogger logger;

 

 	@Override

 	@Activate

@@ -56,7 +57,7 @@
 

 	@Override

 	public void convert(File targetFile, Map<File, Document> filename2documentMap, List<ICache> caches) {

-		LOGGER.info("Migration from 0.9.5 to 0.9.6 : Executing Sw converter for model file : {}", targetFile.getName());

+		logger.info("Migration from 0.9.5 to 0.9.6 : Executing Sw converter for model file : {0}", targetFile.getName());

 		basicConvert(targetFile, filename2documentMap);

 	}

 

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.097/META-INF/MANIFEST.MF b/plugins/org.eclipse.app4mc.amalthea.converters.097/META-INF/MANIFEST.MF
index a4b3e94..f59cd9b 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.097/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.097/META-INF/MANIFEST.MF
@@ -10,9 +10,9 @@
  org.eclipse.app4mc.amalthea.converters.common.base,
  org.eclipse.app4mc.amalthea.converters.common.converter,
  org.eclipse.app4mc.amalthea.converters.common.utils,
+ org.eclipse.app4mc.util.sessionlog;version="1.1.0",
  org.jdom2;version="2.0.6",
- org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional,
- org.slf4j
+ org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional
 Bundle-ActivationPolicy: lazy
 Service-Component: OSGI-INF/org.eclipse.app4mc.amalthea.converters097.utils.ComponentPortInterfaceCacheBuilder.xml,
  OSGI-INF/org.eclipse.app4mc.amalthea.converters097.utils.AmltModelReferencePostProcessor.xml,
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.097/OSGI-INF/org.eclipse.app4mc.amalthea.converters097.impl.ComponentsModelConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.097/OSGI-INF/org.eclipse.app4mc.amalthea.converters097.impl.ComponentsModelConverter.xml
index cacc049..32094fd 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.097/OSGI-INF/org.eclipse.app4mc.amalthea.converters097.impl.ComponentsModelConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.097/OSGI-INF/org.eclipse.app4mc.amalthea.converters097.impl.ComponentsModelConverter.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters097.impl.ComponentsModelConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters097.impl.ComponentsModelConverter">
    <property name="input_model_version" value="0.9.6"/>
    <property name="output_model_version" value="0.9.7"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters097.impl.ComponentsModelConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.097/OSGI-INF/org.eclipse.app4mc.amalthea.converters097.utils.AmltModelReferencePostProcessor.xml b/plugins/org.eclipse.app4mc.amalthea.converters.097/OSGI-INF/org.eclipse.app4mc.amalthea.converters097.utils.AmltModelReferencePostProcessor.xml
index edec47a..05ba350 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.097/OSGI-INF/org.eclipse.app4mc.amalthea.converters097.utils.AmltModelReferencePostProcessor.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.097/OSGI-INF/org.eclipse.app4mc.amalthea.converters097.utils.AmltModelReferencePostProcessor.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" name="org.eclipse.app4mc.amalthea.converters097.utils.AmltModelReferencePostProcessor">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" name="org.eclipse.app4mc.amalthea.converters097.utils.AmltModelReferencePostProcessor">
    <property name="input_model_version" value="0.9.6"/>
    <property name="output_model_version" value="0.9.7"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IPostProcessor"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters097.utils.AmltModelReferencePostProcessor"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.097/OSGI-INF/org.eclipse.app4mc.amalthea.converters097.utils.ComponentPortInterfaceCacheBuilder.xml b/plugins/org.eclipse.app4mc.amalthea.converters.097/OSGI-INF/org.eclipse.app4mc.amalthea.converters097.utils.ComponentPortInterfaceCacheBuilder.xml
index 4e22f4e..38de1e6 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.097/OSGI-INF/org.eclipse.app4mc.amalthea.converters097.utils.ComponentPortInterfaceCacheBuilder.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.097/OSGI-INF/org.eclipse.app4mc.amalthea.converters097.utils.ComponentPortInterfaceCacheBuilder.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" name="org.eclipse.app4mc.amalthea.converters097.utils.ComponentPortInterfaceCacheBuilder">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" name="org.eclipse.app4mc.amalthea.converters097.utils.ComponentPortInterfaceCacheBuilder">
    <property name="input_model_version" value="0.9.6"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.ICache"/>
       <provide interface="org.eclipse.app4mc.amalthea.converters097.utils.ComponentPortInterfaceCacheBuilder"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters097.utils.ComponentPortInterfaceCacheBuilder"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.097/src/org/eclipse/app4mc/amalthea/converters097/impl/ComponentsModelConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.097/src/org/eclipse/app4mc/amalthea/converters097/impl/ComponentsModelConverter.java
index bab1168..7941a4d 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.097/src/org/eclipse/app4mc/amalthea/converters097/impl/ComponentsModelConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.097/src/org/eclipse/app4mc/amalthea/converters097/impl/ComponentsModelConverter.java
@@ -1,5 +1,5 @@
 /*********************************************************************************
- * Copyright (c) 2020 Robert Bosch GmbH and others.
+ * Copyright (c) 2020, 2021 Robert Bosch GmbH and others.
  *
  * This program and the accompanying materials are made
  * available under the terms of the Eclipse Public License 2.0
@@ -26,13 +26,13 @@
 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;
 import org.eclipse.app4mc.amalthea.converters.common.utils.ModelVersion;
 import org.eclipse.app4mc.amalthea.converters097.utils.ComponentPortInterfaceCacheBuilder;
+import org.eclipse.app4mc.util.sessionlog.SessionLogger;
 import org.jdom2.Attribute;
 import org.jdom2.Document;
 import org.jdom2.Element;
 import org.osgi.service.component.annotations.Activate;
 import org.osgi.service.component.annotations.Component;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
+import org.osgi.service.component.annotations.Reference;
 
 @Component(
 		property = {
@@ -42,8 +42,9 @@
 
 public class ComponentsModelConverter extends AbstractConverter {
 
-	private static final Logger LOGGER = LoggerFactory.getLogger(ComponentsModelConverter.class);
-	
+	@Reference
+	SessionLogger logger;
+
 	ComponentPortInterfaceCacheBuilder cache;
 
 	@Override
@@ -54,7 +55,7 @@
 	
 	@Override
 	public void convert(File targetFile, Map<File, Document> fileDocumentMapping, List<ICache> caches) {
-		LOGGER.info("Migration from 0.9.6 to 0.9.7 : Executing ComponentsModel converter for model file : {}", targetFile.getName());
+		logger.info("Migration from 0.9.6 to 0.9.7 : Executing ComponentsModel converter for model file : {0}", targetFile.getName());
 		
 		this.cache = getComponentPortInterfaceCache(caches);
 		if (this.cache == null) {
@@ -211,7 +212,7 @@
 			rootElement.addContent(componentsModelElement);
 		}
 
-		LOGGER.info("Migration from 0.9.6 to 0.9.7 : Interface {} created in File : {}", interfaceName, file.getName());
+		logger.info("Migration from 0.9.6 to 0.9.7 : Interface {0} created in File : {1}", interfaceName, file.getName());
 	}
 
 	private void updatePortReferences(Element rootElement) {
@@ -303,7 +304,7 @@
 			if (instanceAttr == null) {
 				Element hrefInstance = element.getChild("instance");
 				if (hrefInstance != null) {
-					LOGGER.warn("Qualified Port is having a reference to component instance {} from another model",
+					logger.warn("Qualified Port is having a reference to component instance {0} from another model",
 							hrefInstance.getAttributeValue("href"));
 				}
 				continue;
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.097/src/org/eclipse/app4mc/amalthea/converters097/utils/AmltModelReferencePostProcessor.java b/plugins/org.eclipse.app4mc.amalthea.converters.097/src/org/eclipse/app4mc/amalthea/converters097/utils/AmltModelReferencePostProcessor.java
index a324185..98827c0 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.097/src/org/eclipse/app4mc/amalthea/converters097/utils/AmltModelReferencePostProcessor.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.097/src/org/eclipse/app4mc/amalthea/converters097/utils/AmltModelReferencePostProcessor.java
@@ -1,5 +1,5 @@
 /*********************************************************************************
- * Copyright (c) 2020 Robert Bosch GmbH and others.
+ * Copyright (c) 2020, 2021 Robert Bosch GmbH and others.
  *
  * This program and the accompanying materials are made
  * available under the terms of the Eclipse Public License 2.0
@@ -22,12 +22,12 @@
 import org.eclipse.app4mc.amalthea.converters.common.utils.AmaltheaNamespaceRegistry;
 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;
 import org.eclipse.app4mc.amalthea.converters.common.utils.ModelVersion;
+import org.eclipse.app4mc.util.sessionlog.SessionLogger;
 import org.jdom2.Attribute;
 import org.jdom2.Document;
 import org.jdom2.Element;
 import org.osgi.service.component.annotations.Component;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
+import org.osgi.service.component.annotations.Reference;
 
 @Component(
 		property = {
@@ -36,8 +36,9 @@
 
 public class AmltModelReferencePostProcessor implements IPostProcessor {
 	
-	private static final Logger LOGGER = LoggerFactory.getLogger(AmltModelReferencePostProcessor.class);
-	
+	@Reference
+	SessionLogger logger;
+
 	@Override
 	public void process(Map<File, Document> fileDocumentMapping) {
 		//check if it is single file migration
@@ -45,13 +46,17 @@
 			return;
 		}
 		
-		LOGGER.info("Start Amlt Model Reference processing from 0.9.6 to 0.9.7");		
+		if (logger != null) {
+			logger.info("Start Amlt Model Reference processing from 0.9.6 to 0.9.7");		
+		}
 
 		for (Document document : fileDocumentMapping.values()) {
 			 postProcessAmltRefs(document.getRootElement());
 		}
 		
-		LOGGER.info("End Amlt Model Reference processing from 0.9.6 to 0.9.7");
+		if (logger != null) {
+			logger.info("End Amlt Model Reference processing from 0.9.6 to 0.9.7");
+		}
 	}
 	
 	private void postProcessAmltRefs(Element rootElement) {
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.097/src/org/eclipse/app4mc/amalthea/converters097/utils/ComponentPortInterfaceCacheBuilder.java b/plugins/org.eclipse.app4mc.amalthea.converters.097/src/org/eclipse/app4mc/amalthea/converters097/utils/ComponentPortInterfaceCacheBuilder.java
index 9afda0f..13e9236 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.097/src/org/eclipse/app4mc/amalthea/converters097/utils/ComponentPortInterfaceCacheBuilder.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.097/src/org/eclipse/app4mc/amalthea/converters097/utils/ComponentPortInterfaceCacheBuilder.java
@@ -1,5 +1,5 @@
 /*********************************************************************************
- * Copyright (c) 2020 Robert Bosch GmbH and others.
+ * Copyright (c) 2020, 2021 Robert Bosch GmbH and others.
  *
  * This program and the accompanying materials are made
  * available under the terms of the Eclipse Public License 2.0
@@ -27,12 +27,12 @@
 import org.eclipse.app4mc.amalthea.converters.common.utils.AmaltheaNamespaceRegistry;
 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;
 import org.eclipse.app4mc.amalthea.converters.common.utils.ModelVersion;
+import org.eclipse.app4mc.util.sessionlog.SessionLogger;
 import org.jdom2.Attribute;
 import org.jdom2.Document;
 import org.jdom2.Element;
 import org.osgi.service.component.annotations.Component;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
+import org.osgi.service.component.annotations.Reference;
 
 @Component(
 		property = ServiceConstants.INPUT_MODEL_VERSION_PROPERTY + "=0.9.6",
@@ -40,7 +40,8 @@
 
 public class ComponentPortInterfaceCacheBuilder implements ICache {
 	
-	private static final Logger LOGGER = LoggerFactory.getLogger(ComponentPortInterfaceCacheBuilder.class);
+	@Reference
+	SessionLogger logger;
 
 	public static final String INTERFACE_CACHE_KEY = "ComponentPort_Interface_Names";
 	public static final String INSTANCE_PARENT_CACHE_KEY = "ComponentInstance_Parent_Names";
@@ -51,7 +52,9 @@
 	@Override
 	public void buildCache(Map<File, Document> fileDocumentMapping) {
 
-		LOGGER.info("Build up ComponentPortInterfaceCache for 0.9.6");
+		if (logger != null) {
+			logger.info("Build up ComponentPortInterfaceCache for 0.9.6");
+		}
 		
 		HashSet<String> uniqueInterfaceNames = new HashSet<>();
 		HashMap<String, String> componentInstanceNames = new HashMap<>();
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.100/META-INF/MANIFEST.MF b/plugins/org.eclipse.app4mc.amalthea.converters.100/META-INF/MANIFEST.MF
index 2eac743..3fd78a8 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.100/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.100/META-INF/MANIFEST.MF
@@ -10,11 +10,10 @@
  org.eclipse.app4mc.amalthea.converters.common.base,
  org.eclipse.app4mc.amalthea.converters.common.converter,
  org.eclipse.app4mc.amalthea.converters.common.utils,
+ org.eclipse.app4mc.util.sessionlog;version="1.1.0",
  org.jdom2;version="2.0.6",
- org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional,
- org.slf4j
+ org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional
 Bundle-ActivationPolicy: lazy
-Service-Component: 
- OSGI-INF/org.eclipse.app4mc.amalthea.converters100.impl.MeasurementModelConverter.xml,
+Service-Component: OSGI-INF/org.eclipse.app4mc.amalthea.converters100.impl.MeasurementModelConverter.xml,
  OSGI-INF/org.eclipse.app4mc.amalthea.converters100.impl.EventModelConverter.xml
 
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.100/OSGI-INF/org.eclipse.app4mc.amalthea.converters100.impl.EventModelConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.100/OSGI-INF/org.eclipse.app4mc.amalthea.converters100.impl.EventModelConverter.xml
index 6d88217..8d1daee 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.100/OSGI-INF/org.eclipse.app4mc.amalthea.converters100.impl.EventModelConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.100/OSGI-INF/org.eclipse.app4mc.amalthea.converters100.impl.EventModelConverter.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters100.impl.EventModelConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters100.impl.EventModelConverter">
    <property name="input_model_version" value="0.9.9"/>
    <property name="output_model_version" value="1.0.0"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters100.impl.EventModelConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.100/OSGI-INF/org.eclipse.app4mc.amalthea.converters100.impl.MeasurementModelConverter.xml b/plugins/org.eclipse.app4mc.amalthea.converters.100/OSGI-INF/org.eclipse.app4mc.amalthea.converters100.impl.MeasurementModelConverter.xml
index cb71299..d748a0b 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.100/OSGI-INF/org.eclipse.app4mc.amalthea.converters100.impl.MeasurementModelConverter.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.100/OSGI-INF/org.eclipse.app4mc.amalthea.converters100.impl.MeasurementModelConverter.xml
@@ -1,9 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters100.impl.MeasurementModelConverter">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" name="org.eclipse.app4mc.amalthea.converters100.impl.MeasurementModelConverter">
    <property name="input_model_version" value="0.9.9"/>
    <property name="output_model_version" value="1.0.0"/>
    <service>
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.base.IConverter"/>
    </service>
+   <reference cardinality="1..1" field="logger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="logger"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters100.impl.MeasurementModelConverter"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.100/src/org/eclipse/app4mc/amalthea/converters100/impl/EventModelConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.100/src/org/eclipse/app4mc/amalthea/converters100/impl/EventModelConverter.java
index 108ee00..4b8501a 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.100/src/org/eclipse/app4mc/amalthea/converters100/impl/EventModelConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.100/src/org/eclipse/app4mc/amalthea/converters100/impl/EventModelConverter.java
@@ -1,5 +1,5 @@
 /*********************************************************************************
- * Copyright (c) 2020 Robert Bosch GmbH and others.
+ * Copyright (c) 2020, 2021 Robert Bosch GmbH and others.
  *
  * This program and the accompanying materials are made
  * available under the terms of the Eclipse Public License 2.0
@@ -24,14 +24,14 @@
 import org.eclipse.app4mc.amalthea.converters.common.converter.AbstractConverter;
 import org.eclipse.app4mc.amalthea.converters.common.utils.AmaltheaNamespaceRegistry;
 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;
+import org.eclipse.app4mc.util.sessionlog.SessionLogger;
 import org.jdom2.Attribute;
 import org.jdom2.Document;
 import org.jdom2.Element;
 import org.jdom2.Namespace;
 import org.osgi.service.component.annotations.Activate;
 import org.osgi.service.component.annotations.Component;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
+import org.osgi.service.component.annotations.Reference;
 
 @Component(
 		property = {
@@ -42,7 +42,8 @@
 
 public class EventModelConverter extends AbstractConverter {
 
-	private static final Logger LOGGER = LoggerFactory.getLogger(EventModelConverter.class);
+	@Reference
+	SessionLogger logger;
 
 	@Override
 	@Activate
@@ -52,7 +53,7 @@
 	
 	@Override
 	public void convert(File targetFile, Map<File, Document> fileDocumentMapping, List<ICache> caches) {
-		LOGGER.info("Migration from {} to {} : Executing EventModel converter for model file : {}",
+		logger.info("Migration from {0} to {1} : Executing EventModel converter for model file : {2}",
 				getInputModelVersion(), getOutputModelVersion(), targetFile.getName());
 		
 		basicConvert(targetFile, fileDocumentMapping);
@@ -88,7 +89,7 @@
 			if ("am:ProcessEvent".equals(type) || "am:ProcessChainEvent".equals(type)) {
 				Attribute attribute = event.getAttribute("eventType");
 				if (attribute != null && "deadline".equals(attribute.getValue())) {
-					LOGGER.warn("{}: Event type 'deadline' has been removed. 'deadline' is no longer supported in version {}.",
+					logger.warn("{0}: Event type 'deadline' has been removed. 'deadline' is no longer supported in version {1}.",
 							type, getOutputModelVersion());
 
 					event.removeAttribute(attribute);
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.100/src/org/eclipse/app4mc/amalthea/converters100/impl/MeasurementModelConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.100/src/org/eclipse/app4mc/amalthea/converters100/impl/MeasurementModelConverter.java
index 19f2b42..c0b3af2 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.100/src/org/eclipse/app4mc/amalthea/converters100/impl/MeasurementModelConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.100/src/org/eclipse/app4mc/amalthea/converters100/impl/MeasurementModelConverter.java
@@ -1,5 +1,5 @@
 /*********************************************************************************
- * Copyright (c) 2020 Robert Bosch GmbH and others.
+ * Copyright (c) 2020, 2021 Robert Bosch GmbH and others.
  *
  * This program and the accompanying materials are made
  * available under the terms of the Eclipse Public License 2.0
@@ -24,13 +24,13 @@
 import org.eclipse.app4mc.amalthea.converters.common.converter.AbstractConverter;
 import org.eclipse.app4mc.amalthea.converters.common.utils.AmaltheaNamespaceRegistry;
 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;
+import org.eclipse.app4mc.util.sessionlog.SessionLogger;
 import org.jdom2.Document;
 import org.jdom2.Element;
 import org.jdom2.Namespace;
 import org.osgi.service.component.annotations.Activate;
 import org.osgi.service.component.annotations.Component;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
+import org.osgi.service.component.annotations.Reference;
 
 @Component(
 		property = {
@@ -41,7 +41,8 @@
 
 public class MeasurementModelConverter extends AbstractConverter {
 
-	private static final Logger LOGGER = LoggerFactory.getLogger(MeasurementModelConverter.class);
+	@Reference
+	SessionLogger logger;
 
 	@Override
 	@Activate
@@ -51,7 +52,7 @@
 	
 	@Override
 	public void convert(File targetFile, Map<File, Document> fileDocumentMapping, List<ICache> caches) {
-		LOGGER.info("Migration from {} to {} : Executing MeasurementModel converter for model file : {}",
+		logger.info("Migration from {0} to {1} : Executing MeasurementModel converter for model file : {2}",
 				getInputModelVersion(), getOutputModelVersion(), targetFile.getName());
 		
 		basicConvert(targetFile, fileDocumentMapping);
@@ -83,7 +84,7 @@
 		// Remove measurement model
 
 		for (Element m : models) {
-			LOGGER.warn("Measurement Model has been removed. It is no longer supported in version {}.",
+			logger.warn("Measurement Model has been removed. It is no longer supported in version {0}.",
 					getOutputModelVersion());
 			
 			rootElement.removeContent(m);
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.common/META-INF/MANIFEST.MF b/plugins/org.eclipse.app4mc.amalthea.converters.common/META-INF/MANIFEST.MF
index 3ecc0f1..2eb67dd 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.common/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.common/META-INF/MANIFEST.MF
@@ -4,32 +4,32 @@
 Bundle-SymbolicName: org.eclipse.app4mc.amalthea.converters.common;singleton:=true

 Bundle-Version: 1.1.0.qualifier

 Bundle-RequiredExecutionEnvironment: JavaSE-1.8

-Bundle-ActivationPolicy: lazy

 Export-Package: org.eclipse.app4mc.amalthea.converters.common;version="1.1.0",

  org.eclipse.app4mc.amalthea.converters.common.base;version="1.1.0",

  org.eclipse.app4mc.amalthea.converters.common.converter;version="1.1.0",

  org.eclipse.app4mc.amalthea.converters.common.postprocessor;version="1.1.0",

  org.eclipse.app4mc.amalthea.converters.common.preprocessor;version="1.1.0",

- org.eclipse.app4mc.amalthea.converters.common.utils;version="1.1.0",

- org.eclipse.app4mc.amalthea.converters.common.xpath.utils;version="1.1.0"

+ org.eclipse.app4mc.amalthea.converters.common.utils;version="1.1.0"

 Bundle-Vendor: Eclipse APP4MC

 Automatic-Module-Name: org.eclipse.app4mc.amalthea.converters.common

 Import-Package: javax.xml.namespace,

  javax.xml.stream,

  javax.xml.stream.events,

+ org.eclipse.app4mc.util.sessionlog;version="1.1.0",

  org.jdom2;version="2.0.6",

  org.jdom2.filter;version="2.0.6",

  org.jdom2.input;version="2.0.6",

  org.jdom2.output;version="2.0.6",

  org.jdom2.xpath;version="2.0.6",

+ org.osgi.framework;version="1.9.0",

  org.osgi.service.component;version="1.3.0",

- org.osgi.service.component.annotations;version="1.3.0";resolution:=optional,

- org.slf4j;version="1.7.2"

+ org.osgi.service.component.annotations;version="1.3.0";resolution:=optional

 Require-Bundle: org.eclipse.equinox.common;bundle-version="3.10.0"

-Service-Component: OSGI-INF/org.eclipse.app4mc.amalthea.converters.common.ModelMigration.xml,

- OSGI-INF/org.eclipse.app4mc.amalthea.converters.common.converter.NamespaceConverter.xml,

- OSGI-INF/org.eclipse.app4mc.amalthea.converters.common.MigrationProcessor.xml

 Require-Capability: osgi.extender;

  filter:="(&(osgi.extender=osgi.component)(version>=1.3)(!(version>=2.0)))"

 Provide-Capability: osgi.service;

  objectClass:List<String>="org.eclipse.app4mc.amalthea.converters.common.MigrationProcessor"

+Bundle-ActivationPolicy: lazy

+Service-Component: OSGI-INF/org.eclipse.app4mc.amalthea.converters.common.ModelMigration.xml,

+ OSGI-INF/org.eclipse.app4mc.amalthea.converters.common.converter.NamespaceConverter.xml,

+ OSGI-INF/org.eclipse.app4mc.amalthea.converters.common.MigrationProcessor.xml

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.common/OSGI-INF/org.eclipse.app4mc.amalthea.converters.common.MigrationProcessor.xml b/plugins/org.eclipse.app4mc.amalthea.converters.common/OSGI-INF/org.eclipse.app4mc.amalthea.converters.common.MigrationProcessor.xml
index 1213d0b..62d02e1 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.common/OSGI-INF/org.eclipse.app4mc.amalthea.converters.common.MigrationProcessor.xml
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.common/OSGI-INF/org.eclipse.app4mc.amalthea.converters.common.MigrationProcessor.xml
@@ -4,5 +4,6 @@
       <provide interface="org.eclipse.app4mc.amalthea.converters.common.MigrationProcessor"/>
    </service>
    <reference cardinality="1..1" field="factory" interface="org.osgi.service.component.ComponentFactory" name="factory" target="(component.factory=org.eclipse.app4mc.amalthea.modelmigration.factory)"/>
+   <reference cardinality="1..1" field="loggerFactory" interface="org.osgi.service.component.ComponentFactory" name="loggerFactory" target="(component.factory=org.eclipse.app4mc.amalthea.sessionlog.factory)"/>
    <implementation class="org.eclipse.app4mc.amalthea.converters.common.MigrationProcessor"/>
 </scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/MigrationHelper.java b/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/MigrationHelper.java
index 38b5ea2..9e36227 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/MigrationHelper.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/MigrationHelper.java
@@ -1,6 +1,6 @@
 /**
  ********************************************************************************
- * Copyright (c) 2020 Robert Bosch GmbH and others.
+ * Copyright (c) 2020, 2021 Robert Bosch GmbH and others.
  *
  * This program and the accompanying materials are made
  * available under the terms of the Eclipse Public License 2.0
@@ -42,14 +42,11 @@
 import org.eclipse.app4mc.amalthea.converters.common.utils.AmaltheaNamespaceRegistry;
 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;
 import org.eclipse.app4mc.amalthea.converters.common.utils.ModelVersion;
+import org.eclipse.app4mc.util.sessionlog.SessionLogger;
 import org.jdom2.Namespace;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
 
 public final class MigrationHelper {
 
-	private static final Logger LOGGER = LoggerFactory.getLogger(MigrationHelper.class);
-	
 	public static final String UNZIPPED_PREFIX = "unzipped_";
 	public static final String INVALID = "invalid";
 	public static final String MODEL_FILE_EXTENSION = "amxmi";
@@ -72,7 +69,11 @@
 			migModelFile.setFile(inputFile.getCanonicalFile(), migrationSettings.getProject());
 
 			// set the model file version
-			migModelFile.setModelVersion(getModelVersion(inputFile));
+			try {
+				migModelFile.setModelVersion(getModelVersion(inputFile));
+			} catch (IllegalStateException e) {
+				migModelFile.setModelVersion(INVALID + ": " + e.getMessage());
+			}
 
 			modelFiles.add(migModelFile);
 		}
@@ -85,9 +86,10 @@
 	 *
 	 * @param settings The {@link MigrationSettings} that contains the references to
 	 *                 the converted Documents to save.
+	 *                 @param logger The {@link SessionLogger} to use.
 	 * @throws IOException If an error occurred on saving the output file.
 	 */
-	public static void saveFiles(MigrationSettings settings) throws IOException {
+	public static void saveFiles(MigrationSettings settings, SessionLogger logger) throws IOException {
 		List<MigrationInputFile> migModelFiles = settings.getMigModelFiles();
 
 		for (MigrationInputFile inputFile : migModelFiles) {
@@ -116,7 +118,7 @@
 			HelperUtil.saveFile(inputFile.getDocument(), outputFilePath.toString(), true, true);
 			outputFile = outputFilePath.toFile();
 
-			LOGGER.info("Migrated model file saved @ : {}", outputFile.getAbsolutePath());
+			logger.info("Migrated model file saved @ : {0}", outputFile.getAbsolutePath());
 
 			// now that the migrated files are saved we need to check if the input was zipped
 			if (inputFile.isZipFile()) {
@@ -132,7 +134,7 @@
 					}
 				}
 
-				LOGGER.info("Created archive model file @ : {}", zipOutputPath);
+				logger.info("Created archive model file @ : {0}", zipOutputPath);
 
 				// delete the migrated unzipped file
 				Files.delete(outputFilePath);
@@ -289,15 +291,20 @@
 	public static boolean createBackupFile(MigrationInputFile migrationInputFile) {
 		// Rename or copy the original file to filename_currentversion.amxmi
 		String newFileName = MigrationHelper.getBackupFileName(migrationInputFile);
+		SessionLogger logger = migrationInputFile.getSessionLogger(); 
 		try {
 			String filebackupName = migrationInputFile.getOriginalFile().getParent() + File.separator + newFileName;
 			Files.copy(migrationInputFile.getOriginalFile().toPath(), new File(filebackupName).toPath(), StandardCopyOption.REPLACE_EXISTING);
-			LOGGER.info("Original model file saved as {}", filebackupName);
+			if (logger != null) {
+				logger.info("Original model file saved as {}", filebackupName);
+			}
 			if (new File(filebackupName).exists()) {
 				return true;
 			}
 		} catch (IOException e) {
-			LOGGER.error(e.getMessage(), e);
+			if (logger != null) {
+				logger.error(e.getMessage(), e);
+			}
 		}
 		return false;
 	}
@@ -343,6 +350,7 @@
 	 *                       requested.
 	 * @return The model version of the given input model file or <i>invalid</i> if
 	 *         an error occurs on parsing or the model version is invalid.
+	 * @throws IllegalStateException if parsing the input model file fails.
 	 */
 	public static String getModelVersion(File inputModelFile) {
 		String result = INVALID;
@@ -365,14 +373,14 @@
 	 * @param inputPath The {@link Path} to the model file.
 	 * @return The model version of the given input model file or <i>invalid</i> if
 	 *         an error occurs on parsing or the model version is invalid.
+	 * @throws IllegalStateException if parsing the input model file fails.
 	 */
 	public static String getModelVersionFromFile(Path inputPath) {
 		try (InputStream input = Files.newInputStream(inputPath)) {
 			return getModelVersion(input);
 		} catch (IOException | XMLStreamException e) {
-			LOGGER.error("Error on parsing input model file for model version", e);
+			throw new IllegalStateException("Error on parsing input model file for model version: " + e.getMessage());
 		}
-		return INVALID;
 	}
 
 	/**
@@ -381,6 +389,7 @@
 	 * @param inputPath The {@link Path} to the model file.
 	 * @return The model version of the given input model file or <i>invalid</i> if
 	 *         an error occurs on parsing or the model version is invalid.
+	 * @throws IllegalStateException if parsing the input model file fails.
 	 */
 	public static String getModelVersionFromZip(Path inputPath) {
 		try (ZipInputStream input = new ZipInputStream(Files.newInputStream(inputPath))) {
@@ -389,7 +398,7 @@
 				return getModelVersion(input);
 			}
 		} catch (IOException | XMLStreamException e) {
-			LOGGER.error("Error on parsing input model file for model version", e);
+			throw new IllegalStateException("Error on parsing input model file for model version: " + e.getMessage());
 		}
 		return INVALID;
 	}
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/MigrationInputFile.java b/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/MigrationInputFile.java
index 61f4aa0..95a5a77 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/MigrationInputFile.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/MigrationInputFile.java
@@ -1,6 +1,6 @@
 /**
  ********************************************************************************
- * Copyright (c) 2015-2020 Robert Bosch GmbH and others.
+ * Copyright (c) 2015-2021 Robert Bosch GmbH and others.
  *
  * This program and the accompanying materials are made
  * available under the terms of the Eclipse Public License 2.0
@@ -21,14 +21,11 @@
 import java.nio.file.Paths;
 
 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;
+import org.eclipse.app4mc.util.sessionlog.SessionLogger;
 import org.jdom2.Document;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
 
 public class MigrationInputFile {
 
-	private static final Logger LOGGER = LoggerFactory.getLogger(MigrationInputFile.class);
-	
 	private String modelVersion = "";
 
 	private boolean selectedFile;
@@ -46,6 +43,16 @@
 	/*- this field is used to mark ModelFiles, if they have different versions than other files */
 	private boolean isVersionDifferent;
 
+	private SessionLogger logger;
+	
+	public SessionLogger getSessionLogger() {
+		return this.logger;
+	}
+	
+	public void setSessionLogger(SessionLogger logger) {
+		this.logger = logger;
+	}
+	
 	public String getModelVersion() {
 		return this.modelVersion;
 	}
@@ -67,7 +74,9 @@
 			try {
 				this.file = MigrationHelper.temporaryUnzip(this.originalFile);
 			} catch (IOException e) {
-				LOGGER.error("Failed to unzip model file {}", this.originalFile.getAbsolutePath(), e);
+				if (logger != null) {
+					logger.error("Failed to unzip model file {}", this.originalFile.getAbsolutePath(), e);
+				}
 			}
 		}
 		return this.file;
@@ -91,9 +100,11 @@
 	public Document getDocument() {
 		if (this.document == null) {
 			try {
-				this.document = HelperUtil.loadFile(getFile().getAbsolutePath());
+				this.document = HelperUtil.loadFile(getFile().getAbsolutePath(), logger);
 			} catch (Exception e) {
-				LOGGER.error("Failed to load model file {}", getFile().getAbsolutePath(), e);
+				if (logger != null) {
+					logger.error("Failed to load model file {}", getFile().getAbsolutePath(), e);
+				}
 			}
 		}
 		return this.document;
@@ -124,7 +135,9 @@
 			try {
 				Files.delete(Paths.get(this.file.getAbsolutePath()));
 			} catch (IOException e) {
-				LOGGER.error("Failed to delete temporary unzipped file {}", this.file.getAbsolutePath(), e);
+				if (logger != null) {
+					logger.error("Failed to delete temporary unzipped file {}", this.file.getAbsolutePath(), e);
+				}
 			}
 		}
 	}
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/MigrationProcessor.java b/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/MigrationProcessor.java
index 4c46e76..9d9ee14 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/MigrationProcessor.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/MigrationProcessor.java
@@ -1,6 +1,6 @@
 /**
  ********************************************************************************
- * Copyright (c) 2019, 2020 Robert Bosch GmbH and others.
+ * Copyright (c) 2019, 2021 Robert Bosch GmbH and others.
  *
  * This program and the accompanying materials are made
  * available under the terms of the Eclipse Public License 2.0
@@ -17,6 +17,8 @@
 
 import java.io.File;
 import java.io.IOException;
+import java.text.SimpleDateFormat;
+import java.util.Date;
 import java.util.Dictionary;
 import java.util.Hashtable;
 import java.util.Map;
@@ -24,6 +26,7 @@
 import org.eclipse.app4mc.amalthea.converters.common.base.ICache;
 import org.eclipse.app4mc.amalthea.converters.common.base.IConverter;
 import org.eclipse.app4mc.amalthea.converters.common.base.IPostProcessor;
+import org.eclipse.app4mc.util.sessionlog.SessionLogger;
 import org.eclipse.core.runtime.IProgressMonitor;
 import org.eclipse.core.runtime.SubMonitor;
 import org.jdom2.Document;
@@ -31,20 +34,18 @@
 import org.osgi.service.component.ComponentInstance;
 import org.osgi.service.component.annotations.Component;
 import org.osgi.service.component.annotations.Reference;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
 
 @Component(service = MigrationProcessor.class)
 public class MigrationProcessor {
 
-	private static final Logger LOGGER = LoggerFactory.getLogger(MigrationProcessor.class);
-
-	private static final String OUTPUT_DIRECTORY_KEY = "APP4MC_MIGRATION_OUTPUT_DIRECTORY";
 	private static final String NEWLINE = System.getProperty("line.separator");
 
 	@Reference(target = "(component.factory=" + ServiceConstants.MODEL_MIGRATION_FACTORY + ")")
 	ComponentFactory<ModelMigration> factory;
 
+	@Reference(target = "(component.factory=" + "org.eclipse.app4mc.amalthea.sessionlog.factory" + ")")
+	ComponentFactory<SessionLogger> loggerFactory;
+	
 	/**
 	 * Execute the migration for the provided {@link MigrationSettings}.
 	 *
@@ -56,10 +57,12 @@
 	 * @throws MigrationException In case saving the migrated files fails.
 	 */
 	public int execute(MigrationSettings settings, IProgressMonitor monitor) {
-		// needed for session logging
-		// setting the system property will enable the MigrationSessionFileAppender
-		System.setProperty(OUTPUT_DIRECTORY_KEY, settings.getOutputDirectoryLocation());
 
+		ComponentInstance<SessionLogger> loggerInstance = loggerFactory.newInstance(null);
+		SessionLogger logger = loggerInstance.getInstance();
+		
+		settings.getMigModelFiles().forEach(f -> f.setSessionLogger(logger));
+				
 		try {
 			if (monitor != null) {
 				monitor.setTaskName("Collecting information for intermediate migration steps");
@@ -71,7 +74,7 @@
 					settings.getMigrationModelVersion());
 
 			if (migStepEntries.size() == 0) {
-				LOGGER.error("Migration not supported for the selected model versions. \nInput Model version : \"{}\" Output Model Version : \"{}\"",
+				logger.error("Migration not supported for the selected model versions. \nInput Model version : \"{0}\" Output Model Version : \"{1}\"",
 						settings.getInputModelVersion(),
 						settings.getMigrationModelVersion());
 
@@ -97,7 +100,7 @@
 			builder.append(NEWLINE);
 			builder.append("*******************************************************************************************************************");
 			builder.append(NEWLINE);
-			LOGGER.info("{}", builder);
+			logger.info("{0}", builder);
 
 			boolean conversionPerformed = false;
 			String currentModelVersion = settings.getInputModelVersion();
@@ -126,11 +129,9 @@
 					subMonitor.setTaskName("Migrating AMALTHEA models from : " + currentModelVersion + " to " + outputModelVersion);
 				}
 
-				LOGGER.info("=========== START: Migrating AMALTHEA models from : {} to {} ========== ", currentModelVersion, outputModelVersion);
+				logger.info("=========== START: Migrating AMALTHEA models from : {0} to {1} ========== ", currentModelVersion, outputModelVersion);
 
 				// build caches
-				LOGGER.trace("Start : Building cache for AMALTHEA models present in : {}", currentModelVersion);
-				long st = System.currentTimeMillis();
 
 				// build up the cache for the current file set
 				for (ICache cache : modelMigration.getCaches()) {
@@ -140,11 +141,6 @@
 					cache.buildCache(fileDocumentMapping);
 				}
 
-				long end = System.currentTimeMillis();
-
-				LOGGER.trace("End : Building cache for AMALTHEA models present in : {}", currentModelVersion);
-				LOGGER.trace("Total time taken to build cache for {} models: {} milli seconds", currentModelVersion, (end - st));
-
 				// execute conversion
 				for (IConverter converter : modelMigration.getConverter()) {
 					for (File file : fileDocumentMapping.keySet()) {
@@ -157,7 +153,7 @@
 					postProcessor.process(fileDocumentMapping);
 				}
 
-				LOGGER.info("=========== END: Migrating AMALTHEA models from : {} to {}  =========== \n\r", currentModelVersion, outputModelVersion);
+				logger.info("=========== END: Migrating AMALTHEA models from : {0} to {1}  =========== \n\r", currentModelVersion, outputModelVersion);
 
 				if (currentModelVersion.equals(outputModelVersion)) {
 					// if the output is already the current model version,
@@ -187,7 +183,7 @@
 				}
 
 				try {
-					MigrationHelper.saveFiles(settings);
+					MigrationHelper.saveFiles(settings, logger);
 				} catch (IOException e) {
 					throw new MigrationException("Error on saving migrated files.", e);
 				} finally {
@@ -201,9 +197,12 @@
 
 			return MigrationStatusCode.OK;
 		} finally {
-			// removing the system property will disable the MigrationSessionFileAppender
-			System.clearProperty(OUTPUT_DIRECTORY_KEY);
-			LOGGER.info("Migration session finished");
+			logger.info("Migration session finished");
+			
+			String dateToStr = new SimpleDateFormat("yyyy-MM-dd_HH_mm_ss").format(new Date());
+			logger.flush(new File(settings.getOutputDirectoryLocation(), "ModelMigration__" + dateToStr + ".log"));
+			
+			loggerInstance.dispose();
 		}
 	}
 
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/converter/NamespaceConverter.java b/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/converter/NamespaceConverter.java
index cd05262..2c2f20a 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/converter/NamespaceConverter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/converter/NamespaceConverter.java
@@ -1,6 +1,6 @@
 /**
  ********************************************************************************
- * Copyright (c) 2019, 2020 Robert Bosch GmbH and others.
+ * Copyright (c) 2019, 2021 Robert Bosch GmbH and others.
  *
  * This program and the accompanying materials are made
  * available under the terms of the Eclipse Public License 2.0
@@ -23,12 +23,13 @@
 import org.eclipse.app4mc.amalthea.converters.common.base.ICache;
 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;
 import org.eclipse.app4mc.amalthea.converters.common.utils.ModelVersion;
+import org.eclipse.app4mc.util.sessionlog.SessionLogger;
 import org.jdom2.Document;
 import org.jdom2.Element;
+import org.osgi.framework.BundleContext;
+import org.osgi.framework.ServiceReference;
 import org.osgi.service.component.annotations.Activate;
 import org.osgi.service.component.annotations.Component;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
 
 /**
  * This class is responsible for converting the namespace of the AMALTHEA model.
@@ -38,19 +39,29 @@
 @Component(factory = ServiceConstants.NAMESPACE_CONVERTER_FACTORY)
 public class NamespaceConverter extends AbstractConverter {
 
-	public static final Logger LOGGER = LoggerFactory.getLogger(NamespaceConverter.class);
-
-	@Override
+	BundleContext context;
+	
 	@Activate
-	protected void activate(Map<String, Object> properties) {
+	protected void activate(Map<String, Object> properties, BundleContext context) {
 		super.activate(properties);
+		this.context = context;
 	}
 
 	@Override
 	public void convert(File targetFile, Map<File, Document> fileName2documentMap, List<ICache> caches) {
 
-		LOGGER.info("Migration from {} to {} : Executing Namespace converter for model file : {}",
-				getInputModelVersion(), getOutputModelVersion(), targetFile.getName());
+		ServiceReference<SessionLogger> serviceReference = null;
+		SessionLogger logger = null;
+		if (context != null) {
+			// the factory is created on startup to be able to create NamespaceConverter per configuration
+			// a SessionLogger is created per migration session
+			// therefore we can not use @Reference in the factory, as the reference can't be satisfied before a session is started
+			serviceReference = context.getServiceReference(SessionLogger.class);
+			logger = context.getService(serviceReference);
+			
+			logger.info("Migration from {0} to {1} : Executing Namespace converter for model file : {2}",
+					getInputModelVersion(), getOutputModelVersion(), targetFile.getName());
+		}
 
 		Document document = fileName2documentMap.get(targetFile);
 		if (document == null) {
@@ -67,8 +78,12 @@
 					rootElement,
 					inputVersion,
 					outputVersion);
-		} else {
-			LOGGER.error("input model version {} or output model version {} are invalid!", getInputModelVersion(), getOutputModelVersion());
+		} else if (logger != null) {
+			logger.error("input model version {0} or output model version {1} are invalid!", getInputModelVersion(), getOutputModelVersion());
+		}
+		
+		if (context != null) {
+			context.ungetService(serviceReference);
 		}
 	}
 
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/postprocessor/CustomPropsPostProcessor.java b/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/postprocessor/CustomPropsPostProcessor.java
deleted file mode 100644
index 6b777a8..0000000
--- a/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/postprocessor/CustomPropsPostProcessor.java
+++ /dev/null
@@ -1,819 +0,0 @@
-/**

- ********************************************************************************

- * Copyright (c) 2015-2020 Robert Bosch GmbH and others.

- *

- * This program and the accompanying materials are made

- * available under the terms of the Eclipse Public License 2.0

- * which is available at https://www.eclipse.org/legal/epl-2.0/

- *

- * SPDX-License-Identifier: EPL-2.0

- *

- * Contributors:

- *     Robert Bosch GmbH - initial API and implementation

- ********************************************************************************

- */

-

-package org.eclipse.app4mc.amalthea.converters.common.postprocessor;

-

-import java.io.BufferedReader;

-import java.io.File;

-import java.io.FileInputStream;

-import java.io.IOException;

-import java.io.InputStream;

-import java.io.InputStreamReader;

-import java.net.URL;

-import java.util.AbstractMap;

-import java.util.ArrayList;

-import java.util.HashMap;

-import java.util.List;

-import java.util.Map;

-import java.util.Map.Entry;

-import java.util.Set;

-import java.util.StringTokenizer;

-

-import org.eclipse.app4mc.amalthea.converters.common.base.IPostProcessor;

-import org.eclipse.app4mc.amalthea.converters.common.utils.AmaltheaNamespaceRegistry;

-import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

-import org.jdom2.Document;

-import org.jdom2.Element;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

-

-/**

- * This PostProcessor is used to migrate CustomProperties which are having value as ReferenceObject

- *

- * @author MEZ2RNG

- *

- */

-public class CustomPropsPostProcessor implements IPostProcessor {

-

-	private static final String HREF = "href";

-	private static final String VALUE = "value";

-

-	private static final Logger LOGGER = LoggerFactory.getLogger(CustomPropsPostProcessor.class);

-

-	@Override

-	public void process(final Map<File, Document> fileName2documentMap) {

-

-		/*-Map holding File name as a Key and value as a Map:

-		 * containing key as : uriFragment or xmi ID of AMALTHEA element

-		 * Value as : List of CustomProperties Value object which is of type common:ReferenceObject

-		 *  */

-		final Map<File, Map<String, List<Element>>> map_values_to_be_investigated = new HashMap<>();

-

-		boolean areXMIIDsUsed = false;

-

-		Map<File, Map<String, List<Element>>> idElementsCacheMap = new HashMap<>();

-

-		for (final Entry<File, Document> entry : fileName2documentMap.entrySet()) {

-			final File targetFile = entry.getKey();

-			final Document root = entry.getValue();

-

-			if (root == null) {

-				return;

-			}

-			final Element rootElement = root.getRootElement();

-

-			/*-

-			 * Contains key as : uriFragment or xmi ID of AMALTHEA element

-			 * Value : List of CustomProperties Value object's having

-			 */

-			final Map<String, List<Element>> refCustomProps2ObjectsMap = new HashMap<>();

-

-			/*-

-			 * CustomProperties with Reference to ReferableBaseObject can exists in the following way:

-			 *

-			 *Case 1: Referring elements inside the same model

-			 *  <customProperties xmi:id="_p-7r4OnfEeW9t73E3V9yAw" key="key">

-			 *		<value xsi:type="common:ReferenceObject" xmi:id="_qsGT4OnfEeW9t73E3V9yAw" value="_oi1hUOnfEeW9t73E3V9yAw"/>

-			 *	</customProperties>

-			 *

-			 *Case 2: Referring elements across the model files

-			 *

-			 *<customProperties xmi:id="__0JRIOqOEeW9t73E3V9yAw">

-			 *		<value xsi:type="common:ReferenceObject" xmi:id="_AmqTMOqPEeW9t73E3V9yAw">

-			 *			<value href="default.amxmi#_UZWXYOqLEeW9t73E3V9yAw"/>

-			 *		</value>

-			 *	</customProperties>

-			 *

-			 *Case 3: List of Ref objects

-			 *

-			 *<customProperties xmi:id="_rnhEIBaeEeasLIggkXJ5XQ" key="group_labels">

-			 *   <value xsi:type="common:ListObject" xmi:id="_sJ_fEBaeEeasLIggkXJ5XQ">

-			 *     <values xsi:type="common:ReferenceObject" xmi:id="_t-0SsBaeEeasLIggkXJ5XQ" value="_hk2sYBaeEeasLIggkXJ5XQ"/>

-			 *     <values xsi:type="common:ReferenceObject" xmi:id="_vzxCIBaeEeasLIggkXJ5XQ" value="_k5wysBaeEeasLIggkXJ5XQ"/>

-			 *     <values xsi:type="common:ReferenceObject" xmi:id="_yQN2cBaeEeasLIggkXJ5XQ" value="_lDRUABaeEeasLIggkXJ5XQ"/>

-			 *     <values xsi:type="common:ReferenceObject" xmi:id="_9YBRUBaeEeasLIggkXJ5XQ">

-			 *	       <value href="slave_default.amxmi#_hk2sYBaeEeasLIggkXJ5XQ"/>

-			 *       </values>

-			 *    </value>

-			 *   </customProperties>

-			 */

-

-

-			final StringBuilder xpathBuffer = new StringBuilder();

-

-			xpathBuffer.append(".//customProperties/value[@xsi:type=\"common:ReferenceObject\"]");

-			xpathBuffer.append("|");

-			xpathBuffer.append(".//customProperties/value/values[@xsi:type=\"common:ReferenceObject\"]");

-

-

-			final List<Element> value_custProps_refObjects = HelperUtil.getXpathResult(rootElement, xpathBuffer.toString(),

-					Element.class, AmaltheaNamespaceRegistry.getGenericNamespace("xsi"));

-

-

-			for (final Element element : value_custProps_refObjects) {

-

-				String attributeValue = element.getAttributeValue(VALUE);

-

-				if (attributeValue == null) {

-					/*-

-					 * Case where elements across the model files are referred:

-					 * <value xsi:type="common:ReferenceObject" xmi:id="_AmqTMOqPEeW9t73E3V9yAw">

-					 * 	<value  href="default.amxmi#_UZWXYOqLEeW9t73E3V9yAw"/>

-					 * </value>

-					 */

-					attributeValue = element.getChild(VALUE) != null

-							? element.getChild(VALUE).getAttributeValue(HREF) : null;

-				}

-

-				if (attributeValue != null) {

-

-					if (!refCustomProps2ObjectsMap.containsKey(attributeValue)) {

-						refCustomProps2ObjectsMap.put(attributeValue, new ArrayList<>());

-					}

-

-					refCustomProps2ObjectsMap.get(attributeValue).add(element);

-

-					if ((!areXMIIDsUsed) && !isURIFragment(attributeValue)) {

-						areXMIIDsUsed = true;

-					}

-				}

-			}

-

-			map_values_to_be_investigated.put(targetFile, refCustomProps2ObjectsMap);

-

-		}

-

-		/*- In the case where XMI ID's are used, fetching the elements through Xpath will be of performance hit.

-		 * Instead of Xpath, memory map is built for all the model elements with key as XMI ID

-		 */

-		if (areXMIIDsUsed) {

-			idElementsCacheMap = buildCache(fileName2documentMap);

-		}

-

-		/*

-		 * verifying if the referred elements are implementing ReferableBaseObject Interface. In the case elements are

-		 * not implementing ReferableBaseObject, then such CustomProperty value elements should be removed from the

-		 * model

-		 */

-

-		final HashMap<String, File> refFileInfoMap = new HashMap<>();

-

-		final Map<String, List<XSDElement>> tags2refbaseObjectsMap = populateInfoOfAmaltheModelTags_111_Content();

-

-		for (final Entry<File, Map<String, List<Element>>> entry : map_values_to_be_investigated.entrySet()) {

-			final File modelFile = entry.getKey();

-			final Map<String, List<Element>> map = entry.getValue();

-

-			if (map != null) {

-

-				for (final Entry<String, List<Element>> entry2 : map.entrySet()) {

-

-					/*- refString can be either an ID or the URIFragment */

-					final String refString = entry2.getKey();

-					final List<Element> values =entry2.getValue();

-

-					boolean isRefBaseObjectType = true;

-

-					if (!isURIFragment(refString)) {

-

-						/*- case of referring elements across models*/

-

-						final int indexOfHash = refString.indexOf('#');

-

-						if (indexOfHash != -1) {

-

-							final String fileName = refString.substring(0, indexOfHash);

-							final String id = refString.substring(indexOfHash + 1);

-							final File refFile = getRefFile(modelFile, refFileInfoMap, fileName);

-

-							/*- check is performed here to verify if Element associated to id is implementing ReferableBaseObject*/

-

-							final Entry<Boolean, ElementRef> result = isElementOfRefBaseObject(refFile, id,

-									idElementsCacheMap, tags2refbaseObjectsMap);

-

-							isRefBaseObjectType = result.getKey();

-

-							final ElementRef elementRef = result.getValue();

-

-							/*- in case where elements are referred from other model, corresponding types of it should be updated at the place where they are referred*/

-

-							updateTypeForAllElements(values, elementRef != null ? elementRef.getType() : null);

-

-						} else {

-							/*- case of referring elements within the same model*/

-

-							final Entry<Boolean, ElementRef> result = isElementOfRefBaseObject(modelFile, refString,

-									idElementsCacheMap, tags2refbaseObjectsMap);

-							isRefBaseObjectType = result.getKey();

-

-						}

-

-					} else {

-						/*- This is the case where legacy URI fragments are specified  example: //@stimuliModel/@stimuli.0*/

-

-						final ElementRef elementRef = elementRefBuilder(refString);

-

-						isRefBaseObjectType = isElementOfRefBaseObject(elementRef, tags2refbaseObjectsMap);

-					}

-

-					if (!isRefBaseObjectType) {

-						detachElements(values);

-					}

-				}

-			}

-		}

-	}

-

-	/**

-	 * This method is used to check if the supplied tag (through ElementRef) is extending RefBaseObject

-	 *

-	 * @param elementRef

-	 * @param tags2refbaseObjectsMap

-	 * @return

-	 */

-

-	private boolean isElementOfRefBaseObject(final ElementRef elementRef,

-			final Map<String, List<XSDElement>> tags2refbaseObjectsMap) {

-

-		final List<XSDElement> list = tags2refbaseObjectsMap.get(elementRef.getName());

-

-		if (list != null) {

-

-			final ElementRef parentRef = elementRef.getParentRef();

-

-			final String parentName = parentRef.getName();

-

-			final String parentType = parentRef.getType();

-

-			boolean isParentSame = false;

-

-			mainLoop: for (final XSDElement elementRef2 : list) {

-

-				final Set<XSDElement> parentRefs = elementRef2.getParentRefs();

-

-				for (final XSDElement xsdElementRef : parentRefs) {

-

-					if (parentName != null) {

-						if (xsdElementRef.getName().equals(parentName)) {

-

-							/*- setting the type from the XSD element .. in a case where ElementRef Type is not available from XMI */

-							if (elementRef.getType() == null) {

-								elementRef.setType(elementRef2.getType());

-							}

-

-							isParentSame = true;

-							break mainLoop;

-						}

-					}

-					else if (parentType != null) {

-						if (xsdElementRef.getType().equals(parentType)) {

-							isParentSame = true;

-							break mainLoop;

-						}

-					}

-				}

-

-			}

-

-			return isParentSame;

-		}

-

-		return false;

-	}

-

-

-	/**

-	 * This method is used to check if the element having a specific XMI ID is belonging to Java class extending

-	 * ReferableBaseObject

-	 *

-	 * @param refFile

-	 *            File to which XML element is belonging to

-	 * @param id

-	 *            XMI ID of the XML element

-	 *

-	 * @param idElementsCacheMap

-	 *            map containing cache of XML elements

-	 * @param tags2refbaseObjectsMap

-	 *            map containing the metadata information of Ecore (1.1.1)

-	 * @return

-	 */

-	private Entry<Boolean, ElementRef> isElementOfRefBaseObject(final File refFile, final String id,

-			final Map<File, Map<String, List<Element>>> idElementsCacheMap,

-			final Map<String, List<XSDElement>> tags2refbaseObjectsMap) {

-

-		final Map<String, List<Element>> map = idElementsCacheMap.get(refFile);

-

-		if (map != null) {

-

-			final List<Element> elements = map.get(id);

-

-			if (elements != null) {

-

-				for (final Element element2 : elements) {

-

-					/*- ElementRef is a temporary class used to store the information of XML element */

-					final ElementRef elementRef = elementRefBuilder(element2);

-

-					final boolean result = isElementOfRefBaseObject(elementRef, tags2refbaseObjectsMap);

-

-					if (result) {

-						return new AbstractMap.SimpleEntry<>(true, elementRef);

-					}

-

-				}

-

-			}

-		}

-		return new AbstractMap.SimpleEntry<>(false, null);

-	}

-

-	/**

-	 * This method is used to remove the element from the XML Document

-	 *

-	 * @param values

-	 *

-	 *            Note: List<Element> consists of either<br>

-	 *            1. value element which is the first sub-element of CustomProperties<br>

-	 *            2. values element which is the second sub-element of CustomProperties (incase of List of RefObjects)

-	 *            <br>

-	 *

-	 *

-	 *            Case 1:

-	 *

-	 *            <customProperties xmi:id="_A0YGsBhQEea3AoorCOXNXA" key="custKey_abstractProcess">

-	 *            <value xsi:type="common:ReferenceObject" xmi:id="_A0YGsRhQEea3AoorCOXNXA"> ------------------------->

-	 *            This element is part of List <value href="default1.amxmi#_nDgKUNotEeWXsaNW2kxe8A" /> </value>

-	 *            </customProperties>

-	 *

-	 *            Case 2:

-	 *

-	 *            <customProperties xmi:id="_NaacUBhfEea3AoorCOXNXA" key="custKey_group_refobjs">

-	 *            <value xsi:type="common:ListObject" xmi:id="_8b8TkBhfEea3AoorCOXNXA">

-	 *            <values xsi:type="common:ReferenceObject" xmi:id="__kW2ABhfEea3AoorCOXNXA"> ------------------------->

-	 *            This element is part of List <value href="default1.amxmi#_nDgKUNotEeWXsaNW2kxe8A" /> </values>

-	 *            <values xsi:type="common:ReferenceObject" xmi:id="__0BpsBhfEea3AoorCOXNXA">

-	 *            <value href="default1.amxmi#_6PbocBhOEea3AoorCOXNXA" /> </values> </value> </customProperties>

-	 *

-	 *

-	 *

-	 */

-	private void detachElements(final List<Element> values) {

-		for (final Element element : values) {

-

-			final String tag_name = element.getName();

-

-			String key = "";

-

-			if (tag_name.equals(VALUE)) {

-				key = element.getParentElement() != null ? element.getParentElement().getAttributeValue("key") : null;

-

-			}

-			else if (tag_name.equals("values")) {

-				key = element.getParentElement() != null ? element.getParentElement().getParentElement() != null

-						? element.getParentElement().getParentElement().getAttributeValue("key") : null : null;

-			}

-

-

-			if (key != null) {

-				LOGGER.warn("Value of CustomProperty  : {} is removed (as it is not inheriting RefereableBaseObject)", key);

-			}

-

-

-			element.detach();

-		}

-	}

-

-	/**

-	 * This method is used to remove the element from the XML Document

-	 *

-	 * @param values

-	 *            List<Element>

-	 * @param type

-	 *            String (e.g: hw:Memory)

-	 *

-	 *            Note: List<Element> consists of either<br>

-	 *            1. value element which is the first sub-element of CustomProperties<br>

-	 *            2. values element which is the second sub-element of CustomProperties (incase of List of RefObjects)

-	 *            <br>

-	 *

-	 *

-	 *            Case 1:

-	 *

-	 *            <customProperties xmi:id="_A0YGsBhQEea3AoorCOXNXA" key="custKey_abstractProcess">

-	 *            <value xsi:type="common:ReferenceObject" xmi:id="_A0YGsRhQEea3AoorCOXNXA"> ------------------------->

-	 *            This element is part of List <value href="default1.amxmi#_nDgKUNotEeWXsaNW2kxe8A" /> </value>

-	 *            </customProperties>

-	 *

-	 *            Case 2:

-	 *

-	 *            <customProperties xmi:id="_NaacUBhfEea3AoorCOXNXA" key="custKey_group_refobjs">

-	 *            <value xsi:type="common:ListObject" xmi:id="_8b8TkBhfEea3AoorCOXNXA">

-	 *            <values xsi:type="common:ReferenceObject" xmi:id="__kW2ABhfEea3AoorCOXNXA"> ------------------------->

-	 *            This element is part of List <value href="default1.amxmi#_nDgKUNotEeWXsaNW2kxe8A" /> </values>

-	 *            <values xsi:type="common:ReferenceObject" xmi:id="__0BpsBhfEea3AoorCOXNXA">

-	 *            <value href="default1.amxmi#_6PbocBhOEea3AoorCOXNXA" /> </values> </value> </customProperties>

-	 *

-	 *

-	 *

-	 */

-

-	private void updateTypeForAllElements(final List<Element> values, final String type) {

-

-		if (type == null) {

-			return;

-		}

-

-		for (final Element element : values) {

-

-			final Element child = element.getChild(VALUE);

-

-			if (child != null) {

-

-				final String attributeValue = child.getAttributeValue("type", AmaltheaNamespaceRegistry.getGenericNamespace("xsi"));

-

-				if (attributeValue == null) {

-

-					child.setAttribute("type", type, AmaltheaNamespaceRegistry.getGenericNamespace("xsi"));

-				}

-

-			}

-		}

-	}

-

-	/**

-	 * This method is used to parse the text content (which has meta model info of elements extending

-	 * ReferableBaseObjects and its parents)

-	 *

-	 * @return

-	 */

-	// ignore false-positive that (parentElement != null) always evaluates to false 

-	@SuppressWarnings("java:S2583")

-	private Map<String, List<XSDElement>> populateInfoOfAmaltheModelTags_111_Content() {

-

-		final Map<String, List<XSDElement>> map = new HashMap<>();

-

-

-		/*-

-		 * Text file contains the content in the following format (which replicates the containment relationship):

-		 *

-		 * swModel,sw:SWModel,labels,sw:Label,,

-		 *

-		 * Elements on the left side are the parents

-		 */

-

-		try (final InputStream inputStream = getInputStream();

-

-				final BufferedReader in = new BufferedReader(new InputStreamReader(inputStream));) {

-			String inputLine;

-

-			while ((inputLine = in.readLine()) != null) {

-

-				final StringTokenizer tokenizer = new StringTokenizer(inputLine, ",");

-

-				XSDElement parentElement = null;

-

-				XSDElement processingElement = null;

-

-				boolean isTagToProcess = true;

-				boolean isTagTypeToProcess = false;

-

-				while (tokenizer.hasMoreTokens()) {

-

-					final String nextToken = tokenizer.nextToken();

-

-					if (isTagToProcess) {

-						processingElement = new XSDElement();

-						processingElement.setName(nextToken);

-

-

-						isTagToProcess = false;

-						isTagTypeToProcess = true;

-					}

-					else if (isTagTypeToProcess && processingElement != null) {

-

-						processingElement.setType(nextToken);

-

-

-						if (!map.containsKey(processingElement.getName())) {

-

-							map.put(processingElement.getName(), new ArrayList<>());

-							map.get(processingElement.getName()).add(processingElement);

-

-						}

-						else {

-

-							final List<XSDElement> existingElements = map.get(processingElement.getName());

-

-							boolean isElementWithSamePropsExisting = false;

-

-							for (final XSDElement xsdElementRef : existingElements) {

-

-								if ((processingElement.getName().equals(xsdElementRef.getName()))

-										&& (processingElement.getType().equals(xsdElementRef.getType()))) {

-

-									processingElement = xsdElementRef;

-

-									isElementWithSamePropsExisting = true;

-									break;

-

-								}

-

-							}

-

-							if (!isElementWithSamePropsExisting) {

-								map.get(processingElement.getName()).add(processingElement);

-							}

-						}

-

-						if (parentElement != null) {

-							processingElement.getParentRefs().add(parentElement);

-						}

-

-						parentElement = processingElement;

-

-						isTagTypeToProcess = false;

-						isTagToProcess = true;

-					}

-

-				}

-

-			}

-		}

-		catch (final Exception e) {

-			LOGGER.error(e.getMessage(), e);

-		}

-

-

-		return map;

-	}

-

-	private InputStream getInputStream() throws IOException {

-		if (System.getProperty("junit:tags_Elements_ReferableBaseObject") != null) {

-

-			return new FileInputStream(

-					new File(System.getProperty("junit:tags_Elements_ReferableBaseObject")));

-		}

-		

-		final URL url = new URL(

-				"platform:/plugin/org.eclipse.app4mc.amalthea.converters.common/resources/tags_Elements_ReferableBaseObject.txt");

-		return url.openConnection().getInputStream();

-	}

-

-

-	/**

-	 * This method is used to take jdom2 Element node and return ElementRef object and its corresponding parent

-	 * ElementRef's <br>

-	 * Input string example: <StimuliModel><stimuli></stimuli></StimuliModel> <br>

-	 * Result of this input : ElementRef (with name : stimuli) --> Parent ElementRef (with name : StimuliModel)

-	 *

-	 * @param node

-	 * @return

-	 */

-	private ElementRef elementRefBuilder(final Element node) {

-

-		final String tagName = node.getName();

-

-		final ElementRef elementRef = new ElementRef();

-

-		elementRef.setName(tagName);

-

-		/*- element type from the XMI is fetched */

-		elementRef.setType(node.getAttributeValue("type", AmaltheaNamespaceRegistry.getGenericNamespace("xsi")));

-

-		final ElementRef parentElementRef = addParentElementRef(node, elementRef);

-

-		if (parentElementRef != null) {

-			elementRef.setParentRef(parentElementRef);

-		}

-		return elementRef;

-

-	}

-

-	/**

-	 * This method is used to create Parent ElementRef object for the supplied JDom node

-	 *

-	 * @param node

-	 *            JDOM node element

-	 * @param elementRef

-	 *            ElementRef object for which parent should be created

-	 * @return

-	 */

-

-	private static ElementRef addParentElementRef(final Element node, final ElementRef elementRef) {

-

-		final Element parentElement = node.getParentElement();

-

-		if (parentElement != null) {

-

-			final String parentTagName = parentElement.getName()

-					+ (parentElement.getNamespacePrefix() != null ? parentElement.getNamespacePrefix() : "");

-

-			final ElementRef parentElementRef = new ElementRef();

-

-			if (parentTagName.contains(":")) {

-				parentElementRef.setType(parentTagName);

-			}

-			else {

-				parentElementRef.setName(parentTagName);

-			}

-

-

-			return parentElementRef;

-		}

-

-		return null;

-	}

-

-

-	/**

-	 * This method takes legacy URI fragment as an input and builds ElementRef object and its corresponding Parent

-	 * ElementRef's

-	 *

-	 * Input string example: //@stimuliModel/@stimuli.0

-	 *

-	 * Result of this input : ElementRef (with name : stimuli) --> Parent ElementRef (with name : StimuliModel)

-	 *

-	 * @param refString

-	 * @return

-	 */

-	private static ElementRef elementRefBuilder(final String refString) {

-

-		ElementRef elementRef = null;

-

-		ElementRef parentElementRef = null;

-

-

-		final char[] charArray = refString.toCharArray();

-

-

-		boolean isBuildingElement = false;

-

-		final StringBuilder nameBuffer = new StringBuilder();

-

-		for (int i = 0; i < charArray.length; i++) {

-

-			if (charArray[i] == '/') {

-

-				if (nameBuffer.length() > 0 && elementRef != null) {

-

-					elementRef.setName(nameBuffer.toString());

-

-					if (parentElementRef != null) {

-						elementRef.setParentRef(parentElementRef);

-					}

-

-					parentElementRef = elementRef;

-

-					nameBuffer.setLength(0);

-				}

-

-				isBuildingElement = false;

-

-				// lookup for /@

-

-				int lookUp = i + 1;

-

-

-				if ((lookUp < charArray.length) && (charArray[lookUp] == '/')) {

-

-					i++;

-

-					lookUp = lookUp + 1;

-

-					if ((lookUp < charArray.length) && (charArray[lookUp] == '@')) {

-						i++;

-

-						isBuildingElement = true;

-

-						elementRef = new ElementRef();

-					}

-

-				}

-				else if (charArray[lookUp] == '@') {

-

-					i++;

-

-					isBuildingElement = true;

-

-					elementRef = new ElementRef();

-				}

-

-			}

-			else if (charArray[i] == '.') {

-

-				isBuildingElement = false;

-			}

-			else {

-

-				if (isBuildingElement) {

-					nameBuffer.append(charArray[i]);

-				}

-			}

-

-		}

-

-		if (nameBuffer.length() > 0 && elementRef != null) {

-

-			elementRef.setName(nameBuffer.toString());

-

-			if (parentElementRef != null) {

-				elementRef.setParentRef(parentElementRef);

-			}

-			nameBuffer.setLength(0);

-

-		}

-		return elementRef;

-	}

-

-	/**

-	 * This method is used to build the cache Map for the supplied XML Document objects

-	 *

-	 * @param fileName2documentMap

-	 * @param helper

-	 * @return

-	 */

-

-	private Map<File, Map<String, List<Element>>> buildCache(final Map<File, Document> fileName2documentMap) {

-		final Map<File, Map<String, List<Element>>> cacheMap = new HashMap<>();

-

-		for (final Entry<File, Document> entry : fileName2documentMap.entrySet()) {

-			final File targetFile = entry.getKey();

-			final Document root = entry.getValue();

-

-			final List<Element> elements = HelperUtil.getXpathResult(root, ".//*[@xmi:id]", Element.class,

-					AmaltheaNamespaceRegistry.getGenericNamespace("xmi"));

-

-			for (final Element element : elements) {

-				final String id = element.getAttributeValue("id", AmaltheaNamespaceRegistry.getGenericNamespace("xmi"));

-

-				if (!cacheMap.containsKey(targetFile)) {

-					cacheMap.put(targetFile, new HashMap<>());

-				}

-

-				if (!cacheMap.get(targetFile).containsKey(id)) {

-					cacheMap.get(targetFile).put(id, new ArrayList<>());

-				}

-

-				cacheMap.get(targetFile).get(id).add(element);

-			}

-		}

-		return cacheMap;

-	}

-

-	/*

-	 * If the input string is supplied as : "default.amxmi#_UZWXYOqLEeW9t73E3V9yAw"

-	 */

-	private boolean isURIFragment(final String string) {

-		if (string.contains("#")) {

-			return string.substring(string.indexOf('#') + 1).contains("/");

-		}

-		return string.contains("/");

-	}

-

-	/**

-	 * This method is used to return File object based on the supplied content

-	 *

-	 * @param targetFile

-	 * @param refFileInfoMap

-	 * @param fileNameInfo

-	 * @return

-	 */

-	protected File getRefFile(final File targetFile, final HashMap<String, File> refFileInfoMap,

-			final String fileNameInfo) {

-

-		File referredFile = null;

-

-		if (!refFileInfoMap.containsKey(fileNameInfo)) {

-			referredFile = new File(fileNameInfo);

-

-			if (!referredFile.exists()) {

-				referredFile = new File(targetFile.getParent(), fileNameInfo);

-

-				if (!referredFile.exists()) {

-

-					referredFile = null;

-					LOGGER.error("Unable to find the referred file : {}", fileNameInfo);

-				}

-			}

-

-			refFileInfoMap.put(fileNameInfo, referredFile);

-		} else {

-			referredFile = refFileInfoMap.get(fileNameInfo);

-		}

-

-		return referredFile;

-	}

-

-}

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/postprocessor/ElementRef.java b/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/postprocessor/ElementRef.java
deleted file mode 100644
index c29958c..0000000
--- a/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/postprocessor/ElementRef.java
+++ /dev/null
@@ -1,51 +0,0 @@
-/**

- ********************************************************************************

- * Copyright (c) 2015-2018 Robert Bosch GmbH and others.

- * 

- * This program and the accompanying materials are made

- * available under the terms of the Eclipse Public License 2.0

- * which is available at https://www.eclipse.org/legal/epl-2.0/

- * 

- * SPDX-License-Identifier: EPL-2.0

- * 

- * Contributors:

- *     Robert Bosch GmbH - initial API and implementation

- ********************************************************************************

- */

-

-package org.eclipse.app4mc.amalthea.converters.common.postprocessor;

-

-class ElementRef {

-

-	private String name;

-	private String type;

-

-	ElementRef parentRef;

-

-	public String getName() {

-		return this.name;

-	}

-

-	public void setName(final String name) {

-		this.name = name;

-	}

-

-

-	public String getType() {

-		return this.type;

-	}

-

-	public void setType(final String type) {

-		this.type = type;

-	}

-

-	public ElementRef getParentRef() {

-		return this.parentRef;

-	}

-

-	public void setParentRef(final ElementRef parentRef) {

-		this.parentRef = parentRef;

-	}

-

-

-}
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/postprocessor/XSDElement.java b/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/postprocessor/XSDElement.java
deleted file mode 100644
index 0a59c78..0000000
--- a/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/postprocessor/XSDElement.java
+++ /dev/null
@@ -1,49 +0,0 @@
-/**

- ********************************************************************************

- * Copyright (c) 2015-2018 Robert Bosch GmbH and others.

- * 

- * This program and the accompanying materials are made

- * available under the terms of the Eclipse Public License 2.0

- * which is available at https://www.eclipse.org/legal/epl-2.0/

- * 

- * SPDX-License-Identifier: EPL-2.0

- * 

- * Contributors:

- *     Robert Bosch GmbH - initial API and implementation

- ********************************************************************************

- */

-

-package org.eclipse.app4mc.amalthea.converters.common.postprocessor;

-

-import java.util.HashSet;

-import java.util.Set;

-

-class XSDElement {

-

-	private String name;

-	private String type;

-

-	final Set<XSDElement> parentRefs = new HashSet<>();

-

-	public String getName() {

-		return this.name;

-	}

-

-	public void setName(final String name) {

-		this.name = name;

-	}

-

-	public Set<XSDElement> getParentRefs() {

-		return this.parentRefs;

-	}

-

-	public String getType() {

-		return this.type;

-	}

-

-	public void setType(final String type) {

-		this.type = type;

-	}

-

-

-}
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/utils/AbstractAttributeRefCacheBuilder.java b/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/utils/AbstractAttributeRefCacheBuilder.java
deleted file mode 100644
index af32e0e..0000000
--- a/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/utils/AbstractAttributeRefCacheBuilder.java
+++ /dev/null
@@ -1,546 +0,0 @@
-/**

- ********************************************************************************

- * Copyright (c) 2015-2019 Robert Bosch GmbH and others.

- *

- * This program and the accompanying materials are made

- * available under the terms of the Eclipse Public License 2.0

- * which is available at https://www.eclipse.org/legal/epl-2.0/

- *

- * SPDX-License-Identifier: EPL-2.0

- *

- * Contributors:

- *     Robert Bosch GmbH - initial API and implementation

- ********************************************************************************

- */

-

-package org.eclipse.app4mc.amalthea.converters.common.utils;

-

-import java.io.File;

-import java.util.ArrayList;

-import java.util.HashMap;

-import java.util.List;

-import java.util.Map;

-import java.util.Map.Entry;

-import java.util.Set;

-

-import org.eclipse.app4mc.amalthea.converters.common.base.ICache;

-import org.eclipse.app4mc.amalthea.converters.common.xpath.utils.BulkXpathOperation;

-import org.jdom2.Attribute;

-import org.jdom2.Document;

-import org.jdom2.Element;

-import org.jdom2.Namespace;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

-

-public abstract class AbstractAttributeRefCacheBuilder implements ICache {

-

-	private static final Logger LOGGER = LoggerFactory.getLogger(AbstractAttributeRefCacheBuilder.class);

-

-	Map<File, Map<String, Object>> map = new HashMap<>();

-

-	@Override

-	public Map<File, Map<String, Object>> getCacheMap() {

-		return this.map;

-	}

-

-	@Override

-	public void clearCacheMap() {

-		this.map.clear();

-	}

-

-	/**

-	 * This method is used to grab all Elements referred by legacy URI fragments and build a Map containing key as

-	 * URIFragment and value as corresponding Element

-	 *

-	 * Expected keys:

-	 *

-	 * URIFRAGMENT_SCHEDULER_REFS_ATRIBUTES

-	 *

-	 * @param targetFile

-	 * @param rootDocument

-	 * @return

-	 */

-	@SuppressWarnings("unchecked")

-	protected Map<String, Element> getAllElements_referred_by_URIFragments(final File targetFile,

-			final Document rootDocument, final String URIFRAGMENT_ELEMENT_REFS_ATTRIBUTES) {

-

-

-		final Map<String, List<Attribute>> uriFragment2schedulerRefAttribsMap =

-

-				(Map<String, List<Attribute>>) getCacheMap().get(targetFile).get(URIFRAGMENT_ELEMENT_REFS_ATTRIBUTES);

-

-		if (uriFragment2schedulerRefAttribsMap == null) {

-			LOGGER.error("cache : \"{}\" not populated", URIFRAGMENT_ELEMENT_REFS_ATTRIBUTES);

-			return new HashMap<>();

-		}

-

-		final Set<String> uriFragments = uriFragment2schedulerRefAttribsMap.keySet();

-

-		final Map<String, Element> uriFragment2ElementsMap = getAllElements_referred_by_URIFragments(rootDocument,

-				uriFragments);

-

-		return uriFragment2ElementsMap;

-	}

-

-	// TODO:Use Xpath bulk operation

-	protected Map<String, Element> getAllElements_referred_by_URIFragments(final Document rootDocument,

-			final Set<String> uriFragments) {

-		final Map<String, Element> uriFragment2ElementsMap = new HashMap<>();

-

-		/*- temporary Map to store key as URIFragment and Vale as Xpath*/

-		final Map<String, String> uriFragment2XpathStringMap = new HashMap<>();

-

-		/*- Map to store the result of */

-

-		Map<String, List<Element>> xpath2ElementsMap = new HashMap<>();

-

-

-		for (final String uriFragment : uriFragments) {

-			uriFragment2XpathStringMap.put(uriFragment, getXpathString(uriFragment));

-		}

-

-		/*- Bulk operation applied to fetch the JDOM Element's to improve the performance */

-		final BulkXpathOperation bulkXpathOperation = new BulkXpathOperation();

-

-		xpath2ElementsMap = bulkXpathOperation.invokeXpath(rootDocument, uriFragment2XpathStringMap.values());

-

-		for (final String uriFragment : uriFragments) {

-

-			if (!uriFragment2ElementsMap.containsKey(uriFragment)) {

-

-				final String xpath = uriFragment2XpathStringMap.get(uriFragment);

-

-				final List<Element> list = xpath2ElementsMap.get(xpath);

-

-				if (!list.isEmpty()) {

-					uriFragment2ElementsMap.put(uriFragment, list.get(0));

-				} else {

-					LOGGER.error("No references can be found for : {} corresponding Xpath used is : {}", uriFragment, xpath);

-				}

-			}

-		}

-		return uriFragment2ElementsMap;

-	}

-

-	@SuppressWarnings("unchecked")

-	protected void addAttributeTo_Href_URIFragment_Attributes_Cache(

-			File targetFile,

-			File refFile,

-			String uriFragment_with_fileInfo,

-			String fileNameInfo,

-			String localURIFragment,

-			Attribute attribute,

-			String HREF_URIFRAGMENT_ELEMENT_REFS_ATRIBUTES) {

-

-

-		Map<File, Map<String, Map<String, List<Attribute>>>> reffile2uriFragment2schedulerRefAttribsMap =

-				((Map<File, Map<String, Map<String, List<Attribute>>>>) getCacheMap().get(targetFile).get(HREF_URIFRAGMENT_ELEMENT_REFS_ATRIBUTES));

-

-

-		Map<String, Map<String, List<Attribute>>> table = reffile2uriFragment2schedulerRefAttribsMap.get(refFile);

-

-		if (table == null) {

-			table = new HashMap<>();

-			reffile2uriFragment2schedulerRefAttribsMap.put(refFile, table);

-		}

-

-		Map<String, List<Attribute>> attributeMap = table.get(uriFragment_with_fileInfo);

-		List<Attribute> attributes = null;

-		if (attributeMap == null) {

-			attributeMap = new HashMap<>();

-			table.put(uriFragment_with_fileInfo, attributeMap);

-		} else {

-			attributes = attributeMap.get(localURIFragment);

-		}

-

-		if (attributes == null) {

-			attributes = new ArrayList<>();

-			attributeMap.put(localURIFragment, attributes);

-		}

-

-		attributes.add(attribute);

-	}

-

-

-	/**

-	 * <pre>

-	 * This method is used to get Xpath String from URIFragment

-	 *

-	 * Example: <br>

-	 *

-	 * Case 1:

-	 * If input for this method is : //@osModel/@scheduler.0 <br>

-	 * This method will return : //osModel/scheduler[0]

-	 *

-	 * Case 2:

-	 *

-	 * If input for this method is : //@osModel/@operatingSystems.0/@taskSchedulers.0

-	 * This method will return : //osModel/operatingSystems[0]/taskSchedulers[0]

-	 * </pre>

-	 *

-	 * @param uriFragment

-	 * @return

-	 */

-

-	protected String getXpathString_old(String uriFragment) {

-

-		uriFragment = uriFragment.replace("@", "");

-

-		if (uriFragment.contains(".")) {

-

-			final int lastIndexOf = uriFragment.lastIndexOf('.');

-

-			final String substring = uriFragment.substring(lastIndexOf + 1);

-

-			try {

-

-				/*- In EMF first element of array starts with index 0. And the same is used for URI fragment*/

-

-				/*- In Xpath 1st element of array starts with index 1 */

-

-				/*- Note: For conversion of URIFragment to Xpath, array index should be incremented by 1 */

-

-				final int arrayIndex = Integer.parseInt(substring) + 1;

-

-				uriFragment = uriFragment.substring(0, lastIndexOf) + "[" + arrayIndex + "]";

-

-			}

-			catch (final Exception e) {

-				LOGGER.error(

-						"Exception occured during conversion of URIFragment : {} to Xpath String", uriFragment, e);

-

-				throw e;

-			}

-		}

-

-		return uriFragment;

-	}

-

-

-	/**

-	 * <pre>

-	 * This method is used to get Xpath String from URIFragment

-	 *

-	 * Example: <br>

-	 *

-	 * Case 1:

-	 * If input for this method is : //@osModel/@scheduler.0 <br>

-	 * This method will return : //osModel/scheduler[0]

-	 *

-	 * Case 2:

-	 *

-	 * If input for this method is : //@osModel/@operatingSystems.0/@taskSchedulers.0

-	 * This method will return : //osModel/operatingSystems[0]/taskSchedulers[0]

-	 * </pre>

-	 *

-	 * @param uriFragment

-	 * @return

-	 */

-	protected String getXpathString(String uriFragment) {

-

-		uriFragment = uriFragment.replace("@", "");

-		if (uriFragment.contains(".")) {

-			char[] charArray = uriFragment.toCharArray();

-			boolean isBuildingIndex = false;

-

-			StringBuilder xpathBuffer = new StringBuilder();

-			StringBuilder indexBuffer = new StringBuilder();

-			for (int i = 0; i < charArray.length; i++) {

-				if (charArray[i] == '.') {

-					xpathBuffer.append("[");

-					isBuildingIndex = true;

-					indexBuffer = new StringBuilder();

-				} else if (isBuildingIndex && (charArray[i] == '/')) {

-					addIndexToBuffer(xpathBuffer, indexBuffer);

-					indexBuffer = new StringBuilder();

-					xpathBuffer.append("]");

-					xpathBuffer.append("/");

-					isBuildingIndex = false;

-				} else if (isBuildingIndex) {

-					indexBuffer.append(charArray[i]);

-				} else {

-					xpathBuffer.append(charArray[i]);

-				}

-			}

-

-			if (isBuildingIndex) {

-				addIndexToBuffer(xpathBuffer, indexBuffer);

-				xpathBuffer.append("]");

-			}

-

-			uriFragment = xpathBuffer.toString();

-		}

-

-		return uriFragment;

-	}

-

-	private void addIndexToBuffer(StringBuilder xpathBuffer, StringBuilder indexBuffer) {

-		try {

-			long parseLong = Long.parseLong(indexBuffer.toString());

-

-			/*

-			 * As Xpath index starts with 1 and EMF index starts with 0

-			 *   ===> during the conversion of uri fragment to Xpath ==> index is incremented by 1

-			 */

-			xpathBuffer.append(parseLong + 1);

-

-		} catch (Exception e) {

-			xpathBuffer.append(indexBuffer);

-		}

-	}

-

-	/**

-	 * This method is used to grab all the Attributes referring to legacy format of URI fragments and group them

-	 * accordingly based on key as URIFragment

-	 *

-	 * @param rootDocument

-	 * @return

-	 */

-	protected Map<String, List<Attribute>> getAllAttributes_containing_URIFragments(final Document rootDocument,

-			final String xPath_for_attributes, final Namespace... nameSpaces) {

-

-		final List<Attribute> schedulerAttributes = HelperUtil.getXpathResult(rootDocument, xPath_for_attributes,

-				Attribute.class, nameSpaces);

-

-		/*- map containing key as URIFragment and value as List of Attribute objects */

-		final Map<String, List<Attribute>> uriFragment2AttributesMap = new HashMap<>();

-

-

-		for (final Attribute attribute : schedulerAttributes) {

-

-			final String uriFragment = attribute.getValue();

-

-			if (!uriFragment2AttributesMap.containsKey(uriFragment)) {

-				uriFragment2AttributesMap.put(uriFragment, new ArrayList<>());

-			}

-

-			uriFragment2AttributesMap.get(uriFragment).add(attribute);

-		}

-

-		return uriFragment2AttributesMap;

-

-	}

-

-	/**

-	 * <pre>

-	 * xpath_elementtype_href_attribute :

-	 *   ".//scheduler/@href[contains(., \"/\")]"

-	 *

-	 * </pre>

-	 *

-	 * @param targetFile

-	 * @param rootDocument

-	 * @param xpath_elementtype_href_attribute

-	 */

-

-	protected void populateAllHREF_ElementAttributes_having_legacy_URI_refs(final File targetFile,

-			final Document rootDocument, final String xpath_elementtype_href_attribute,

-			final String HREF_URIFRAGMENT_ELEMENT_REFS_ATRIBUTES, final Namespace... namespaces) {

-

-

-		final List<Attribute> schedulerHrefs = HelperUtil.getXpathResult(rootDocument,

-				xpath_elementtype_href_attribute, Attribute.class, namespaces);

-

-

-		final HashMap<String, File> refFileInfoMap = new HashMap<>();

-

-

-		final Map<File, Map<String, Map<String, List<Attribute>>>> reffile2uriFragment2schedulerRefAttribsMap = new HashMap<>();

-

-		/*- Adding elements into Cache */

-		getCacheMap().get(targetFile).put(HREF_URIFRAGMENT_ELEMENT_REFS_ATRIBUTES,

-				reffile2uriFragment2schedulerRefAttribsMap);

-

-

-		loop: for (final Attribute attribute : schedulerHrefs) {

-

-			final String uriFragment_with_fileInfo = attribute.getValue();

-			final int indexOfHash = uriFragment_with_fileInfo.indexOf('#');

-

-			if (indexOfHash != -1) {

-				final String fileNameInfo = uriFragment_with_fileInfo.substring(0, indexOfHash);

-

-				final String localURIFragment = uriFragment_with_fileInfo.substring(indexOfHash + 1);

-

-				// verify if the localURIFragment is of old format and not XMI ID

-				if (! localURIFragment.contains("//")) {

-					// this is the case of UUID (XMI ID) being present as a reference. It is not required to store such

-					// elements in the cache

-					continue loop;

-				}

-

-				final File refFile = getRefFile(targetFile, refFileInfoMap, fileNameInfo);

-

-				if (refFile != null) {

-					addAttributeTo_Href_URIFragment_Attributes_Cache(targetFile, refFile, uriFragment_with_fileInfo,

-							fileNameInfo, localURIFragment, attribute, HREF_URIFRAGMENT_ELEMENT_REFS_ATRIBUTES);

-				}

-				else {

-					LOGGER.error("Skipping attribut with value : {}", uriFragment_with_fileInfo);

-				}

-			}

-		}

-	}

-

-

-	protected File getRefFile(File targetFile, HashMap<String, File> refFileInfoMap, String fileNameInfo) {

-

-		File referredFile = null;

-

-		if (!refFileInfoMap.containsKey(fileNameInfo)) {

-			referredFile = new File(fileNameInfo);

-

-			if (!referredFile.exists()) {

-				referredFile = new File(targetFile.getParent(), fileNameInfo);

-

-				if (!referredFile.exists()) {

-					referredFile = null;

-					LOGGER.error("Unable to find the referred file : {}", fileNameInfo);

-				}

-			}

-

-			refFileInfoMap.put(fileNameInfo, referredFile);

-		} else {

-			referredFile = refFileInfoMap.get(fileNameInfo);

-		}

-

-		return referredFile;

-	}

-

-	@SuppressWarnings("unchecked")

-	protected void populate_All_UUID_Elements(File targetFile, Document rootDocument, String xpath, String uuidElement, Namespace... nameSpaces) {

-

-		Map<String, Element> uuid2elementMap = null;

-

-		if (!getCacheMap().get(targetFile).containsKey(uuidElement)) {

-			uuid2elementMap = new HashMap<>();

-			getCacheMap().get(targetFile).put(uuidElement, uuid2elementMap);

-		}

-		else {

-			uuid2elementMap = (Map<String, Element>) getCacheMap().get(targetFile).get(uuidElement);

-		}

-

-		final List<Element> elements = HelperUtil.getXpathResult(rootDocument, xpath, Element.class, nameSpaces);

-

-		for (final Element element : elements) {

-

-			final Attribute attribute = element.getAttribute("id", AmaltheaNamespaceRegistry.getGenericNamespace("xmi"));

-

-			if (attribute != null) {

-				uuid2elementMap.put(attribute.getValue(), element);

-			}

-		}

-	}

-

-	@SuppressWarnings("unchecked")

-	protected void populate_All_Elements_With_Name(File targetFile, Document rootDocument, String xpath, String elementName, Namespace... nameSpaces) {

-

-		Map<String, Element> name2elementMap = null;

-

-		if (!getCacheMap().get(targetFile).containsKey(elementName)) {

-			name2elementMap = new HashMap<>();

-			getCacheMap().get(targetFile).put(elementName, name2elementMap);

-		}

-		else {

-			name2elementMap = (Map<String, Element>) getCacheMap().get(targetFile).get(elementName);

-		}

-

-		final List<Element> elements = HelperUtil.getXpathResult(rootDocument, xpath, Element.class, nameSpaces);

-

-		for (final Element element : elements) {

-

-			final Attribute attribute = element.getAttribute("name");

-

-			if (attribute != null) {

-				name2elementMap.put(attribute.getValue(), element);

-			}

-		}

-	}

-

-	// TODO: optimize Xpath

-	@SuppressWarnings("unchecked")

-	protected void populate_AllElements_referred_by_hrefURIFragments(

-			File targetFile,

-			Document rootDocument,

-			Map<File, Document> fileName2documentMap,

-			String HREF_URIFRAGMENT_ELEMENT_REFS_ATRIBUTES,

-			String HREF_URIFRAGMENT_ELEMENT) {

-

-		Map<File, Map<String, Map<String, List<Attribute>>>> reffile2uriFragment2schedulerRefAttribsMap =

-				(Map<File, Map<String, Map<String, List<Attribute>>>>) getCacheMap().get(targetFile).get(HREF_URIFRAGMENT_ELEMENT_REFS_ATRIBUTES);

-

-		Set<File> keySet = reffile2uriFragment2schedulerRefAttribsMap.keySet();

-

-		/*- Result: gloabl uri fragment & JDOM Element mapping */

-		Map<String, Element> allElements_referred_by_URIFragments = new HashMap<>();

-

-		getCacheMap().get(targetFile).put(HREF_URIFRAGMENT_ELEMENT, allElements_referred_by_URIFragments);

-

-		/*- ===========new code ==============*/

-		for (File referencedFile : keySet) {

-

-			/*- Fetching the corresponding Document object belonging to the referencedFile [Note: all Xpath's should be applied on this document ] */

-			Document targetDocument = fileName2documentMap.get(referencedFile);

-

-			/*-Below table contains Row as: GlobalURI Fragment, Column as : local URI Fragment, value as: List of attributes having global URI fragment */

-			Map<String, Map<String, List<Attribute>>> table = reffile2uriFragment2schedulerRefAttribsMap.get(referencedFile);

-

-			/*- temporary Map to store key as local URIFragment and Vale as global URI Fragment*/

-			final Map<String, String> localUriFragment2globalUriFragmentMap = new HashMap<>();

-

-			/*- temporary Map to store key as local URIFragment and Vale as Xpath*/

-			final Map<String, String> localUriFragment2XpathMap = new HashMap<>();

-

-			/*- temporary Map to store key as Xpath and Vale as JDOM Elements which are obtained as result of this Xpath*/

-			Map<String, List<Element>> xpath2ElementsMap = new HashMap<>();

-

-

-			for (final Entry<String, Map<String, List<Attribute>>> entry : table.entrySet()) {

-				/*- rowkey is global URI fragment */

-				final String row_globalURI = entry.getKey();

-				final Map<String, List<Attribute>> rowMap = entry.getValue();

-

-				final Set<String> columns = rowMap.keySet();

-

-				if (columns != null && !columns.isEmpty()) {

-					// As there is one to one mapping between Global URI Fragments and local URI fragment associated to

-					// it. Pick the first element

-

-					for (final String column_localURI : columns) {

-						/*- column_localURI is local URI fragment (i.e. without file name information) */

-

-						localUriFragment2globalUriFragmentMap.put(column_localURI, row_globalURI);

-

-						/*- column_localURI is local URI fragment (i.e. without file name information) & value is the corresponding Xpath*/

-

-						localUriFragment2XpathMap.put(column_localURI, getXpathString(column_localURI));

-					}

-				}

-			}

-

-			/*- Bulk operation applied to fetch the JDOM Element's to improve the performance */

-			final BulkXpathOperation bulkXpathOperation = new BulkXpathOperation();

-

-			/*- supplying targetDcoument (JDOM Document object), Xpath's (obtained from local URI fragments) and helper class object */

-			xpath2ElementsMap = bulkXpathOperation.invokeXpath(targetDocument, localUriFragment2XpathMap.values());

-

-

-			/*- now populating the resultsMap with the required data : i.e. Global URI fragment & JDOM Elements belonging to it */

-

-			for (Entry<String, String> entry : localUriFragment2XpathMap.entrySet()) {

-				String localUri = entry.getKey();

-				String xpath = entry.getValue();

-

-				String globalUri = localUriFragment2globalUriFragmentMap.get(localUri);

-

-				List<Element> elements = xpath2ElementsMap.get(xpath);

-

-				if (!elements.isEmpty()) {

-					allElements_referred_by_URIFragments.put(globalUri, elements.get(0));

-				} else {

-					LOGGER.error("Element could not be found for URI : {}", globalUri);

-				}

-			}

-		}

-	}

-}

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/utils/AmaltheaNamespaceRegistry.java b/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/utils/AmaltheaNamespaceRegistry.java
index 53f308c..a872dc6 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/utils/AmaltheaNamespaceRegistry.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/utils/AmaltheaNamespaceRegistry.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2019 Robert Bosch GmbH and others.

+ * Copyright (c) 2019, 2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -22,13 +22,9 @@
 import java.util.stream.Collectors;

 

 import org.jdom2.Namespace;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

 

 public final class AmaltheaNamespaceRegistry {

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(AmaltheaNamespaceRegistry.class);

-

 	private static final LinkedHashMap<String, AmaltheaNamespace> REGISTRY = new LinkedHashMap<>();

 	private static final String GENERIC_NAMESPACE = "generic";

 

@@ -204,8 +200,6 @@
 		AmaltheaNamespace ns = REGISTRY.get(version);

 		if (ns != null) {

 			return ns.namespaceFor(prefix);

-		} else {

-			LOGGER.warn("No namespace registered for version {}", version);

 		}

 		return Namespace.getNamespace("", "");

 	}

@@ -214,8 +208,6 @@
 		AmaltheaNamespace ns = REGISTRY.get(version.getVersion());

 		if (ns != null) {

 			return ns.getAllNamespaces();

-		} else {

-			LOGGER.warn("No namespace registered for version {}", version.getVersion());

 		}

 		return new Namespace[] { Namespace.getNamespace("", "") };

 	}

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/utils/HelperUtil.java b/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/utils/HelperUtil.java
index e507868..bfd563d 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/utils/HelperUtil.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/utils/HelperUtil.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2019, 2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2019, 2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -26,14 +26,12 @@
 import java.util.ArrayList;

 import java.util.Arrays;

 import java.util.HashMap;

-import java.util.HashSet;

 import java.util.List;

 import java.util.Map;

 import java.util.Map.Entry;

-import java.util.Set;

 

 import javax.xml.XMLConstants;

-

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Attribute;

 import org.jdom2.Document;

 import org.jdom2.Element;

@@ -45,16 +43,12 @@
 import org.jdom2.output.XMLOutputter;

 import org.jdom2.xpath.XPathExpression;

 import org.jdom2.xpath.XPathFactory;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

 

 public final class HelperUtil {

 

 	private static final String NO_NAME = "no-name";

 	private static final String AMXMI = "amxmi";

 

-	public static final Logger LOGGER = LoggerFactory.getLogger(HelperUtil.class);

-

 	private HelperUtil() {

 		// empty default constructor

 	}

@@ -134,85 +128,20 @@
 		}

 	}

 

-	/**

-	 * This method is used to build a Map containing File (canonical file) as a Key and Value as org.jdom2.Document

-	 * objects. How it works :

-	 *

-	 * As a first step:

-	 *

-	 * This method is called for the file which should be migrated from one version to the other

-	 *

-	 * - Internally all the model file's which are referenced are fetched, and this method is called recursively for

-	 * each referenced model file -> Goal of this method is to have a single map where all the required File's and

-	 * corresponding org.jdom2.Document objects are available

-	 *

-	 * @param targetFile

-	 * @param map

-	 * @throws Exception

-	 */

-	public static void buildXMLDocumentsMap(final File targetFile, final Map<File, Document> map) throws Exception {

-

-		if (map.containsKey(targetFile.getCanonicalFile())) {

-			return;

-		}

-

-		if (!targetFile.exists()) {

-			LOGGER.error("Referred file does not exists : {}", targetFile.getAbsolutePath());

-			return;

-		}

-

-		if (!targetFile.getAbsolutePath().substring(targetFile.getAbsolutePath().lastIndexOf('.') + 1).contains(AMXMI)) {

-			LOGGER.info("Non amalthea files will not be considered for model migration");

-			return;

-		}

-

-		final Document xmlDoc = loadFile(targetFile.getAbsolutePath());

-

-		map.put(targetFile.getCanonicalFile(), xmlDoc);

-

-		final List<Attribute> hrefs = getXpathResult(xmlDoc.getRootElement(), ".//@href", Attribute.class);

-

-		final Set<String> referredFilePaths = new HashSet<>();

-

-		for (final Attribute attribute : hrefs) {

-

-			final String value = attribute.getValue();

-			if (value.startsWith("amlt:/")) {

-				/*- files are referred using the new Amalthea protocol provider */

-

-				/*- From 1.1.1, as the model scope is set as Folder. All the amxmi files present in the folder should be considered */

-				final File[] allFilesInDirectory = targetFile.getParentFile()

-						.listFiles( (dir, name) -> name.endsWith(".amxmi") );

-

-				for (final File file : allFilesInDirectory) {

-					buildXMLDocumentsMap(file, map);

-				}

-				continue;

-			}

-

-			final int index = value.lastIndexOf('#');

-			if (index != -1) {

-				final String fileName = value.substring(0, index);

-				referredFilePaths.add(fileName);

-			}

-		}

-

-		for (final String relativePath : referredFilePaths) {

-			if (relativePath != null && relativePath.length() > 0) {

-				buildXMLDocumentsMap(new File(targetFile.getParent() + File.separator + relativePath), map);

-			}

-		}

-	}

 

 	public static Document loadFile(final String path) throws JDOMException, IOException {

-

+		return loadFile(path, null);

+	}

+	

+	public static Document loadFile(final String path, SessionLogger logger) throws JDOMException, IOException {

+		

 		final long start = System.currentTimeMillis();

 		final File file = new File(path);

-

+		

 		final SAXBuilder sax = new SAXBuilder();

 		sax.setProperty(XMLConstants.ACCESS_EXTERNAL_DTD, "");

 		sax.setProperty(XMLConstants.ACCESS_EXTERNAL_SCHEMA, "");

-

+		

 		Document doc;

 		try {

 			doc = sax.build(file);

@@ -220,11 +149,13 @@
 		catch (JDOMException e) {

 			throw new JDOMException("Error occured while parsing file : " + path, e);

 		}

-

+		

 		final long end = System.currentTimeMillis();

-

-		LOGGER.info("Total time taken to load file : {} : {} ms", path, (end - start));

-

+		

+		if (logger != null) {

+			logger.info("Total time taken to load file : {0} : {1} ms", path, (end - start));

+		}

+		

 		return doc;

 	}

 

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/xpath/utils/BulkXpathOperation.java b/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/xpath/utils/BulkXpathOperation.java
deleted file mode 100644
index da7e669..0000000
--- a/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/xpath/utils/BulkXpathOperation.java
+++ /dev/null
@@ -1,193 +0,0 @@
-/**

- ********************************************************************************

- * Copyright (c) 2015-2019 Robert Bosch GmbH and others.

- *

- * This program and the accompanying materials are made

- * available under the terms of the Eclipse Public License 2.0

- * which is available at https://www.eclipse.org/legal/epl-2.0/

- *

- * SPDX-License-Identifier: EPL-2.0

- *

- * Contributors:

- *     Robert Bosch GmbH - initial API and implementation

- ********************************************************************************

- */

-

-package org.eclipse.app4mc.amalthea.converters.common.xpath.utils;

-

-import java.util.Collection;

-import java.util.HashMap;

-import java.util.List;

-import java.util.Map;

-import java.util.Set;

-

-import org.jdom2.Document;

-import org.jdom2.Element;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

-

-public class BulkXpathOperation {

-

-	private static final Logger LOGGER = LoggerFactory.getLogger(BulkXpathOperation.class);

-

-	/**

-	 * This method takes Xml Document object and the list of Xpath Strings as input-> and returns a Map with key as

-	 * Xpath and Value as the List<Element> JDOM elements

-	 *

-	 * @param document

-	 * @param xpaths

-	 * @return Map - containing Key as Xpath and Value as the List of JDOM Element's

-	 */

-	public Map<String, List<Element>> invokeXpath(final Document document, final Collection<String> xpaths) {

-

-		final Map<String, List<Element>> resultsMap = new HashMap<>();

-

-		try {

-

-			// building optimized map

-

-			final Map<String, XpathFragment> fragmentsMap = new HashMap<>();

-

-

-			for (final String xpath : xpaths) {

-

-				/*-example Xpath : //osModel/scheduler[3] */

-

-				/*- this buffer is used to populate characters of xpath fragment string till the first occurance of "/" */

-

-				final StringBuilder fragmentStringBuffer = new StringBuilder();

-

-				final char[] charArray = xpath.toCharArray();

-

-				final int length = charArray.length;

-

-				XpathFragment parentFragmentObject = null;

-

-				for (int i = 0; i < length; i++) {

-

-					final char _char = charArray[i];

-

-					/*- on occurance of "/" char, then the next character is also checked if it is "/" */

-

-					if (_char == '/') {

-

-						if ((i + 1) < length) {

-

-							final char _char_next = charArray[i + 1];

-

-							if (_char_next == '/') {

-

-								fragmentStringBuffer.append(_char);

-

-								fragmentStringBuffer.append(_char_next);

-

-								i++;

-							}

-							/*- on occurance of "/" char, then the next character is also checked if it is "/"

-							 *  Below is the case where next char is not "/"

-							 * */

-							else {

-

-								/*- containing only parts of the fragment */

-								final String fragmentString = fragmentStringBuffer.toString();

-

-								/*- example :

-								 *

-								 * - First iteration :  //osModel

-								 * - Second iteration :

-								 * */

-

-								if (fragmentString.length() > 0) {

-

-									/*- this the content of Xpath string from the begining till the current character (i.e. index of i)*/

-									final String xpathSubContent_from_begining_till_current_index = xpath.substring(0,

-											i);

-

-									if (fragmentsMap.containsKey(xpathSubContent_from_begining_till_current_index)) {

-

-										parentFragmentObject = fragmentsMap

-												.get(xpathSubContent_from_begining_till_current_index);

-

-									}

-									else {

-										final XpathFragment fragmentObject = new XpathFragment();

-										fragmentObject.setValue(fragmentString);

-										fragmentObject.setParent(parentFragmentObject);

-										/*-updating map*/

-										fragmentsMap.put(xpathSubContent_from_begining_till_current_index,

-												fragmentObject);

-										/*- marking the current fragment as parent fragment for the next iteration */

-										parentFragmentObject = fragmentObject;

-									}

-

-								}

-

-								fragmentStringBuffer.setLength(0);

-

-								fragmentStringBuffer.append("./");

-							}

-						}

-					}

-					else {

-

-						fragmentStringBuffer.append(_char);

-					}

-				}

-

-				/*- setting last fragment value, as it will not set in the previous loop */

-				final String fragmentString = fragmentStringBuffer.toString();

-

-				if (fragmentString.length() > 0) {

-

-					final XpathFragment fragment = new XpathFragment();

-					fragment.setValue(fragmentString);

-					fragment.setParent(parentFragmentObject);

-					/*-updating map*/

-					fragmentsMap.put(xpath, fragment);

-				}

-

-

-			}

-

-			/*- Printing the contents of FragmentsMap */

-

-			final Set<String> keySet = fragmentsMap.keySet();

-

-			for (final String string : keySet) {

-

-				LOGGER.trace("Xpath Fragment : {} associated Xpath chunk : {}", string, fragmentsMap.get(string).getValue());

-

-			}

-

-

-			/*- execute Xpath evaluation */

-

-			final Element rootElement = document.getRootElement();

-

-			for (final String xpath : xpaths) {

-

-				if (!resultsMap.containsKey(xpath)) {

-

-

-					final XpathFragment xpathFragment = fragmentsMap.get(xpath);

-

-					if (xpathFragment != null) {

-

-						xpathFragment.visit(rootElement);

-

-						final List<Element> xmlElements = xpathFragment.getXmlElements();

-

-						resultsMap.put(xpath, xmlElements);

-

-						LOGGER.trace("xpath : {} elements : {}", xpath, xmlElements.size());

-					}

-				}

-			}

-		}

-		catch (final Exception e) {

-			LOGGER.error(e.getMessage(), e);

-			throw e;

-		}

-		return resultsMap;

-	}

-}

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/xpath/utils/ProcessorElement.java b/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/xpath/utils/ProcessorElement.java
deleted file mode 100644
index 80c8573..0000000
--- a/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/xpath/utils/ProcessorElement.java
+++ /dev/null
@@ -1,55 +0,0 @@
-/**

- ********************************************************************************

- * Copyright (c) 2015-2018 Robert Bosch GmbH and others.

- * 

- * This program and the accompanying materials are made

- * available under the terms of the Eclipse Public License 2.0

- * which is available at https://www.eclipse.org/legal/epl-2.0/

- * 

- * SPDX-License-Identifier: EPL-2.0

- * 

- * Contributors:

- *     Robert Bosch GmbH - initial API and implementation

- ********************************************************************************

- */

-

-package org.eclipse.app4mc.amalthea.converters.common.xpath.utils;

-

-public class ProcessorElement<A, B, C> {

-

-	private A configurationElement;

-	private B inputVersions;

-	private C outputVersions;

-

-	public ProcessorElement(final A element1, final B element2, final C element3) {

-		this.configurationElement = element1;

-		this.inputVersions = element2;

-		this.outputVersions = element3;

-	}

-

-	public A getConfigurationElement() {

-		return this.configurationElement;

-	}

-

-	public void setConfigurationElement(final A element1) {

-		this.configurationElement = element1;

-	}

-

-	public B getInputVersions() {

-		return this.inputVersions;

-	}

-

-	public void setInputVersions(final B element2) {

-		this.inputVersions = element2;

-	}

-

-	public C getOutputVersions() {

-		return this.outputVersions;

-	}

-

-	public void setOutputVersions(final C element3) {

-		this.outputVersions = element3;

-	}

-

-

-}

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/xpath/utils/XpathFragment.java b/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/xpath/utils/XpathFragment.java
deleted file mode 100644
index 1b72baf..0000000
--- a/plugins/org.eclipse.app4mc.amalthea.converters.common/src/org/eclipse/app4mc/amalthea/converters/common/xpath/utils/XpathFragment.java
+++ /dev/null
@@ -1,127 +0,0 @@
-/**

- ********************************************************************************

- * Copyright (c) 2015-2019 Robert Bosch GmbH and others.

- *

- * This program and the accompanying materials are made

- * available under the terms of the Eclipse Public License 2.0

- * which is available at https://www.eclipse.org/legal/epl-2.0/

- *

- * SPDX-License-Identifier: EPL-2.0

- *

- * Contributors:

- *     Robert Bosch GmbH - initial API and implementation

- ********************************************************************************

- */

-

-package org.eclipse.app4mc.amalthea.converters.common.xpath.utils;

-

-import java.util.ArrayList;

-import java.util.List;

-

-import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

-import org.jdom2.Element;

-

-public class XpathFragment {

-

-	/*- holds the Xpath fragment */

-	private String value;

-

-	/*- holds the resulting JDOM Element's obtained by applying the Xpath */

-

-	private List<Element> xmlElements = new ArrayList<>();

-

-	/*- Parent XpathFragment object

-	 * In case of root element, parent XpathFragment is set as Null

-	 */

-	private XpathFragment parentFragment;

-

-	/*- status if Xpath is applied */

-

-	private boolean isVisited;

-

-	public boolean isVisited() {

-		return this.isVisited;

-	}

-

-	public void setVisited(final boolean isVisited) {

-		this.isVisited = isVisited;

-	}

-

-	public XpathFragment getParent() {

-		return this.parentFragment;

-	}

-

-	public void setParent(final XpathFragment parent) {

-		this.parentFragment = parent;

-	}

-

-	/*- returns the sub Xpath content associated to this XpathFragment object */

-	public String getValue() {

-		return this.value;

-	}

-

-	public void setValue(final String value) {

-		this.value = value;

-	}

-

-

-	public List<Element> getXmlElements() {

-		return this.xmlElements;

-	}

-

-	public void addXmlElements(final Element element) {

-		if (this.xmlElements == null) {

-			this.xmlElements = new ArrayList<>();

-		}

-		this.xmlElements.add(element);

-

-	}

-

-	public void addAllXmlElements(final List<Element> elements) {

-

-		if (this.xmlElements == null) {

-			this.xmlElements = new ArrayList<>();

-		}

-		this.xmlElements.addAll(elements);

-

-	}

-

-

-	public void visit(final Element rootElement) {

-

-		if (!this.isVisited) {

-

-			List<Element> parentElements = new ArrayList<>();

-

-			if (this.parentFragment == null) {

-

-				parentElements.add(rootElement);

-			}

-			else {

-				if (!this.parentFragment.isVisited()) {

-					this.parentFragment.visit(rootElement);

-				}

-				parentElements = this.parentFragment.getXmlElements();

-

-				if (parentElements == null || parentElements.isEmpty()) {

-					this.isVisited = true;

-					return;

-				}

-

-			}

-

-			for (final Element parentElement : parentElements) {

-

-				final List<Element> elements = HelperUtil.getXpathResult(parentElement, this.value, Element.class);

-

-				addAllXmlElements(elements);

-

-			}

-			this.isVisited = true;

-

-		}

-

-

-	}

-

-}

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.headless.app/META-INF/MANIFEST.MF b/plugins/org.eclipse.app4mc.amalthea.converters.headless.app/META-INF/MANIFEST.MF
index 2a6ac0b..ead98d9 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.headless.app/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.headless.app/META-INF/MANIFEST.MF
@@ -10,8 +10,7 @@
  org.eclipse.app4mc.amalthea.converters.common.utils,
  org.eclipse.osgi.service.environment;version="1.3.0",
  org.osgi.service.component;version="1.3.0",
- org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional,
- org.slf4j;version="1.7.2"
+ org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional
 Bundle-ActivationPolicy: lazy
 Require-Bundle: org.eclipse.equinox.common;bundle-version="3.10.0",
  org.apache.felix.gogo.runtime;bundle-version="1.0.6"
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.headless.app/src/org/eclipse/app4mc/amalthea/converters/headless/app/AbstractMigrationStarter.java b/plugins/org.eclipse.app4mc.amalthea.converters.headless.app/src/org/eclipse/app4mc/amalthea/converters/headless/app/AbstractMigrationStarter.java
index bfc9f19..d895376 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.headless.app/src/org/eclipse/app4mc/amalthea/converters/headless/app/AbstractMigrationStarter.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.headless.app/src/org/eclipse/app4mc/amalthea/converters/headless/app/AbstractMigrationStarter.java
@@ -1,6 +1,6 @@
 /**
  ********************************************************************************
- * Copyright (c) 2019, 2020 Robert Bosch GmbH and others.
+ * Copyright (c) 2019, 2021 Robert Bosch GmbH and others.
  *
  * This program and the accompanying materials are made
  * available under the terms of the Eclipse Public License 2.0
@@ -19,17 +19,12 @@
 import java.io.InputStreamReader;
 import java.util.ArrayList;
 
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
 /**
  * Abstract implementation for migration starter components. Contains the logic
  * for inspecting the command line arguments and starts the migration.
  */
 public class AbstractMigrationStarter {
 
-	private static final Logger LOGGER = LoggerFactory.getLogger(AbstractMigrationStarter.class);
-	
 	/**
 	 * The ModelMigrationCommand that does the actual migration task.
 	 */
@@ -106,7 +101,8 @@
 				try (BufferedReader reader = new BufferedReader(new InputStreamReader(System.in))) {
 					reader.readLine();
 				} catch (IOException e) {
-					LOGGER.error("Error on waiting for user input", e);
+					System.err.println("Error on waiting for user input");
+					e.printStackTrace(System.err);
 				}
 			}
 		}
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.headless.app/src/org/eclipse/app4mc/amalthea/converters/headless/app/ModelMigrationCommand.java b/plugins/org.eclipse.app4mc.amalthea.converters.headless.app/src/org/eclipse/app4mc/amalthea/converters/headless/app/ModelMigrationCommand.java
index 8ee6e9e..6dafcf5 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.headless.app/src/org/eclipse/app4mc/amalthea/converters/headless/app/ModelMigrationCommand.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.headless.app/src/org/eclipse/app4mc/amalthea/converters/headless/app/ModelMigrationCommand.java
@@ -1,6 +1,6 @@
 /**
  ********************************************************************************
- * Copyright (c) 2019-2020 Robert Bosch GmbH and others.
+ * Copyright (c) 2019-2021 Robert Bosch GmbH and others.
  *
  * This program and the accompanying materials are made
  * available under the terms of the Eclipse Public License 2.0
@@ -19,6 +19,7 @@
 import java.nio.file.Files;
 import java.nio.file.Path;
 import java.nio.file.Paths;
+import java.text.MessageFormat;
 import java.util.Arrays;
 import java.util.List;
 import java.util.Map;
@@ -36,14 +37,12 @@
 import org.eclipse.app4mc.amalthea.converters.common.utils.ModelVersion;
 import org.osgi.service.component.annotations.Component;
 import org.osgi.service.component.annotations.Reference;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
 
 /**
  * Command to execute a AMALTHEA model migration. Is registered as Felix Gogo Shell command.
  */
 // suppress logger vulnerability because we explicitly want to write to the console for the executable jar use case
-@SuppressWarnings("java:S1148")
+@SuppressWarnings(value = { "java:S1148", "java:S106" })
 @Component(
 	property = {
 		"osgi.command.scope:String=app4mc",
@@ -52,8 +51,6 @@
 	service = ModelMigrationCommand.class)
 public class ModelMigrationCommand {
 
-	private static final Logger LOGGER = LoggerFactory.getLogger(ModelMigrationCommand.class);
-
 	@Reference
 	MigrationProcessor migrationProcessor;
 
@@ -73,7 +70,7 @@
 
 		Path modelFilePath = Paths.get(filename).toAbsolutePath();
 		if (!Files.exists(modelFilePath)) {
-			LOGGER.error("Model file or folder \"{}\" does not exist!", filename);
+			System.err.println("Model file or folder \""+ filename + "\" does not exist!");
 			return;
 		}
 		
@@ -87,7 +84,7 @@
 			if (version != null) {
 				outputModelVersion = modelVersion;
 			} else {
-				LOGGER.error("Migration model version {} is invalid", modelVersion);
+				System.err.println("Migration model version " + modelVersion + " is invalid");
 				return;
 			}
 		}
@@ -106,7 +103,7 @@
 				convert(Arrays.asList(modelFilePath.toFile()), migrationSettings, noBackup);
 			}
 		} else {
-			LOGGER.error("Given parameter \"{}\" is neither a directory nor a model file!", filename);
+			System.err.println("Given parameter \"" + filename + "\" is neither a directory nor a model file!");
 		}
 	}
 	
@@ -127,7 +124,8 @@
 				}
 			}
 		} catch (IOException e) {
-			LOGGER.error("Failed to load model files", e);
+			System.err.println("Failed to load model files");
+			e.printStackTrace();
 			return;
 		}
 		
@@ -149,8 +147,8 @@
 					convertDirectory(path, outputModelVersion, recursive, noBackup);
 				}
 			} catch (IOException e) {
-				LOGGER.error("Failed to load model files", e);
-				return;
+				System.err.println("Failed to load model files");
+				e.printStackTrace();
 			}		
 		}
 	}
@@ -162,7 +160,8 @@
 			List<MigrationInputFile> modelFiles = MigrationHelper.populateModels(inputFiles, migrationSettings);
 			migrationSettings.getMigModelFiles().addAll(modelFiles);
 		} catch (Exception e) {
-			LOGGER.error("Failed to load model files", e);
+			System.err.println("Failed to load model files");
+			e.printStackTrace();
 			return;
 		}
 
@@ -170,17 +169,16 @@
 		try {
 			boolean inputValid = MigrationHelper.isInputModelVersionValid(migrationSettings);
 			if (!inputValid) {
-				LOGGER.error("Model migration stopped in {} as selected model files belong to different versions", migrationSettings.getOutputDirectoryLocation());
-				return;
+				System.err.println("Model migration stopped in " + migrationSettings.getOutputDirectoryLocation() + " as selected model files belong to different versions");
 			} else {
 
 				if (migrationSettings.getInputModelVersion() != null
 						&& ModelVersion.getLatestVersion().equals(migrationSettings.getInputModelVersion())) {
 
-					LOGGER.error("Selected models are compatible to latest AMALTHEA meta-model version {}.\nIt is not required to migrate the models in {}",
-							ModelVersion.getLatestVersion(), 
-							migrationSettings.getOutputDirectoryLocation());
-					return;
+					System.err.println("Selected models are compatible to latest AMALTHEA meta-model version " 
+							+ ModelVersion.getLatestVersion()
+							+ ".\nIt is not required to migrate the models in "
+							+ migrationSettings.getOutputDirectoryLocation());
 				} else {
 					// check if a migration needs to be executed
 					Map<String, String> migStepEntries = MigrationHelper.generateMigrationSteps(
@@ -188,9 +186,11 @@
 							migrationSettings.getMigrationModelVersion());
 
 					if (migStepEntries.size() == 0) {
-						LOGGER.error("Migration not supported for the selected model versions.\nInput Model version : \"{}\" Output Model Version : \"{}\"", 
-								migrationSettings.getInputModelVersion(), 
-								migrationSettings.getMigrationModelVersion());
+						System.err.println("Migration not supported for the selected model versions.\nInput Model version : \""
+								+ migrationSettings.getInputModelVersion()
+								+ "\" Output Model Version : \"" 
+								+ migrationSettings.getMigrationModelVersion()
+								+ "\"");
 						return;
 					}
 					
@@ -214,13 +214,13 @@
 						switch (result) {
 
 						case MigrationStatusCode.UNSUPPORTED_MODEL_VERSIONS:
-							LOGGER.error("Migration in {} not supported for the selected model versions. \nInput Model version : \"{}\" Output Model Version : \"{}\"",
+							System.err.println(MessageFormat.format("Migration in {0} not supported for the selected model versions. \nInput Model version : \"{1}\" Output Model Version : \"{2}\"",
 									migrationSettings.getOutputDirectoryLocation(),
 									migrationSettings.getInputModelVersion(),
-									migrationSettings.getMigrationModelVersion());
+									migrationSettings.getMigrationModelVersion()));
 							break;
 						case MigrationStatusCode.ERROR:
-							LOGGER.error("Error during migration in {}", migrationSettings.getOutputDirectoryLocation());
+							System.err.println("Error during migration in " + migrationSettings.getOutputDirectoryLocation());
 							break;
 						default:
 							System.out.println("Model Migration in " + migrationSettings.getOutputDirectoryLocation() + " successful !!");
@@ -228,13 +228,13 @@
 					} else {
 						// do nothing as we could not backup source and this can data loss to user if he
 						// does not intend to loose his original model file
-						LOGGER.error("Migration Stopped : Source files could not be backed up before migration in {}",
-								migrationSettings.getOutputDirectoryLocation());
+						System.err.println("Migration Stopped : Source files could not be backed up before migration in "
+								+ migrationSettings.getOutputDirectoryLocation());
 					}
 				}
 			}
 		} catch (MigrationException e) {
-			LOGGER.error("Error during migration in {} : {}", migrationSettings.getOutputDirectoryLocation(), e.getLocalizedMessage());
+			System.err.println("Error during migration in " + migrationSettings.getOutputDirectoryLocation() + " : " +  e.getLocalizedMessage());
 		}
 
 	}
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/META-INF/MANIFEST.MF b/plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/META-INF/MANIFEST.MF
deleted file mode 100644
index 865e1f6..0000000
--- a/plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/META-INF/MANIFEST.MF
+++ /dev/null
@@ -1,18 +0,0 @@
-Manifest-Version: 1.0

-Bundle-ManifestVersion: 2

-Bundle-Name: APP4MC Log4j Configuration

-Bundle-SymbolicName: org.eclipse.app4mc.amalthea.converters.log4j.configuration

-Bundle-Version: 1.1.0.qualifier

-Fragment-Host: org.apache.log4j;bundle-version="1.2.15"

-Automatic-Module-Name: org.eclipse.app4mc.amalthea.converters.log4j.configuration

-Bundle-RequiredExecutionEnvironment: JavaSE-1.8

-Require-Bundle: org.eclipse.equinox.common;bundle-version="3.10.0",

- org.eclipse.core.runtime;bundle-version="3.14.0";resolution:=optional

-Bundle-Vendor: Eclipse APP4MC

-Import-Package: javax.xml.parsers,

- org.eclipse.equinox.log;version="1.0.0",

- org.osgi.framework;version="1.9.0",

- org.osgi.service.log;version="1.4.0",

- org.osgi.util.tracker;version="1.5.2",

- org.w3c.dom,

- org.xml.sax

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/build.properties b/plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/build.properties
deleted file mode 100644
index cc8e8d4..0000000
--- a/plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/build.properties
+++ /dev/null
@@ -1,8 +0,0 @@
-source.. = src/

-output.. = bin/

-bin.includes = META-INF/,\

-               .,\

-               headless_log4j.xml,\

-               log4j.xml

-src.includes = headless_log4j.xml,\

-               log4j.xml

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/headless_log4j.xml b/plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/headless_log4j.xml
deleted file mode 100644
index 7039fb7..0000000
--- a/plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/headless_log4j.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>
-<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
-<log4j:configuration xmlns:log4j='http://jakarta.apache.org/log4j/'>
-
-	<appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">
-		<!-- only log errors to the console -->
-		<param name="Threshold" value="${app4mc.log.level}"/>
-	    <layout class="org.apache.log4j.PatternLayout">
-			<param name="ConversionPattern" value="%m%n" />
-	    </layout>
-	</appender>
-
-	<appender name="FILE" class="org.eclipse.app4mc.amalthea.converters.log4j.configuration.MigrationSessionFileAppender">
-		<param name="append" value="true"/>
-		<param name="dateFormat" value="yyyy-MM-dd_HH_mm_ss"/>
-	    <layout class="org.apache.log4j.PatternLayout">
-			<param name="ConversionPattern"
-			  value="%d{yyyy-MM-dd_HH_mm_ss} - %-5p:  %m%n" />
-	    </layout>
-	</appender>
-
-	<root>
-		<!-- set the log level to debug to catch everything -->
-		<!-- on the appenders the threshold is set to filter further -->
-		<level value="debug" />
-		<appender-ref ref="CONSOLE" />
-		<appender-ref ref="FILE" />
-	</root>
-
-</log4j:configuration>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/log4j.xml b/plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/log4j.xml
deleted file mode 100644
index 68c8a96..0000000
--- a/plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/log4j.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>

-<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">

-<log4j:configuration xmlns:log4j='http://jakarta.apache.org/log4j/'>

-

-	<appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">

-		<!-- only log errors to the console -->

-		<param name="Threshold" value="ERROR"/>

-	    <layout class="org.apache.log4j.PatternLayout">

-			<param name="ConversionPattern"

-			  value="%d{yyyy-MM-dd_HH_mm_ss} - %-5p:  %m%n" />

-	    </layout>

-	</appender>

-

-	<appender name="FILE" class="org.eclipse.app4mc.amalthea.converters.log4j.configuration.MigrationSessionFileAppender">

-		<param name="append" value="true"/>

-		<param name="dateFormat" value="yyyy-MM-dd_HH_mm_ss"/>

-	    <layout class="org.apache.log4j.PatternLayout">

-			<param name="ConversionPattern"

-			  value="%d{yyyy-MM-dd_HH_mm_ss} - %-5p:  %m%n" />

-	    </layout>

-	</appender>

-

-	<appender name="ECLIPSE" class="org.eclipse.app4mc.amalthea.converters.log4j.configuration.EclipseLogAppender">

-		<!-- only log errors to the eclipse log -->

-		<param name="Threshold" value="ERROR"/>

-	</appender>

-

-	<root>

-		<!-- set the log level to debug to catch everything -->

-		<!-- on the appenders the threshold is set to filter further -->

-		<level value="debug" />

-		<!--  <appender-ref ref="CONSOLE" />  -->

-		<appender-ref ref="ECLIPSE" />

-		<appender-ref ref="FILE" />

-	</root>

-

-</log4j:configuration>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/src/org/eclipse/app4mc/amalthea/converters/log4j/configuration/EclipseLogAppender.java b/plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/src/org/eclipse/app4mc/amalthea/converters/log4j/configuration/EclipseLogAppender.java
deleted file mode 100644
index 296fdcf..0000000
--- a/plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/src/org/eclipse/app4mc/amalthea/converters/log4j/configuration/EclipseLogAppender.java
+++ /dev/null
@@ -1,83 +0,0 @@
-/**

- ********************************************************************************

- * Copyright (c) 2019 Robert Bosch GmbH and others.

- *

- * This program and the accompanying materials are made

- * available under the terms of the Eclipse Public License 2.0

- * which is available at https://www.eclipse.org/legal/epl-2.0/

- *

- * SPDX-License-Identifier: EPL-2.0

- *

- * Contributors:

- *     Robert Bosch GmbH - initial API and implementation

- ********************************************************************************

- */

-package org.eclipse.app4mc.amalthea.converters.log4j.configuration;

-

-import org.apache.log4j.AppenderSkeleton;

-import org.apache.log4j.Level;

-import org.apache.log4j.spi.LoggingEvent;

-import org.apache.log4j.spi.ThrowableInformation;

-import org.eclipse.core.runtime.IStatus;

-import org.eclipse.core.runtime.Platform;

-import org.eclipse.core.runtime.Status;

-import org.osgi.framework.Bundle;

-import org.osgi.framework.FrameworkUtil;

-

-/**

- * Custom Log4j appender that forwards log statements to the Eclipse logging mechanism.

- */

-public class EclipseLogAppender extends AppenderSkeleton {

-

-	private int getStatus(final LoggingEvent event) {

-		final Level level = event.getLevel();

-

-		int status = IStatus.INFO;

-

-		if (level == Level.ERROR) {

-			status = IStatus.ERROR;

-		}

-		else if (level == Level.INFO) {

-			status = IStatus.INFO;

-		}

-		else if (level == Level.WARN) {

-			status = IStatus.WARNING;

-		}

-		else if (level == Level.FATAL) {

-			status = IStatus.ERROR;

-		}

-		return status;

-	}

-

-	@Override

-	protected void append(final LoggingEvent event) {

-

-		final Object messageObject = event.getMessage();

-		final ThrowableInformation throwableInformation = event.getThrowableInformation();

-		final int status = getStatus(event);

-

-		Bundle bundle = FrameworkUtil.getBundle(getClass());

-		if (bundle != null) {

-			if (throwableInformation != null) {

-				Platform.getLog(bundle).log(new Status(status, bundle.getSymbolicName(),

-								messageObject != null ? messageObject.toString() : "",

-								throwableInformation.getThrowable()));

-			}

-			else {

-				Platform.getLog(bundle).log(new Status(status, bundle.getSymbolicName(),

-						messageObject != null ? messageObject.toString() : ""));

-			}

-		}

-	}

-

-	@Override

-	public void close() {

-		// no action required

-	}

-

-	@Override

-	public boolean requiresLayout() {

-		return false;

-	}

-

-}

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/src/org/eclipse/app4mc/amalthea/converters/log4j/configuration/MigrationSessionFileAppender.java b/plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/src/org/eclipse/app4mc/amalthea/converters/log4j/configuration/MigrationSessionFileAppender.java
deleted file mode 100644
index 9e949c0..0000000
--- a/plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/src/org/eclipse/app4mc/amalthea/converters/log4j/configuration/MigrationSessionFileAppender.java
+++ /dev/null
@@ -1,75 +0,0 @@
-/**
- ********************************************************************************
- * Copyright (c) 2019 Robert Bosch GmbH and others.
- *
- * This program and the accompanying materials are made
- * available under the terms of the Eclipse Public License 2.0
- * which is available at https://www.eclipse.org/legal/epl-2.0/
- *
- * SPDX-License-Identifier: EPL-2.0
- *
- * Contributors:
- *     Robert Bosch GmbH - initial API and implementation
- ********************************************************************************
- */
-package org.eclipse.app4mc.amalthea.converters.log4j.configuration;
-
-import java.io.File;
-import java.text.SimpleDateFormat;
-import java.util.Date;
-
-import org.apache.log4j.FileAppender;
-
-/**
- * Custom Log4j appender that is writing log statements to a dedicated log file
- * if the system property <i>OUTPUT_DIRECTORY</i> is set. With this mechanism it
- * is possible to write a log file per migration session to a dedicated log file
- * only.
- */
-public class MigrationSessionFileAppender extends FileAppender {
-
-	private String dateFormat;
-	private String currentOutputDirectory;
-
-	@Override
-	protected boolean checkEntryConditions() {
-		// we only append if an output directory is set
-		String outputDirectory = System.getProperty("APP4MC_MIGRATION_OUTPUT_DIRECTORY");
-		if (outputDirectory != null) {
-			if (this.currentOutputDirectory == null || !this.currentOutputDirectory.equals(outputDirectory)) {
-				// close an open file as the output directory changed
-				closeFile();
-				this.currentOutputDirectory = outputDirectory;
-				// create and set a new session log file
-				createNewFile();
-			}
-
-			return super.checkEntryConditions();
-		} else if (currentOutputDirectory != null) {
-			// system property is null but local output directory is set
-			// so we assume the session logging was disabled
-			closeFile();
-			this.currentOutputDirectory = null;
-		}
-		return false;
-	}
-
-	private void createNewFile() {
-		String dateToStr = new SimpleDateFormat(this.dateFormat).format(new Date());
-
-		super.setFile(new File(this.currentOutputDirectory, "ModelMigration__" + dateToStr + ".log").getAbsolutePath());
-		super.activateOptions();
-	}
-
-	@Override
-	public void activateOptions() {
-		// simply avoid the log warning for missing fileName configuration
-		if (fileName != null) {
-			super.activateOptions();
-		}
-	}
-
-	public void setDateFormat(String dateFormat) {
-		this.dateFormat = dateFormat;
-	}
-}
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.ui/META-INF/MANIFEST.MF b/plugins/org.eclipse.app4mc.amalthea.converters.ui/META-INF/MANIFEST.MF
index 6c86046..b57ffc5 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.ui/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.ui/META-INF/MANIFEST.MF
@@ -22,6 +22,5 @@
  org.eclipse.e4.core.di.annotations;version="1.6.0",
  org.eclipse.e4.core.di.extensions;version="0.15.0",
  org.eclipse.e4.ui.di,
- org.eclipse.e4.ui.services,
- org.slf4j
+ org.eclipse.e4.ui.services
 Bundle-ActivationPolicy: lazy
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.ui/src/org/eclipse/app4mc/amalthea/converters/ui/dialog/ModelMigrationDialog.java b/plugins/org.eclipse.app4mc.amalthea.converters.ui/src/org/eclipse/app4mc/amalthea/converters/ui/dialog/ModelMigrationDialog.java
index c209f0a..120b40a 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.ui/src/org/eclipse/app4mc/amalthea/converters/ui/dialog/ModelMigrationDialog.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.ui/src/org/eclipse/app4mc/amalthea/converters/ui/dialog/ModelMigrationDialog.java
@@ -1,6 +1,6 @@
 /**
  ********************************************************************************
- * Copyright (c) 2015-2020 Robert Bosch GmbH and others.
+ * Copyright (c) 2015-2021 Robert Bosch GmbH and others.
  *
  * This program and the accompanying materials are made
  * available under the terms of the Eclipse Public License 2.0
@@ -36,9 +36,11 @@
 import org.eclipse.core.resources.IContainer;
 import org.eclipse.core.resources.IProject;
 import org.eclipse.core.resources.IResource;
+import org.eclipse.core.runtime.Platform;
 import org.eclipse.core.runtime.jobs.Job;
 import org.eclipse.jface.dialogs.Dialog;
 import org.eclipse.jface.dialogs.IDialogConstants;
+import org.eclipse.jface.dialogs.MessageDialog;
 import org.eclipse.jface.layout.GridDataFactory;
 import org.eclipse.jface.layout.TableColumnLayout;
 import org.eclipse.jface.viewers.ArrayContentProvider;
@@ -63,13 +65,9 @@
 import org.eclipse.swt.widgets.Shell;
 import org.eclipse.swt.widgets.Table;
 import org.eclipse.swt.widgets.TableColumn;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
 
 public class ModelMigrationDialog extends Dialog {
 
-	private static final Logger LOGGER = LoggerFactory.getLogger(ModelMigrationDialog.class);
-	
 	private static final String MODEL_MIGRATION = "AMALTHEA Model Migration";
 	private MigrationProcessor migrationProcessor;
 	private IProject iProject;
@@ -232,7 +230,7 @@
 								
 								recursiveMigrationSettings.getMigModelFiles().addAll(MigrationHelper.populateModels(modelFiles, recursiveMigrationSettings));
 							} catch (Exception ex) {
-								LOGGER.error("Failed to load model files", ex);
+								MessageDialog.openError(getParentShell(), "Failed to load model files", "Failed to load model files: " + ex.getLocalizedMessage());
 								return;
 							}
 						}
@@ -374,7 +372,7 @@
 						}
 						catch (final Exception e) {
 
-							LOGGER.warn("unable to build the relative path for file : {}", file.getAbsolutePath(), e);
+							Platform.getLog(getClass()).warn("unable to build the relative path for file : " + file.getAbsolutePath(), e);
 
 							// Displaying the absolute path of the file, as it is not possible to construct relative path
 							cell.setText(file.getAbsolutePath());
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.ui/src/org/eclipse/app4mc/amalthea/converters/ui/handlers/AmaltheaModelMigrationHandler.java b/plugins/org.eclipse.app4mc.amalthea.converters.ui/src/org/eclipse/app4mc/amalthea/converters/ui/handlers/AmaltheaModelMigrationHandler.java
index b5b9257..2f0b655 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.ui/src/org/eclipse/app4mc/amalthea/converters/ui/handlers/AmaltheaModelMigrationHandler.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.ui/src/org/eclipse/app4mc/amalthea/converters/ui/handlers/AmaltheaModelMigrationHandler.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2015-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2015-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -48,14 +48,10 @@
 import org.eclipse.jface.viewers.TreePath;

 import org.eclipse.jface.viewers.TreeSelection;

 import org.eclipse.swt.widgets.Shell;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

 

 @SuppressWarnings("restriction")

 public class AmaltheaModelMigrationHandler {

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(AmaltheaModelMigrationHandler.class);

-

 	private static final String MODEL_MIGRATION = "AMALTHEA Model Migration";

 	private static final String SIMPLE_MIGRATION = "simplemigration";

 

@@ -95,7 +91,7 @@
 					return;

 				}

 				

-				IContainer selectedContainer = collectInput((TreeSelection) selection, inputModels);

+				IContainer selectedContainer = collectInput((TreeSelection) selection, inputModels, shell);

 				

 				if (modelEditorVersion != null) {

 					migrationSettings.setMigrationModelVersion(modelEditorVersion);

@@ -105,8 +101,6 @@
 					List<MigrationInputFile> modelFiles = MigrationHelper.populateModels(inputModels, migrationSettings);

 					migrationSettings.getMigModelFiles().addAll(modelFiles);

 				} catch (Exception e) {

-					LOGGER.error("Failed to load model files", e);

-					

 					MessageDialog.openError(shell, MODEL_MIGRATION,

 							"Failed to load model files: " + e.getLocalizedMessage());

 					

@@ -174,7 +168,7 @@
 		return iProject;

 	}

 	

-	private IContainer collectInput(TreeSelection selection, List<File> inputModels) {

+	private IContainer collectInput(TreeSelection selection, List<File> inputModels, Shell shell) {

 		TreePath[] paths = selection.getPaths();

 

 		IContainer selectedContainer = null;

@@ -197,7 +191,8 @@
 						parents.add(file.getParentFile());

 					}

 					catch (IOException e) {

-						LOGGER.error("Error fetching the file : {}", iFile, e);

+						MessageDialog.openError(shell, MODEL_MIGRATION,

+								"Error fetching the file '" + iFile + "': " + e.getLocalizedMessage());

 					}

 				} else {

 					IContainer container = ((IAdaptable) lastSegment).getAdapter(IContainer.class);

@@ -213,7 +208,8 @@
 									.collect(Collectors.toList()));

 							

 						} catch (IOException e) {

-							LOGGER.error("Failed to collect model files in container", e);

+							MessageDialog.openError(shell, MODEL_MIGRATION,

+									"Failed to collect model files in container: " + e.getLocalizedMessage());

 						}	

 					}

 				}

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.ui/src/org/eclipse/app4mc/amalthea/converters/ui/handlers/AmaltheaResourceExpression.java b/plugins/org.eclipse.app4mc.amalthea.converters.ui/src/org/eclipse/app4mc/amalthea/converters/ui/handlers/AmaltheaResourceExpression.java
index ccc8c27..6cb35c7 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.ui/src/org/eclipse/app4mc/amalthea/converters/ui/handlers/AmaltheaResourceExpression.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.ui/src/org/eclipse/app4mc/amalthea/converters/ui/handlers/AmaltheaResourceExpression.java
@@ -1,6 +1,6 @@
 /**
  ********************************************************************************
- * Copyright (c) 2020 Robert Bosch GmbH and others.
+ * Copyright (c) 2020, 2021 Robert Bosch GmbH and others.
  *
  * This program and the accompanying materials are made
  * available under the terms of the Eclipse Public License 2.0
@@ -26,17 +26,14 @@
 import org.eclipse.core.resources.IContainer;
 import org.eclipse.core.resources.IFile;
 import org.eclipse.core.resources.IResource;
+import org.eclipse.core.runtime.Platform;
 import org.eclipse.e4.core.di.annotations.Evaluate;
 import org.eclipse.e4.core.di.annotations.Optional;
 import org.eclipse.e4.ui.services.IServiceConstants;
 import org.eclipse.jface.viewers.IStructuredSelection;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
 
 public class AmaltheaResourceExpression {
 	
-	private static final Logger LOGGER = LoggerFactory.getLogger(AmaltheaResourceExpression.class); 
-	
 	@Evaluate
 	public boolean evaluate(@Optional @Named(IServiceConstants.ACTIVE_SELECTION) IStructuredSelection selection) {
 		if (selection != null && !selection.isEmpty()
@@ -59,7 +56,7 @@
 							.anyMatch(file -> MigrationHelper.isModelFile(file.toString()));
 					
 				} catch (IOException e) {
-					LOGGER.error("Failed to collect model files", e);
+					Platform.getLog(getClass()).error("Failed to collect model files", e);
 				}	
 
 			}
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.ui/src/org/eclipse/app4mc/amalthea/converters/ui/jobs/ModelMigrationJob.java b/plugins/org.eclipse.app4mc.amalthea.converters.ui/src/org/eclipse/app4mc/amalthea/converters/ui/jobs/ModelMigrationJob.java
index cca1927..b0e0a5d 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.ui/src/org/eclipse/app4mc/amalthea/converters/ui/jobs/ModelMigrationJob.java
+++ b/plugins/org.eclipse.app4mc.amalthea.converters.ui/src/org/eclipse/app4mc/amalthea/converters/ui/jobs/ModelMigrationJob.java
@@ -1,6 +1,6 @@
 /**

  ********************************************************************************

- * Copyright (c) 2015-2020 Robert Bosch GmbH and others.

+ * Copyright (c) 2015-2021 Robert Bosch GmbH and others.

  *

  * This program and the accompanying materials are made

  * available under the terms of the Eclipse Public License 2.0

@@ -35,16 +35,13 @@
 import org.eclipse.core.runtime.IProgressMonitor;

 import org.eclipse.core.runtime.IStatus;

 import org.eclipse.core.runtime.NullProgressMonitor;

+import org.eclipse.core.runtime.Platform;

 import org.eclipse.core.runtime.Status;

 import org.eclipse.core.runtime.jobs.Job;

 import org.eclipse.swt.widgets.Display;

-import org.slf4j.Logger;

-import org.slf4j.LoggerFactory;

 

 public class ModelMigrationJob extends Job {

 

-	private static final Logger LOGGER = LoggerFactory.getLogger(ModelMigrationJob.class);

-	

 	private final MigrationProcessor migrationProcessor;

 	private final ArrayList<MigrationSettings> migrationSettings = new ArrayList<>();

 	private IProject project;

@@ -212,7 +209,7 @@
 				try {

 					this.project.refreshLocal(IResource.DEPTH_INFINITE, new NullProgressMonitor());

 				} catch (final CoreException e) {

-					LOGGER.error(e.getMessage(), e);

+					Platform.getLog(getClass()).error(e.getLocalizedMessage(), e);

 				}

 			}

 		});

diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/.classpath b/plugins/org.eclipse.app4mc.util.sessionlog.console/.classpath
similarity index 99%
rename from plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/.classpath
rename to plugins/org.eclipse.app4mc.util.sessionlog.console/.classpath
index b862a29..eca7bdb 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/.classpath
+++ b/plugins/org.eclipse.app4mc.util.sessionlog.console/.classpath
@@ -1,7 +1,7 @@
-<?xml version="1.0" encoding="UTF-8"?>

-<classpath>

-	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>

-	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>

-	<classpathentry kind="src" path="src"/>

-	<classpathentry kind="output" path="bin"/>

-</classpath>

+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
+	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
+	<classpathentry kind="src" path="src"/>
+	<classpathentry kind="output" path="bin"/>
+</classpath>
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/.project b/plugins/org.eclipse.app4mc.util.sessionlog.console/.project
similarity index 78%
copy from plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/.project
copy to plugins/org.eclipse.app4mc.util.sessionlog.console/.project
index 10df767..abcc179 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/.project
+++ b/plugins/org.eclipse.app4mc.util.sessionlog.console/.project
@@ -1,28 +1,33 @@
-<?xml version="1.0" encoding="UTF-8"?>

-<projectDescription>

-	<name>org.eclipse.app4mc.amalthea.converters.log4j.configuration</name>

-	<comment></comment>

-	<projects>

-	</projects>

-	<buildSpec>

-		<buildCommand>

-			<name>org.eclipse.jdt.core.javabuilder</name>

-			<arguments>

-			</arguments>

-		</buildCommand>

-		<buildCommand>

-			<name>org.eclipse.pde.ManifestBuilder</name>

-			<arguments>

-			</arguments>

-		</buildCommand>

-		<buildCommand>

-			<name>org.eclipse.pde.SchemaBuilder</name>

-			<arguments>

-			</arguments>

-		</buildCommand>

-	</buildSpec>

-	<natures>

-		<nature>org.eclipse.pde.PluginNature</nature>

-		<nature>org.eclipse.jdt.core.javanature</nature>

-	</natures>

-</projectDescription>

+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>org.eclipse.app4mc.util.sessionlog.console</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.jdt.core.javabuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.pde.ManifestBuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.pde.SchemaBuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.pde.ds.core.builder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>org.eclipse.pde.PluginNature</nature>
+		<nature>org.eclipse.jdt.core.javanature</nature>
+	</natures>
+</projectDescription>
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/.settings/org.eclipse.jdt.core.prefs b/plugins/org.eclipse.app4mc.util.sessionlog.console/.settings/org.eclipse.jdt.core.prefs
similarity index 99%
rename from plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/.settings/org.eclipse.jdt.core.prefs
rename to plugins/org.eclipse.app4mc.util.sessionlog.console/.settings/org.eclipse.jdt.core.prefs
index e2860e9..9f6ece8 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/.settings/org.eclipse.jdt.core.prefs
+++ b/plugins/org.eclipse.app4mc.util.sessionlog.console/.settings/org.eclipse.jdt.core.prefs
@@ -1,8 +1,8 @@
-eclipse.preferences.version=1

-org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled

-org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8

-org.eclipse.jdt.core.compiler.compliance=1.8

-org.eclipse.jdt.core.compiler.problem.assertIdentifier=error

-org.eclipse.jdt.core.compiler.problem.enumIdentifier=error

-org.eclipse.jdt.core.compiler.release=disabled

-org.eclipse.jdt.core.compiler.source=1.8

+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
+org.eclipse.jdt.core.compiler.compliance=1.8
+org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
+org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
+org.eclipse.jdt.core.compiler.release=disabled
+org.eclipse.jdt.core.compiler.source=1.8
diff --git a/plugins/org.eclipse.app4mc.util.sessionlog.console/.settings/org.eclipse.pde.ds.annotations.prefs b/plugins/org.eclipse.app4mc.util.sessionlog.console/.settings/org.eclipse.pde.ds.annotations.prefs
new file mode 100644
index 0000000..9f27ee9
--- /dev/null
+++ b/plugins/org.eclipse.app4mc.util.sessionlog.console/.settings/org.eclipse.pde.ds.annotations.prefs
@@ -0,0 +1,8 @@
+classpath=true
+dsVersion=V1_3
+eclipse.preferences.version=1
+enabled=true
+generateBundleActivationPolicyLazy=true
+path=OSGI-INF
+validationErrorLevel=error
+validationErrorLevel.missingImplicitUnbindMethod=ignore
diff --git a/plugins/org.eclipse.app4mc.util.sessionlog.console/META-INF/MANIFEST.MF b/plugins/org.eclipse.app4mc.util.sessionlog.console/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..d1aefe5
--- /dev/null
+++ b/plugins/org.eclipse.app4mc.util.sessionlog.console/META-INF/MANIFEST.MF
@@ -0,0 +1,12 @@
+Manifest-Version: 1.0
+Bundle-ManifestVersion: 2
+Bundle-Name: APP4MC SessionLog Console Writer
+Bundle-SymbolicName: org.eclipse.app4mc.util.sessionlog.console
+Bundle-Version: 1.1.0.qualifier
+Bundle-Vendor: Eclipse APP4MC
+Automatic-Module-Name: org.eclipse.app4mc.util.sessionlog.console
+Bundle-RequiredExecutionEnvironment: JavaSE-1.8
+Service-Component: OSGI-INF/org.eclipse.app4mc.util.sessionlog.console.SessionLogConsoleWriter.xml
+Bundle-ActivationPolicy: lazy
+Import-Package: org.eclipse.app4mc.util.sessionlog;version="1.1.0",
+ org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional
diff --git a/plugins/org.eclipse.app4mc.util.sessionlog.console/OSGI-INF/org.eclipse.app4mc.util.sessionlog.console.SessionLogConsoleWriter.xml b/plugins/org.eclipse.app4mc.util.sessionlog.console/OSGI-INF/org.eclipse.app4mc.util.sessionlog.console.SessionLogConsoleWriter.xml
new file mode 100644
index 0000000..25b5e95
--- /dev/null
+++ b/plugins/org.eclipse.app4mc.util.sessionlog.console/OSGI-INF/org.eclipse.app4mc.util.sessionlog.console.SessionLogConsoleWriter.xml
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" name="org.eclipse.app4mc.util.sessionlog.console.SessionLogConsoleWriter">
+   <service>
+      <provide interface="org.eclipse.app4mc.util.sessionlog.SessionLogWriter"/>
+   </service>
+   <implementation class="org.eclipse.app4mc.util.sessionlog.console.SessionLogConsoleWriter"/>
+</scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.util.sessionlog.console/about.html b/plugins/org.eclipse.app4mc.util.sessionlog.console/about.html
new file mode 100644
index 0000000..164f781
--- /dev/null
+++ b/plugins/org.eclipse.app4mc.util.sessionlog.console/about.html
@@ -0,0 +1,36 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>About</title>
+</head>
+<body lang="EN-US">
+	<h2>About This Content</h2>
+
+	<p>November 30, 2017</p>
+	<h3>License</h3>
+
+	<p>
+		The Eclipse Foundation makes available all content in this plug-in
+		(&quot;Content&quot;). Unless otherwise indicated below, the Content
+		is provided to you under the terms and conditions of the Eclipse
+		Public License Version 2.0 (&quot;EPL&quot;). A copy of the EPL is
+		available at <a href="http://www.eclipse.org/legal/epl-2.0">http://www.eclipse.org/legal/epl-2.0</a>.
+		For purposes of the EPL, &quot;Program&quot; will mean the Content.
+	</p>
+
+	<p>
+		If you did not receive this Content directly from the Eclipse
+		Foundation, the Content is being redistributed by another party
+		(&quot;Redistributor&quot;) and different terms and conditions may
+		apply to your use of any object code in the Content. Check the
+		Redistributor's license that was provided with the Content. If no such
+		license exists, contact the Redistributor. Unless otherwise indicated
+		below, the terms and conditions of the EPL still apply to any source
+		code in the Content and such source code may be obtained at <a
+			href="http://www.eclipse.org/">http://www.eclipse.org</a>.
+	</p>
+
+</body>
+</html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.util.sessionlog.console/build.properties b/plugins/org.eclipse.app4mc.util.sessionlog.console/build.properties
new file mode 100644
index 0000000..2a35983
--- /dev/null
+++ b/plugins/org.eclipse.app4mc.util.sessionlog.console/build.properties
@@ -0,0 +1,9 @@
+source.. = src/
+output.. = bin/
+bin.includes = META-INF/,\
+               .,\
+               OSGI-INF/,\
+               about.html,\
+               epl-2.0.html
+src.includes = about.html,\
+               epl-2.0.html
diff --git a/plugins/org.eclipse.app4mc.util.sessionlog.console/epl-2.0.html b/plugins/org.eclipse.app4mc.util.sessionlog.console/epl-2.0.html
new file mode 100644
index 0000000..637a181
--- /dev/null
+++ b/plugins/org.eclipse.app4mc.util.sessionlog.console/epl-2.0.html
@@ -0,0 +1,300 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+  <head>
+    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+    <title>Eclipse Public License - Version 2.0</title>
+    <style type="text/css">
+      body {
+        margin: 1.5em 3em;
+      }
+      h1{
+        font-size:1.5em;
+      }
+      h2{
+        font-size:1em;
+        margin-bottom:0.5em;
+        margin-top:1em;
+      }
+      p {
+        margin-top:  0.5em;
+        margin-bottom: 0.5em;
+      }
+      ul, ol{
+        list-style-type:none;
+      }
+    </style>
+  </head>
+  <body>
+    <h1>Eclipse Public License - v 2.0</h1>
+    <p>THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+      PUBLIC LICENSE (&ldquo;AGREEMENT&rdquo;). ANY USE, REPRODUCTION OR DISTRIBUTION
+      OF THE PROGRAM CONSTITUTES RECIPIENT&#039;S ACCEPTANCE OF THIS AGREEMENT.
+    </p>
+    <h2 id="definitions">1. DEFINITIONS</h2>
+    <p>&ldquo;Contribution&rdquo; means:</p>
+    <ul>
+      <li>a) in the case of the initial Contributor, the initial content
+        Distributed under this Agreement, and
+      </li>
+      <li>
+        b) in the case of each subsequent Contributor:
+        <ul>
+          <li>i) changes to the Program, and</li>
+          <li>ii) additions to the Program;</li>
+        </ul>
+        where such changes and/or additions to the Program originate from
+        and are Distributed by that particular Contributor. A Contribution
+        &ldquo;originates&rdquo; from a Contributor if it was added to the Program by such
+        Contributor itself or anyone acting on such Contributor&#039;s behalf.
+        Contributions do not include changes or additions to the Program that
+        are not Modified Works.
+      </li>
+    </ul>
+    <p>&ldquo;Contributor&rdquo; means any person or entity that Distributes the Program.</p>
+    <p>&ldquo;Licensed Patents&rdquo; mean patent claims licensable by a Contributor which
+      are necessarily infringed by the use or sale of its Contribution alone
+      or when combined with the Program.
+    </p>
+    <p>&ldquo;Program&rdquo; means the Contributions Distributed in accordance with this
+      Agreement.
+    </p>
+    <p>&ldquo;Recipient&rdquo; means anyone who receives the Program under this Agreement
+      or any Secondary License (as applicable), including Contributors.
+    </p>
+    <p>&ldquo;Derivative Works&rdquo; shall mean any work, whether in Source Code or other
+      form, that is based on (or derived from) the Program and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship.
+    </p>
+    <p>&ldquo;Modified Works&rdquo; shall mean any work in Source Code or other form that
+      results from an addition to, deletion from, or modification of the
+      contents of the Program, including, for purposes of clarity any new file
+      in Source Code form that contains any contents of the Program. Modified
+      Works shall not include works that contain only declarations, interfaces,
+      types, classes, structures, or files of the Program solely in each case
+      in order to link to, bind by name, or subclass the Program or Modified
+      Works thereof.
+    </p>
+    <p>&ldquo;Distribute&rdquo; means the acts of a) distributing or b) making available
+      in any manner that enables the transfer of a copy.
+    </p>
+    <p>&ldquo;Source Code&rdquo; means the form of a Program preferred for making
+      modifications, including but not limited to software source code,
+      documentation source, and configuration files.
+    </p>
+    <p>&ldquo;Secondary License&rdquo; means either the GNU General Public License,
+      Version 2.0, or any later versions of that license, including any
+      exceptions or additional permissions as identified by the initial
+      Contributor.
+    </p>
+    <h2 id="grant-of-rights">2. GRANT OF RIGHTS</h2>
+    <ul>
+      <li>a) Subject to the terms of this Agreement, each Contributor hereby
+        grants Recipient a non-exclusive, worldwide, royalty-free copyright
+        license to reproduce, prepare Derivative Works of, publicly display,
+        publicly perform, Distribute and sublicense the Contribution of such
+        Contributor, if any, and such Derivative Works.
+      </li>
+      <li>b) Subject to the terms of this Agreement, each Contributor hereby
+        grants Recipient a non-exclusive, worldwide, royalty-free patent
+        license under Licensed Patents to make, use, sell, offer to sell,
+        import and otherwise transfer the Contribution of such Contributor,
+        if any, in Source Code or other form. This patent license shall
+        apply to the combination of the Contribution and the Program if,
+        at the time the Contribution is added by the Contributor, such
+        addition of the Contribution causes such combination to be covered
+        by the Licensed Patents. The patent license shall not apply to any
+        other combinations which include the Contribution. No hardware per
+        se is licensed hereunder.
+      </li>
+      <li>c) Recipient understands that although each Contributor grants the
+        licenses to its Contributions set forth herein, no assurances are
+        provided by any Contributor that the Program does not infringe the
+        patent or other intellectual property rights of any other entity.
+        Each Contributor disclaims any liability to Recipient for claims
+        brought by any other entity based on infringement of intellectual
+        property rights or otherwise. As a condition to exercising the rights
+        and licenses granted hereunder, each Recipient hereby assumes sole
+        responsibility to secure any other intellectual property rights needed,
+        if any. For example, if a third party patent license is required to
+        allow Recipient to Distribute the Program, it is Recipient&#039;s
+        responsibility to acquire that license before distributing the Program.
+      </li>
+      <li>d) Each Contributor represents that to its knowledge it has sufficient
+        copyright rights in its Contribution, if any, to grant the copyright
+        license set forth in this Agreement.
+      </li>
+      <li>e) Notwithstanding the terms of any Secondary License, no Contributor
+        makes additional grants to any Recipient (other than those set forth
+        in this Agreement) as a result of such Recipient&#039;s receipt of the
+        Program under the terms of a Secondary License (if permitted under
+        the terms of Section 3).
+      </li>
+    </ul>
+    <h2 id="requirements">3. REQUIREMENTS</h2>
+    <p>3.1 If a Contributor Distributes the Program in any form, then:</p>
+    <ul>
+      <li>a) the Program must also be made available as Source Code, in
+        accordance with section 3.2, and the Contributor must accompany
+        the Program with a statement that the Source Code for the Program
+        is available under this Agreement, and informs Recipients how to
+        obtain it in a reasonable manner on or through a medium customarily
+        used for software exchange; and
+      </li>
+      <li>
+        b) the Contributor may Distribute the Program under a license
+        different than this Agreement, provided that such license:
+        <ul>
+          <li>i) effectively disclaims on behalf of all other Contributors all
+            warranties and conditions, express and implied, including warranties
+            or conditions of title and non-infringement, and implied warranties
+            or conditions of merchantability and fitness for a particular purpose;
+          </li>
+          <li>ii) effectively excludes on behalf of all other Contributors all
+            liability for damages, including direct, indirect, special, incidental
+            and consequential damages, such as lost profits;
+          </li>
+          <li>iii) does not attempt to limit or alter the recipients&#039; rights in the
+            Source Code under section 3.2; and
+          </li>
+          <li>iv) requires any subsequent distribution of the Program by any party
+            to be under a license that satisfies the requirements of this section 3.
+          </li>
+        </ul>
+      </li>
+    </ul>
+    <p>3.2 When the Program is Distributed as Source Code:</p>
+    <ul>
+      <li>a) it must be made available under this Agreement, or if the Program (i)
+        is combined with other material in a separate file or files made available
+        under a Secondary License, and (ii) the initial Contributor attached to
+        the Source Code the notice described in Exhibit A of this Agreement,
+        then the Program may be made available under the terms of such
+        Secondary Licenses, and
+      </li>
+      <li>b) a copy of this Agreement must be included with each copy of the Program.</li>
+    </ul>
+    <p>3.3 Contributors may not remove or alter any copyright, patent, trademark,
+      attribution notices, disclaimers of warranty, or limitations of liability
+      (&lsquo;notices&rsquo;) contained within the Program from any copy of the Program which
+      they Distribute, provided that Contributors may add their own appropriate
+      notices.
+    </p>
+    <h2 id="commercial-distribution">4. COMMERCIAL DISTRIBUTION</h2>
+    <p>Commercial distributors of software may accept certain responsibilities
+      with respect to end users, business partners and the like. While this
+      license is intended to facilitate the commercial use of the Program, the
+      Contributor who includes the Program in a commercial product offering should
+      do so in a manner which does not create potential liability for other
+      Contributors. Therefore, if a Contributor includes the Program in a
+      commercial product offering, such Contributor (&ldquo;Commercial Contributor&rdquo;)
+      hereby agrees to defend and indemnify every other Contributor
+      (&ldquo;Indemnified Contributor&rdquo;) against any losses, damages and costs
+      (collectively &ldquo;Losses&rdquo;) arising from claims, lawsuits and other legal actions
+      brought by a third party against the Indemnified Contributor to the extent
+      caused by the acts or omissions of such Commercial Contributor in connection
+      with its distribution of the Program in a commercial product offering.
+      The obligations in this section do not apply to any claims or Losses relating
+      to any actual or alleged intellectual property infringement. In order to
+      qualify, an Indemnified Contributor must: a) promptly notify the
+      Commercial Contributor in writing of such claim, and b) allow the Commercial
+      Contributor to control, and cooperate with the Commercial Contributor in,
+      the defense and any related settlement negotiations. The Indemnified
+      Contributor may participate in any such claim at its own expense.
+    </p>
+    <p>For example, a Contributor might include the Program
+      in a commercial product offering, Product X. That Contributor is then a
+      Commercial Contributor. If that Commercial Contributor then makes performance
+      claims, or offers warranties related to Product X, those performance claims
+      and warranties are such Commercial Contributor&#039;s responsibility alone.
+      Under this section, the Commercial Contributor would have to defend claims
+      against the other Contributors related to those performance claims and
+      warranties, and if a court requires any other Contributor to pay any damages
+      as a result, the Commercial Contributor must pay those damages.
+    </p>
+    <h2 id="warranty">5. NO WARRANTY</h2>
+    <p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT PERMITTED
+      BY APPLICABLE LAW, THE PROGRAM IS PROVIDED ON AN &ldquo;AS IS&rdquo; BASIS, WITHOUT
+      WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING,
+      WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
+      MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is
+      solely responsible for determining the appropriateness of using and
+      distributing the Program and assumes all risks associated with its
+      exercise of rights under this Agreement, including but not limited to the
+      risks and costs of program errors, compliance with applicable laws, damage
+      to or loss of data, programs or equipment, and unavailability or
+      interruption of operations.
+    </p>
+    <h2 id="disclaimer">6. DISCLAIMER OF LIABILITY</h2>
+    <p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT PERMITTED
+      BY APPLICABLE LAW, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY
+      LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
+      OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS),
+      HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+      LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+      OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS
+      GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+    </p>
+    <h2 id="general">7. GENERAL</h2>
+    <p>If any provision of this Agreement is invalid or unenforceable under
+      applicable law, it shall not affect the validity or enforceability of the
+      remainder of the terms of this Agreement, and without further action by the
+      parties hereto, such provision shall be reformed to the minimum extent
+      necessary to make such provision valid and enforceable.
+    </p>
+    <p>If Recipient institutes patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Program itself
+      (excluding combinations of the Program with other software or hardware)
+      infringes such Recipient&#039;s patent(s), then such Recipient&#039;s rights granted
+      under Section 2(b) shall terminate as of the date such litigation is filed.
+    </p>
+    <p>All Recipient&#039;s rights under this Agreement shall terminate if it fails to
+      comply with any of the material terms or conditions of this Agreement and
+      does not cure such failure in a reasonable period of time after becoming
+      aware of such noncompliance. If all Recipient&#039;s rights under this Agreement
+      terminate, Recipient agrees to cease use and distribution of the Program
+      as soon as reasonably practicable. However, Recipient&#039;s obligations under
+      this Agreement and any licenses granted by Recipient relating to the
+      Program shall continue and survive.
+    </p>
+    <p>Everyone is permitted to copy and distribute copies of this Agreement,
+      but in order to avoid inconsistency the Agreement is copyrighted and may
+      only be modified in the following manner. The Agreement Steward reserves
+      the right to publish new versions (including revisions) of this Agreement
+      from time to time. No one other than the Agreement Steward has the right
+      to modify this Agreement. The Eclipse Foundation is the initial Agreement
+      Steward. The Eclipse Foundation may assign the responsibility to serve as
+      the Agreement Steward to a suitable separate entity. Each new version of
+      the Agreement will be given a distinguishing version number. The Program
+      (including Contributions) may always be Distributed subject to the version
+      of the Agreement under which it was received. In addition, after a new
+      version of the Agreement is published, Contributor may elect to Distribute
+      the Program (including its Contributions) under the new version.
+    </p>
+    <p>Except as expressly stated in Sections 2(a) and 2(b) above, Recipient
+      receives no rights or licenses to the intellectual property of any
+      Contributor under this Agreement, whether expressly, by implication,
+      estoppel or otherwise. All rights in the Program not expressly granted
+      under this Agreement are reserved. Nothing in this Agreement is intended
+      to be enforceable by any entity that is not a Contributor or Recipient.
+      No third-party beneficiary rights are created under this Agreement.
+    </p>
+    <h2 id="exhibit-a">Exhibit A &ndash; Form of Secondary Licenses Notice</h2>
+    <p>&ldquo;This Source Code may also be made available under the following 
+    	Secondary Licenses when the conditions for such availability set forth 
+    	in the Eclipse Public License, v. 2.0 are satisfied: {name license(s),
+    	version(s), and exceptions or additional permissions here}.&rdquo;
+    </p>
+    <blockquote>
+      <p>Simply including a copy of this Agreement, including this Exhibit A
+        is not sufficient to license the Source Code under Secondary Licenses.
+      </p>
+      <p>If it is not possible or desirable to put the notice in a particular file,
+        then You may include the notice in a location (such as a LICENSE file in a
+        relevant directory) where a recipient would be likely to look for
+        such a notice.
+      </p>
+      <p>You may add additional accurate notices of copyright ownership.</p>
+    </blockquote>
+  </body>
+</html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.util.sessionlog.console/src/org/eclipse/app4mc/util/sessionlog/console/SessionLogConsoleWriter.java b/plugins/org.eclipse.app4mc.util.sessionlog.console/src/org/eclipse/app4mc/util/sessionlog/console/SessionLogConsoleWriter.java
new file mode 100644
index 0000000..64c35bd
--- /dev/null
+++ b/plugins/org.eclipse.app4mc.util.sessionlog.console/src/org/eclipse/app4mc/util/sessionlog/console/SessionLogConsoleWriter.java
@@ -0,0 +1,44 @@
+/**
+ ********************************************************************************
+ * Copyright (c) 2021 Robert Bosch GmbH and others.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ *
+ * Contributors:
+ *     Robert Bosch GmbH - initial API and implementation
+ ********************************************************************************
+ */
+package org.eclipse.app4mc.util.sessionlog.console;
+
+import java.io.File;
+import java.util.List;
+
+import org.eclipse.app4mc.util.sessionlog.SessionLogEntry;
+import org.eclipse.app4mc.util.sessionlog.SessionLogEntry.Status;
+import org.eclipse.app4mc.util.sessionlog.SessionLogWriter;
+import org.osgi.service.component.annotations.Component;
+
+/**
+ * {@link SessionLogWriter} implementation that simply prints the session log entries to the console.
+ */
+@Component
+public class SessionLogConsoleWriter implements SessionLogWriter {
+
+	@Override
+	public void write(File sessionLogFile, List<SessionLogEntry> log) {
+		String logLevel = System.getProperty("app4mc.log.level");
+		Status logStatus = SessionLogEntry.Status.parseStatus(logLevel);
+		
+		log.stream().filter(entry -> entry.test(logStatus)).forEach(entry -> {
+			System.out.println(entry.message);
+			if (entry.throwable != null) {
+				System.out.println(entry.getStackTrace());
+			}
+		});
+	}
+
+}
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/.classpath b/plugins/org.eclipse.app4mc.util.sessionlog.eclipse/.classpath
similarity index 99%
copy from plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/.classpath
copy to plugins/org.eclipse.app4mc.util.sessionlog.eclipse/.classpath
index b862a29..eca7bdb 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/.classpath
+++ b/plugins/org.eclipse.app4mc.util.sessionlog.eclipse/.classpath
@@ -1,7 +1,7 @@
-<?xml version="1.0" encoding="UTF-8"?>

-<classpath>

-	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>

-	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>

-	<classpathentry kind="src" path="src"/>

-	<classpathentry kind="output" path="bin"/>

-</classpath>

+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
+	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
+	<classpathentry kind="src" path="src"/>
+	<classpathentry kind="output" path="bin"/>
+</classpath>
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/.project b/plugins/org.eclipse.app4mc.util.sessionlog.eclipse/.project
similarity index 89%
rename from plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/.project
rename to plugins/org.eclipse.app4mc.util.sessionlog.eclipse/.project
index 10df767..a8953ea 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/.project
+++ b/plugins/org.eclipse.app4mc.util.sessionlog.eclipse/.project
@@ -1,28 +1,28 @@
-<?xml version="1.0" encoding="UTF-8"?>

-<projectDescription>

-	<name>org.eclipse.app4mc.amalthea.converters.log4j.configuration</name>

-	<comment></comment>

-	<projects>

-	</projects>

-	<buildSpec>

-		<buildCommand>

-			<name>org.eclipse.jdt.core.javabuilder</name>

-			<arguments>

-			</arguments>

-		</buildCommand>

-		<buildCommand>

-			<name>org.eclipse.pde.ManifestBuilder</name>

-			<arguments>

-			</arguments>

-		</buildCommand>

-		<buildCommand>

-			<name>org.eclipse.pde.SchemaBuilder</name>

-			<arguments>

-			</arguments>

-		</buildCommand>

-	</buildSpec>

-	<natures>

-		<nature>org.eclipse.pde.PluginNature</nature>

-		<nature>org.eclipse.jdt.core.javanature</nature>

-	</natures>

-</projectDescription>

+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>org.eclipse.app4mc.util.sessionlog.eclipse</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.jdt.core.javabuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.pde.ManifestBuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.pde.SchemaBuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>org.eclipse.pde.PluginNature</nature>
+		<nature>org.eclipse.jdt.core.javanature</nature>
+	</natures>
+</projectDescription>
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/.settings/org.eclipse.jdt.core.prefs b/plugins/org.eclipse.app4mc.util.sessionlog.eclipse/.settings/org.eclipse.jdt.core.prefs
similarity index 99%
copy from plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/.settings/org.eclipse.jdt.core.prefs
copy to plugins/org.eclipse.app4mc.util.sessionlog.eclipse/.settings/org.eclipse.jdt.core.prefs
index e2860e9..9f6ece8 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/.settings/org.eclipse.jdt.core.prefs
+++ b/plugins/org.eclipse.app4mc.util.sessionlog.eclipse/.settings/org.eclipse.jdt.core.prefs
@@ -1,8 +1,8 @@
-eclipse.preferences.version=1

-org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled

-org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8

-org.eclipse.jdt.core.compiler.compliance=1.8

-org.eclipse.jdt.core.compiler.problem.assertIdentifier=error

-org.eclipse.jdt.core.compiler.problem.enumIdentifier=error

-org.eclipse.jdt.core.compiler.release=disabled

-org.eclipse.jdt.core.compiler.source=1.8

+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
+org.eclipse.jdt.core.compiler.compliance=1.8
+org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
+org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
+org.eclipse.jdt.core.compiler.release=disabled
+org.eclipse.jdt.core.compiler.source=1.8
diff --git a/plugins/org.eclipse.app4mc.util.sessionlog.eclipse/.settings/org.eclipse.pde.ds.annotations.prefs b/plugins/org.eclipse.app4mc.util.sessionlog.eclipse/.settings/org.eclipse.pde.ds.annotations.prefs
new file mode 100644
index 0000000..9f27ee9
--- /dev/null
+++ b/plugins/org.eclipse.app4mc.util.sessionlog.eclipse/.settings/org.eclipse.pde.ds.annotations.prefs
@@ -0,0 +1,8 @@
+classpath=true
+dsVersion=V1_3
+eclipse.preferences.version=1
+enabled=true
+generateBundleActivationPolicyLazy=true
+path=OSGI-INF
+validationErrorLevel=error
+validationErrorLevel.missingImplicitUnbindMethod=ignore
diff --git a/plugins/org.eclipse.app4mc.util.sessionlog.eclipse/META-INF/MANIFEST.MF b/plugins/org.eclipse.app4mc.util.sessionlog.eclipse/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..23f2391
--- /dev/null
+++ b/plugins/org.eclipse.app4mc.util.sessionlog.eclipse/META-INF/MANIFEST.MF
@@ -0,0 +1,12 @@
+Manifest-Version: 1.0
+Bundle-ManifestVersion: 2
+Bundle-Name: APP4MC SessionLog Eclipse Log Writer
+Bundle-SymbolicName: org.eclipse.app4mc.util.sessionlog.eclipse
+Bundle-Version: 1.1.0.qualifier
+Bundle-Vendor: Eclipse APP4MC
+Automatic-Module-Name: org.eclipse.app4mc.util.sessionlog.eclipse
+Bundle-RequiredExecutionEnvironment: JavaSE-1.8
+Import-Package: org.eclipse.app4mc.util.sessionlog;version="1.1.0",
+ org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional
+Require-Bundle: org.eclipse.equinox.common;bundle-version="3.10.0",
+ org.eclipse.core.runtime;bundle-version="3.14.0"
diff --git a/plugins/org.eclipse.app4mc.util.sessionlog.eclipse/about.html b/plugins/org.eclipse.app4mc.util.sessionlog.eclipse/about.html
new file mode 100644
index 0000000..164f781
--- /dev/null
+++ b/plugins/org.eclipse.app4mc.util.sessionlog.eclipse/about.html
@@ -0,0 +1,36 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>About</title>
+</head>
+<body lang="EN-US">
+	<h2>About This Content</h2>
+
+	<p>November 30, 2017</p>
+	<h3>License</h3>
+
+	<p>
+		The Eclipse Foundation makes available all content in this plug-in
+		(&quot;Content&quot;). Unless otherwise indicated below, the Content
+		is provided to you under the terms and conditions of the Eclipse
+		Public License Version 2.0 (&quot;EPL&quot;). A copy of the EPL is
+		available at <a href="http://www.eclipse.org/legal/epl-2.0">http://www.eclipse.org/legal/epl-2.0</a>.
+		For purposes of the EPL, &quot;Program&quot; will mean the Content.
+	</p>
+
+	<p>
+		If you did not receive this Content directly from the Eclipse
+		Foundation, the Content is being redistributed by another party
+		(&quot;Redistributor&quot;) and different terms and conditions may
+		apply to your use of any object code in the Content. Check the
+		Redistributor's license that was provided with the Content. If no such
+		license exists, contact the Redistributor. Unless otherwise indicated
+		below, the terms and conditions of the EPL still apply to any source
+		code in the Content and such source code may be obtained at <a
+			href="http://www.eclipse.org/">http://www.eclipse.org</a>.
+	</p>
+
+</body>
+</html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.util.sessionlog.eclipse/build.properties b/plugins/org.eclipse.app4mc.util.sessionlog.eclipse/build.properties
new file mode 100644
index 0000000..34d2e4d
--- /dev/null
+++ b/plugins/org.eclipse.app4mc.util.sessionlog.eclipse/build.properties
@@ -0,0 +1,4 @@
+source.. = src/
+output.. = bin/
+bin.includes = META-INF/,\
+               .
diff --git a/plugins/org.eclipse.app4mc.util.sessionlog.eclipse/epl-2.0.html b/plugins/org.eclipse.app4mc.util.sessionlog.eclipse/epl-2.0.html
new file mode 100644
index 0000000..637a181
--- /dev/null
+++ b/plugins/org.eclipse.app4mc.util.sessionlog.eclipse/epl-2.0.html
@@ -0,0 +1,300 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+  <head>
+    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+    <title>Eclipse Public License - Version 2.0</title>
+    <style type="text/css">
+      body {
+        margin: 1.5em 3em;
+      }
+      h1{
+        font-size:1.5em;
+      }
+      h2{
+        font-size:1em;
+        margin-bottom:0.5em;
+        margin-top:1em;
+      }
+      p {
+        margin-top:  0.5em;
+        margin-bottom: 0.5em;
+      }
+      ul, ol{
+        list-style-type:none;
+      }
+    </style>
+  </head>
+  <body>
+    <h1>Eclipse Public License - v 2.0</h1>
+    <p>THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+      PUBLIC LICENSE (&ldquo;AGREEMENT&rdquo;). ANY USE, REPRODUCTION OR DISTRIBUTION
+      OF THE PROGRAM CONSTITUTES RECIPIENT&#039;S ACCEPTANCE OF THIS AGREEMENT.
+    </p>
+    <h2 id="definitions">1. DEFINITIONS</h2>
+    <p>&ldquo;Contribution&rdquo; means:</p>
+    <ul>
+      <li>a) in the case of the initial Contributor, the initial content
+        Distributed under this Agreement, and
+      </li>
+      <li>
+        b) in the case of each subsequent Contributor:
+        <ul>
+          <li>i) changes to the Program, and</li>
+          <li>ii) additions to the Program;</li>
+        </ul>
+        where such changes and/or additions to the Program originate from
+        and are Distributed by that particular Contributor. A Contribution
+        &ldquo;originates&rdquo; from a Contributor if it was added to the Program by such
+        Contributor itself or anyone acting on such Contributor&#039;s behalf.
+        Contributions do not include changes or additions to the Program that
+        are not Modified Works.
+      </li>
+    </ul>
+    <p>&ldquo;Contributor&rdquo; means any person or entity that Distributes the Program.</p>
+    <p>&ldquo;Licensed Patents&rdquo; mean patent claims licensable by a Contributor which
+      are necessarily infringed by the use or sale of its Contribution alone
+      or when combined with the Program.
+    </p>
+    <p>&ldquo;Program&rdquo; means the Contributions Distributed in accordance with this
+      Agreement.
+    </p>
+    <p>&ldquo;Recipient&rdquo; means anyone who receives the Program under this Agreement
+      or any Secondary License (as applicable), including Contributors.
+    </p>
+    <p>&ldquo;Derivative Works&rdquo; shall mean any work, whether in Source Code or other
+      form, that is based on (or derived from) the Program and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship.
+    </p>
+    <p>&ldquo;Modified Works&rdquo; shall mean any work in Source Code or other form that
+      results from an addition to, deletion from, or modification of the
+      contents of the Program, including, for purposes of clarity any new file
+      in Source Code form that contains any contents of the Program. Modified
+      Works shall not include works that contain only declarations, interfaces,
+      types, classes, structures, or files of the Program solely in each case
+      in order to link to, bind by name, or subclass the Program or Modified
+      Works thereof.
+    </p>
+    <p>&ldquo;Distribute&rdquo; means the acts of a) distributing or b) making available
+      in any manner that enables the transfer of a copy.
+    </p>
+    <p>&ldquo;Source Code&rdquo; means the form of a Program preferred for making
+      modifications, including but not limited to software source code,
+      documentation source, and configuration files.
+    </p>
+    <p>&ldquo;Secondary License&rdquo; means either the GNU General Public License,
+      Version 2.0, or any later versions of that license, including any
+      exceptions or additional permissions as identified by the initial
+      Contributor.
+    </p>
+    <h2 id="grant-of-rights">2. GRANT OF RIGHTS</h2>
+    <ul>
+      <li>a) Subject to the terms of this Agreement, each Contributor hereby
+        grants Recipient a non-exclusive, worldwide, royalty-free copyright
+        license to reproduce, prepare Derivative Works of, publicly display,
+        publicly perform, Distribute and sublicense the Contribution of such
+        Contributor, if any, and such Derivative Works.
+      </li>
+      <li>b) Subject to the terms of this Agreement, each Contributor hereby
+        grants Recipient a non-exclusive, worldwide, royalty-free patent
+        license under Licensed Patents to make, use, sell, offer to sell,
+        import and otherwise transfer the Contribution of such Contributor,
+        if any, in Source Code or other form. This patent license shall
+        apply to the combination of the Contribution and the Program if,
+        at the time the Contribution is added by the Contributor, such
+        addition of the Contribution causes such combination to be covered
+        by the Licensed Patents. The patent license shall not apply to any
+        other combinations which include the Contribution. No hardware per
+        se is licensed hereunder.
+      </li>
+      <li>c) Recipient understands that although each Contributor grants the
+        licenses to its Contributions set forth herein, no assurances are
+        provided by any Contributor that the Program does not infringe the
+        patent or other intellectual property rights of any other entity.
+        Each Contributor disclaims any liability to Recipient for claims
+        brought by any other entity based on infringement of intellectual
+        property rights or otherwise. As a condition to exercising the rights
+        and licenses granted hereunder, each Recipient hereby assumes sole
+        responsibility to secure any other intellectual property rights needed,
+        if any. For example, if a third party patent license is required to
+        allow Recipient to Distribute the Program, it is Recipient&#039;s
+        responsibility to acquire that license before distributing the Program.
+      </li>
+      <li>d) Each Contributor represents that to its knowledge it has sufficient
+        copyright rights in its Contribution, if any, to grant the copyright
+        license set forth in this Agreement.
+      </li>
+      <li>e) Notwithstanding the terms of any Secondary License, no Contributor
+        makes additional grants to any Recipient (other than those set forth
+        in this Agreement) as a result of such Recipient&#039;s receipt of the
+        Program under the terms of a Secondary License (if permitted under
+        the terms of Section 3).
+      </li>
+    </ul>
+    <h2 id="requirements">3. REQUIREMENTS</h2>
+    <p>3.1 If a Contributor Distributes the Program in any form, then:</p>
+    <ul>
+      <li>a) the Program must also be made available as Source Code, in
+        accordance with section 3.2, and the Contributor must accompany
+        the Program with a statement that the Source Code for the Program
+        is available under this Agreement, and informs Recipients how to
+        obtain it in a reasonable manner on or through a medium customarily
+        used for software exchange; and
+      </li>
+      <li>
+        b) the Contributor may Distribute the Program under a license
+        different than this Agreement, provided that such license:
+        <ul>
+          <li>i) effectively disclaims on behalf of all other Contributors all
+            warranties and conditions, express and implied, including warranties
+            or conditions of title and non-infringement, and implied warranties
+            or conditions of merchantability and fitness for a particular purpose;
+          </li>
+          <li>ii) effectively excludes on behalf of all other Contributors all
+            liability for damages, including direct, indirect, special, incidental
+            and consequential damages, such as lost profits;
+          </li>
+          <li>iii) does not attempt to limit or alter the recipients&#039; rights in the
+            Source Code under section 3.2; and
+          </li>
+          <li>iv) requires any subsequent distribution of the Program by any party
+            to be under a license that satisfies the requirements of this section 3.
+          </li>
+        </ul>
+      </li>
+    </ul>
+    <p>3.2 When the Program is Distributed as Source Code:</p>
+    <ul>
+      <li>a) it must be made available under this Agreement, or if the Program (i)
+        is combined with other material in a separate file or files made available
+        under a Secondary License, and (ii) the initial Contributor attached to
+        the Source Code the notice described in Exhibit A of this Agreement,
+        then the Program may be made available under the terms of such
+        Secondary Licenses, and
+      </li>
+      <li>b) a copy of this Agreement must be included with each copy of the Program.</li>
+    </ul>
+    <p>3.3 Contributors may not remove or alter any copyright, patent, trademark,
+      attribution notices, disclaimers of warranty, or limitations of liability
+      (&lsquo;notices&rsquo;) contained within the Program from any copy of the Program which
+      they Distribute, provided that Contributors may add their own appropriate
+      notices.
+    </p>
+    <h2 id="commercial-distribution">4. COMMERCIAL DISTRIBUTION</h2>
+    <p>Commercial distributors of software may accept certain responsibilities
+      with respect to end users, business partners and the like. While this
+      license is intended to facilitate the commercial use of the Program, the
+      Contributor who includes the Program in a commercial product offering should
+      do so in a manner which does not create potential liability for other
+      Contributors. Therefore, if a Contributor includes the Program in a
+      commercial product offering, such Contributor (&ldquo;Commercial Contributor&rdquo;)
+      hereby agrees to defend and indemnify every other Contributor
+      (&ldquo;Indemnified Contributor&rdquo;) against any losses, damages and costs
+      (collectively &ldquo;Losses&rdquo;) arising from claims, lawsuits and other legal actions
+      brought by a third party against the Indemnified Contributor to the extent
+      caused by the acts or omissions of such Commercial Contributor in connection
+      with its distribution of the Program in a commercial product offering.
+      The obligations in this section do not apply to any claims or Losses relating
+      to any actual or alleged intellectual property infringement. In order to
+      qualify, an Indemnified Contributor must: a) promptly notify the
+      Commercial Contributor in writing of such claim, and b) allow the Commercial
+      Contributor to control, and cooperate with the Commercial Contributor in,
+      the defense and any related settlement negotiations. The Indemnified
+      Contributor may participate in any such claim at its own expense.
+    </p>
+    <p>For example, a Contributor might include the Program
+      in a commercial product offering, Product X. That Contributor is then a
+      Commercial Contributor. If that Commercial Contributor then makes performance
+      claims, or offers warranties related to Product X, those performance claims
+      and warranties are such Commercial Contributor&#039;s responsibility alone.
+      Under this section, the Commercial Contributor would have to defend claims
+      against the other Contributors related to those performance claims and
+      warranties, and if a court requires any other Contributor to pay any damages
+      as a result, the Commercial Contributor must pay those damages.
+    </p>
+    <h2 id="warranty">5. NO WARRANTY</h2>
+    <p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT PERMITTED
+      BY APPLICABLE LAW, THE PROGRAM IS PROVIDED ON AN &ldquo;AS IS&rdquo; BASIS, WITHOUT
+      WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING,
+      WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
+      MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is
+      solely responsible for determining the appropriateness of using and
+      distributing the Program and assumes all risks associated with its
+      exercise of rights under this Agreement, including but not limited to the
+      risks and costs of program errors, compliance with applicable laws, damage
+      to or loss of data, programs or equipment, and unavailability or
+      interruption of operations.
+    </p>
+    <h2 id="disclaimer">6. DISCLAIMER OF LIABILITY</h2>
+    <p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT PERMITTED
+      BY APPLICABLE LAW, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY
+      LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
+      OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS),
+      HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+      LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+      OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS
+      GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+    </p>
+    <h2 id="general">7. GENERAL</h2>
+    <p>If any provision of this Agreement is invalid or unenforceable under
+      applicable law, it shall not affect the validity or enforceability of the
+      remainder of the terms of this Agreement, and without further action by the
+      parties hereto, such provision shall be reformed to the minimum extent
+      necessary to make such provision valid and enforceable.
+    </p>
+    <p>If Recipient institutes patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Program itself
+      (excluding combinations of the Program with other software or hardware)
+      infringes such Recipient&#039;s patent(s), then such Recipient&#039;s rights granted
+      under Section 2(b) shall terminate as of the date such litigation is filed.
+    </p>
+    <p>All Recipient&#039;s rights under this Agreement shall terminate if it fails to
+      comply with any of the material terms or conditions of this Agreement and
+      does not cure such failure in a reasonable period of time after becoming
+      aware of such noncompliance. If all Recipient&#039;s rights under this Agreement
+      terminate, Recipient agrees to cease use and distribution of the Program
+      as soon as reasonably practicable. However, Recipient&#039;s obligations under
+      this Agreement and any licenses granted by Recipient relating to the
+      Program shall continue and survive.
+    </p>
+    <p>Everyone is permitted to copy and distribute copies of this Agreement,
+      but in order to avoid inconsistency the Agreement is copyrighted and may
+      only be modified in the following manner. The Agreement Steward reserves
+      the right to publish new versions (including revisions) of this Agreement
+      from time to time. No one other than the Agreement Steward has the right
+      to modify this Agreement. The Eclipse Foundation is the initial Agreement
+      Steward. The Eclipse Foundation may assign the responsibility to serve as
+      the Agreement Steward to a suitable separate entity. Each new version of
+      the Agreement will be given a distinguishing version number. The Program
+      (including Contributions) may always be Distributed subject to the version
+      of the Agreement under which it was received. In addition, after a new
+      version of the Agreement is published, Contributor may elect to Distribute
+      the Program (including its Contributions) under the new version.
+    </p>
+    <p>Except as expressly stated in Sections 2(a) and 2(b) above, Recipient
+      receives no rights or licenses to the intellectual property of any
+      Contributor under this Agreement, whether expressly, by implication,
+      estoppel or otherwise. All rights in the Program not expressly granted
+      under this Agreement are reserved. Nothing in this Agreement is intended
+      to be enforceable by any entity that is not a Contributor or Recipient.
+      No third-party beneficiary rights are created under this Agreement.
+    </p>
+    <h2 id="exhibit-a">Exhibit A &ndash; Form of Secondary Licenses Notice</h2>
+    <p>&ldquo;This Source Code may also be made available under the following 
+    	Secondary Licenses when the conditions for such availability set forth 
+    	in the Eclipse Public License, v. 2.0 are satisfied: {name license(s),
+    	version(s), and exceptions or additional permissions here}.&rdquo;
+    </p>
+    <blockquote>
+      <p>Simply including a copy of this Agreement, including this Exhibit A
+        is not sufficient to license the Source Code under Secondary Licenses.
+      </p>
+      <p>If it is not possible or desirable to put the notice in a particular file,
+        then You may include the notice in a location (such as a LICENSE file in a
+        relevant directory) where a recipient would be likely to look for
+        such a notice.
+      </p>
+      <p>You may add additional accurate notices of copyright ownership.</p>
+    </blockquote>
+  </body>
+</html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.util.sessionlog.eclipse/src/org/eclipse/app4mc/util/sessionlog/eclipse/EclipseLogWriter.java b/plugins/org.eclipse.app4mc.util.sessionlog.eclipse/src/org/eclipse/app4mc/util/sessionlog/eclipse/EclipseLogWriter.java
new file mode 100644
index 0000000..03b2b1c
--- /dev/null
+++ b/plugins/org.eclipse.app4mc.util.sessionlog.eclipse/src/org/eclipse/app4mc/util/sessionlog/eclipse/EclipseLogWriter.java
@@ -0,0 +1,65 @@
+/**
+ ********************************************************************************
+ * Copyright (c) 2021 Robert Bosch GmbH and others.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ *
+ * Contributors:
+ *     Robert Bosch GmbH - initial API and implementation
+ ********************************************************************************
+ */
+package org.eclipse.app4mc.util.sessionlog.eclipse;
+
+import java.io.File;
+import java.util.List;
+
+import org.eclipse.app4mc.util.sessionlog.SessionLogEntry;
+import org.eclipse.app4mc.util.sessionlog.SessionLogWriter;
+import org.eclipse.core.runtime.IStatus;
+import org.eclipse.core.runtime.Platform;
+import org.eclipse.core.runtime.Status;
+import org.osgi.framework.Bundle;
+import org.osgi.framework.FrameworkUtil;
+
+/**
+ * Custom Log4j appender that forwards log statements to the Eclipse logging mechanism.
+ */
+public class EclipseLogWriter implements SessionLogWriter {
+
+	private int getStatus(SessionLogEntry.Status sessionLogStatus) {
+		int status = IStatus.INFO;
+
+		if (sessionLogStatus == SessionLogEntry.Status.ERROR) {
+			status = IStatus.ERROR;
+		}
+		else if (sessionLogStatus == SessionLogEntry.Status.WARNING) {
+			status = IStatus.WARNING;
+		}
+		return status;
+	}
+
+	@Override
+	public void write(File sessionLogFile, List<SessionLogEntry> log) {
+		String logLevel = System.getProperty("app4mc.log.level");
+		SessionLogEntry.Status logStatus = SessionLogEntry.Status.parseStatus(logLevel);
+
+		Bundle bundle = FrameworkUtil.getBundle(getClass());
+		if (bundle != null) {
+			log.stream().filter(entry -> entry.test(logStatus)).forEach(entry -> {
+				final int status = getStatus(entry.status);
+				if (entry.throwable != null) {
+					Platform.getLog(bundle).log(
+							new Status(status, bundle.getSymbolicName(), entry.message, entry.throwable));
+				} else {
+					Platform.getLog(bundle).log(
+							new Status(status, bundle.getSymbolicName(), entry.message));
+				}
+			});
+		}
+	}
+
+}
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/.classpath b/plugins/org.eclipse.app4mc.util.sessionlog.file/.classpath
similarity index 99%
copy from plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/.classpath
copy to plugins/org.eclipse.app4mc.util.sessionlog.file/.classpath
index b862a29..eca7bdb 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/.classpath
+++ b/plugins/org.eclipse.app4mc.util.sessionlog.file/.classpath
@@ -1,7 +1,7 @@
-<?xml version="1.0" encoding="UTF-8"?>

-<classpath>

-	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>

-	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>

-	<classpathentry kind="src" path="src"/>

-	<classpathentry kind="output" path="bin"/>

-</classpath>

+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
+	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
+	<classpathentry kind="src" path="src"/>
+	<classpathentry kind="output" path="bin"/>
+</classpath>
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/.project b/plugins/org.eclipse.app4mc.util.sessionlog.file/.project
similarity index 78%
copy from plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/.project
copy to plugins/org.eclipse.app4mc.util.sessionlog.file/.project
index 10df767..0dd274f 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/.project
+++ b/plugins/org.eclipse.app4mc.util.sessionlog.file/.project
@@ -1,28 +1,33 @@
-<?xml version="1.0" encoding="UTF-8"?>

-<projectDescription>

-	<name>org.eclipse.app4mc.amalthea.converters.log4j.configuration</name>

-	<comment></comment>

-	<projects>

-	</projects>

-	<buildSpec>

-		<buildCommand>

-			<name>org.eclipse.jdt.core.javabuilder</name>

-			<arguments>

-			</arguments>

-		</buildCommand>

-		<buildCommand>

-			<name>org.eclipse.pde.ManifestBuilder</name>

-			<arguments>

-			</arguments>

-		</buildCommand>

-		<buildCommand>

-			<name>org.eclipse.pde.SchemaBuilder</name>

-			<arguments>

-			</arguments>

-		</buildCommand>

-	</buildSpec>

-	<natures>

-		<nature>org.eclipse.pde.PluginNature</nature>

-		<nature>org.eclipse.jdt.core.javanature</nature>

-	</natures>

-</projectDescription>

+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>org.eclipse.app4mc.util.sessionlog.file</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.jdt.core.javabuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.pde.ManifestBuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.pde.SchemaBuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.pde.ds.core.builder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>org.eclipse.pde.PluginNature</nature>
+		<nature>org.eclipse.jdt.core.javanature</nature>
+	</natures>
+</projectDescription>
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/.settings/org.eclipse.jdt.core.prefs b/plugins/org.eclipse.app4mc.util.sessionlog.file/.settings/org.eclipse.jdt.core.prefs
similarity index 99%
copy from plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/.settings/org.eclipse.jdt.core.prefs
copy to plugins/org.eclipse.app4mc.util.sessionlog.file/.settings/org.eclipse.jdt.core.prefs
index e2860e9..9f6ece8 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/.settings/org.eclipse.jdt.core.prefs
+++ b/plugins/org.eclipse.app4mc.util.sessionlog.file/.settings/org.eclipse.jdt.core.prefs
@@ -1,8 +1,8 @@
-eclipse.preferences.version=1

-org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled

-org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8

-org.eclipse.jdt.core.compiler.compliance=1.8

-org.eclipse.jdt.core.compiler.problem.assertIdentifier=error

-org.eclipse.jdt.core.compiler.problem.enumIdentifier=error

-org.eclipse.jdt.core.compiler.release=disabled

-org.eclipse.jdt.core.compiler.source=1.8

+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
+org.eclipse.jdt.core.compiler.compliance=1.8
+org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
+org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
+org.eclipse.jdt.core.compiler.release=disabled
+org.eclipse.jdt.core.compiler.source=1.8
diff --git a/plugins/org.eclipse.app4mc.util.sessionlog.file/META-INF/MANIFEST.MF b/plugins/org.eclipse.app4mc.util.sessionlog.file/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..eb61bd7
--- /dev/null
+++ b/plugins/org.eclipse.app4mc.util.sessionlog.file/META-INF/MANIFEST.MF
@@ -0,0 +1,13 @@
+Manifest-Version: 1.0
+Bundle-ManifestVersion: 2
+Bundle-Name: APP4MC SessionLog FileWriter
+Bundle-SymbolicName: org.eclipse.app4mc.util.sessionlog.file
+Bundle-Version: 1.1.0.qualifier
+Bundle-Vendor: Eclipse APP4MC
+Automatic-Module-Name: org.eclipse.app4mc.util.sessionlog.file
+Bundle-RequiredExecutionEnvironment: JavaSE-1.8
+Service-Component: OSGI-INF/org.eclipse.app4mc.util.sessionlog.file.SessionLogFileWriter.xml
+Bundle-ActivationPolicy: lazy
+Import-Package: org.eclipse.app4mc.util.sessionlog;version="1.1.0",
+ org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional,
+ org.osgi.service.log;version="1.4.0"
diff --git a/plugins/org.eclipse.app4mc.util.sessionlog.file/OSGI-INF/org.eclipse.app4mc.util.sessionlog.file.SessionLogFileWriter.xml b/plugins/org.eclipse.app4mc.util.sessionlog.file/OSGI-INF/org.eclipse.app4mc.util.sessionlog.file.SessionLogFileWriter.xml
new file mode 100644
index 0000000..56becf4
--- /dev/null
+++ b/plugins/org.eclipse.app4mc.util.sessionlog.file/OSGI-INF/org.eclipse.app4mc.util.sessionlog.file.SessionLogFileWriter.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" name="org.eclipse.app4mc.util.sessionlog.file.SessionLogFileWriter">
+   <service>
+      <provide interface="org.eclipse.app4mc.util.sessionlog.SessionLogWriter"/>
+   </service>
+   <reference bind="setLogger" cardinality="0..1" interface="org.osgi.service.log.LoggerFactory" name="Logger" policy="dynamic" unbind="unsetLogger"/>
+   <implementation class="org.eclipse.app4mc.util.sessionlog.file.SessionLogFileWriter"/>
+</scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.util.sessionlog.file/about.html b/plugins/org.eclipse.app4mc.util.sessionlog.file/about.html
new file mode 100644
index 0000000..164f781
--- /dev/null
+++ b/plugins/org.eclipse.app4mc.util.sessionlog.file/about.html
@@ -0,0 +1,36 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>About</title>
+</head>
+<body lang="EN-US">
+	<h2>About This Content</h2>
+
+	<p>November 30, 2017</p>
+	<h3>License</h3>
+
+	<p>
+		The Eclipse Foundation makes available all content in this plug-in
+		(&quot;Content&quot;). Unless otherwise indicated below, the Content
+		is provided to you under the terms and conditions of the Eclipse
+		Public License Version 2.0 (&quot;EPL&quot;). A copy of the EPL is
+		available at <a href="http://www.eclipse.org/legal/epl-2.0">http://www.eclipse.org/legal/epl-2.0</a>.
+		For purposes of the EPL, &quot;Program&quot; will mean the Content.
+	</p>
+
+	<p>
+		If you did not receive this Content directly from the Eclipse
+		Foundation, the Content is being redistributed by another party
+		(&quot;Redistributor&quot;) and different terms and conditions may
+		apply to your use of any object code in the Content. Check the
+		Redistributor's license that was provided with the Content. If no such
+		license exists, contact the Redistributor. Unless otherwise indicated
+		below, the terms and conditions of the EPL still apply to any source
+		code in the Content and such source code may be obtained at <a
+			href="http://www.eclipse.org/">http://www.eclipse.org</a>.
+	</p>
+
+</body>
+</html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.util.sessionlog.file/build.properties b/plugins/org.eclipse.app4mc.util.sessionlog.file/build.properties
new file mode 100644
index 0000000..2a35983
--- /dev/null
+++ b/plugins/org.eclipse.app4mc.util.sessionlog.file/build.properties
@@ -0,0 +1,9 @@
+source.. = src/
+output.. = bin/
+bin.includes = META-INF/,\
+               .,\
+               OSGI-INF/,\
+               about.html,\
+               epl-2.0.html
+src.includes = about.html,\
+               epl-2.0.html
diff --git a/plugins/org.eclipse.app4mc.util.sessionlog.file/epl-2.0.html b/plugins/org.eclipse.app4mc.util.sessionlog.file/epl-2.0.html
new file mode 100644
index 0000000..637a181
--- /dev/null
+++ b/plugins/org.eclipse.app4mc.util.sessionlog.file/epl-2.0.html
@@ -0,0 +1,300 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+  <head>
+    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+    <title>Eclipse Public License - Version 2.0</title>
+    <style type="text/css">
+      body {
+        margin: 1.5em 3em;
+      }
+      h1{
+        font-size:1.5em;
+      }
+      h2{
+        font-size:1em;
+        margin-bottom:0.5em;
+        margin-top:1em;
+      }
+      p {
+        margin-top:  0.5em;
+        margin-bottom: 0.5em;
+      }
+      ul, ol{
+        list-style-type:none;
+      }
+    </style>
+  </head>
+  <body>
+    <h1>Eclipse Public License - v 2.0</h1>
+    <p>THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+      PUBLIC LICENSE (&ldquo;AGREEMENT&rdquo;). ANY USE, REPRODUCTION OR DISTRIBUTION
+      OF THE PROGRAM CONSTITUTES RECIPIENT&#039;S ACCEPTANCE OF THIS AGREEMENT.
+    </p>
+    <h2 id="definitions">1. DEFINITIONS</h2>
+    <p>&ldquo;Contribution&rdquo; means:</p>
+    <ul>
+      <li>a) in the case of the initial Contributor, the initial content
+        Distributed under this Agreement, and
+      </li>
+      <li>
+        b) in the case of each subsequent Contributor:
+        <ul>
+          <li>i) changes to the Program, and</li>
+          <li>ii) additions to the Program;</li>
+        </ul>
+        where such changes and/or additions to the Program originate from
+        and are Distributed by that particular Contributor. A Contribution
+        &ldquo;originates&rdquo; from a Contributor if it was added to the Program by such
+        Contributor itself or anyone acting on such Contributor&#039;s behalf.
+        Contributions do not include changes or additions to the Program that
+        are not Modified Works.
+      </li>
+    </ul>
+    <p>&ldquo;Contributor&rdquo; means any person or entity that Distributes the Program.</p>
+    <p>&ldquo;Licensed Patents&rdquo; mean patent claims licensable by a Contributor which
+      are necessarily infringed by the use or sale of its Contribution alone
+      or when combined with the Program.
+    </p>
+    <p>&ldquo;Program&rdquo; means the Contributions Distributed in accordance with this
+      Agreement.
+    </p>
+    <p>&ldquo;Recipient&rdquo; means anyone who receives the Program under this Agreement
+      or any Secondary License (as applicable), including Contributors.
+    </p>
+    <p>&ldquo;Derivative Works&rdquo; shall mean any work, whether in Source Code or other
+      form, that is based on (or derived from) the Program and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship.
+    </p>
+    <p>&ldquo;Modified Works&rdquo; shall mean any work in Source Code or other form that
+      results from an addition to, deletion from, or modification of the
+      contents of the Program, including, for purposes of clarity any new file
+      in Source Code form that contains any contents of the Program. Modified
+      Works shall not include works that contain only declarations, interfaces,
+      types, classes, structures, or files of the Program solely in each case
+      in order to link to, bind by name, or subclass the Program or Modified
+      Works thereof.
+    </p>
+    <p>&ldquo;Distribute&rdquo; means the acts of a) distributing or b) making available
+      in any manner that enables the transfer of a copy.
+    </p>
+    <p>&ldquo;Source Code&rdquo; means the form of a Program preferred for making
+      modifications, including but not limited to software source code,
+      documentation source, and configuration files.
+    </p>
+    <p>&ldquo;Secondary License&rdquo; means either the GNU General Public License,
+      Version 2.0, or any later versions of that license, including any
+      exceptions or additional permissions as identified by the initial
+      Contributor.
+    </p>
+    <h2 id="grant-of-rights">2. GRANT OF RIGHTS</h2>
+    <ul>
+      <li>a) Subject to the terms of this Agreement, each Contributor hereby
+        grants Recipient a non-exclusive, worldwide, royalty-free copyright
+        license to reproduce, prepare Derivative Works of, publicly display,
+        publicly perform, Distribute and sublicense the Contribution of such
+        Contributor, if any, and such Derivative Works.
+      </li>
+      <li>b) Subject to the terms of this Agreement, each Contributor hereby
+        grants Recipient a non-exclusive, worldwide, royalty-free patent
+        license under Licensed Patents to make, use, sell, offer to sell,
+        import and otherwise transfer the Contribution of such Contributor,
+        if any, in Source Code or other form. This patent license shall
+        apply to the combination of the Contribution and the Program if,
+        at the time the Contribution is added by the Contributor, such
+        addition of the Contribution causes such combination to be covered
+        by the Licensed Patents. The patent license shall not apply to any
+        other combinations which include the Contribution. No hardware per
+        se is licensed hereunder.
+      </li>
+      <li>c) Recipient understands that although each Contributor grants the
+        licenses to its Contributions set forth herein, no assurances are
+        provided by any Contributor that the Program does not infringe the
+        patent or other intellectual property rights of any other entity.
+        Each Contributor disclaims any liability to Recipient for claims
+        brought by any other entity based on infringement of intellectual
+        property rights or otherwise. As a condition to exercising the rights
+        and licenses granted hereunder, each Recipient hereby assumes sole
+        responsibility to secure any other intellectual property rights needed,
+        if any. For example, if a third party patent license is required to
+        allow Recipient to Distribute the Program, it is Recipient&#039;s
+        responsibility to acquire that license before distributing the Program.
+      </li>
+      <li>d) Each Contributor represents that to its knowledge it has sufficient
+        copyright rights in its Contribution, if any, to grant the copyright
+        license set forth in this Agreement.
+      </li>
+      <li>e) Notwithstanding the terms of any Secondary License, no Contributor
+        makes additional grants to any Recipient (other than those set forth
+        in this Agreement) as a result of such Recipient&#039;s receipt of the
+        Program under the terms of a Secondary License (if permitted under
+        the terms of Section 3).
+      </li>
+    </ul>
+    <h2 id="requirements">3. REQUIREMENTS</h2>
+    <p>3.1 If a Contributor Distributes the Program in any form, then:</p>
+    <ul>
+      <li>a) the Program must also be made available as Source Code, in
+        accordance with section 3.2, and the Contributor must accompany
+        the Program with a statement that the Source Code for the Program
+        is available under this Agreement, and informs Recipients how to
+        obtain it in a reasonable manner on or through a medium customarily
+        used for software exchange; and
+      </li>
+      <li>
+        b) the Contributor may Distribute the Program under a license
+        different than this Agreement, provided that such license:
+        <ul>
+          <li>i) effectively disclaims on behalf of all other Contributors all
+            warranties and conditions, express and implied, including warranties
+            or conditions of title and non-infringement, and implied warranties
+            or conditions of merchantability and fitness for a particular purpose;
+          </li>
+          <li>ii) effectively excludes on behalf of all other Contributors all
+            liability for damages, including direct, indirect, special, incidental
+            and consequential damages, such as lost profits;
+          </li>
+          <li>iii) does not attempt to limit or alter the recipients&#039; rights in the
+            Source Code under section 3.2; and
+          </li>
+          <li>iv) requires any subsequent distribution of the Program by any party
+            to be under a license that satisfies the requirements of this section 3.
+          </li>
+        </ul>
+      </li>
+    </ul>
+    <p>3.2 When the Program is Distributed as Source Code:</p>
+    <ul>
+      <li>a) it must be made available under this Agreement, or if the Program (i)
+        is combined with other material in a separate file or files made available
+        under a Secondary License, and (ii) the initial Contributor attached to
+        the Source Code the notice described in Exhibit A of this Agreement,
+        then the Program may be made available under the terms of such
+        Secondary Licenses, and
+      </li>
+      <li>b) a copy of this Agreement must be included with each copy of the Program.</li>
+    </ul>
+    <p>3.3 Contributors may not remove or alter any copyright, patent, trademark,
+      attribution notices, disclaimers of warranty, or limitations of liability
+      (&lsquo;notices&rsquo;) contained within the Program from any copy of the Program which
+      they Distribute, provided that Contributors may add their own appropriate
+      notices.
+    </p>
+    <h2 id="commercial-distribution">4. COMMERCIAL DISTRIBUTION</h2>
+    <p>Commercial distributors of software may accept certain responsibilities
+      with respect to end users, business partners and the like. While this
+      license is intended to facilitate the commercial use of the Program, the
+      Contributor who includes the Program in a commercial product offering should
+      do so in a manner which does not create potential liability for other
+      Contributors. Therefore, if a Contributor includes the Program in a
+      commercial product offering, such Contributor (&ldquo;Commercial Contributor&rdquo;)
+      hereby agrees to defend and indemnify every other Contributor
+      (&ldquo;Indemnified Contributor&rdquo;) against any losses, damages and costs
+      (collectively &ldquo;Losses&rdquo;) arising from claims, lawsuits and other legal actions
+      brought by a third party against the Indemnified Contributor to the extent
+      caused by the acts or omissions of such Commercial Contributor in connection
+      with its distribution of the Program in a commercial product offering.
+      The obligations in this section do not apply to any claims or Losses relating
+      to any actual or alleged intellectual property infringement. In order to
+      qualify, an Indemnified Contributor must: a) promptly notify the
+      Commercial Contributor in writing of such claim, and b) allow the Commercial
+      Contributor to control, and cooperate with the Commercial Contributor in,
+      the defense and any related settlement negotiations. The Indemnified
+      Contributor may participate in any such claim at its own expense.
+    </p>
+    <p>For example, a Contributor might include the Program
+      in a commercial product offering, Product X. That Contributor is then a
+      Commercial Contributor. If that Commercial Contributor then makes performance
+      claims, or offers warranties related to Product X, those performance claims
+      and warranties are such Commercial Contributor&#039;s responsibility alone.
+      Under this section, the Commercial Contributor would have to defend claims
+      against the other Contributors related to those performance claims and
+      warranties, and if a court requires any other Contributor to pay any damages
+      as a result, the Commercial Contributor must pay those damages.
+    </p>
+    <h2 id="warranty">5. NO WARRANTY</h2>
+    <p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT PERMITTED
+      BY APPLICABLE LAW, THE PROGRAM IS PROVIDED ON AN &ldquo;AS IS&rdquo; BASIS, WITHOUT
+      WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING,
+      WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
+      MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is
+      solely responsible for determining the appropriateness of using and
+      distributing the Program and assumes all risks associated with its
+      exercise of rights under this Agreement, including but not limited to the
+      risks and costs of program errors, compliance with applicable laws, damage
+      to or loss of data, programs or equipment, and unavailability or
+      interruption of operations.
+    </p>
+    <h2 id="disclaimer">6. DISCLAIMER OF LIABILITY</h2>
+    <p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT PERMITTED
+      BY APPLICABLE LAW, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY
+      LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
+      OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS),
+      HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+      LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+      OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS
+      GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+    </p>
+    <h2 id="general">7. GENERAL</h2>
+    <p>If any provision of this Agreement is invalid or unenforceable under
+      applicable law, it shall not affect the validity or enforceability of the
+      remainder of the terms of this Agreement, and without further action by the
+      parties hereto, such provision shall be reformed to the minimum extent
+      necessary to make such provision valid and enforceable.
+    </p>
+    <p>If Recipient institutes patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Program itself
+      (excluding combinations of the Program with other software or hardware)
+      infringes such Recipient&#039;s patent(s), then such Recipient&#039;s rights granted
+      under Section 2(b) shall terminate as of the date such litigation is filed.
+    </p>
+    <p>All Recipient&#039;s rights under this Agreement shall terminate if it fails to
+      comply with any of the material terms or conditions of this Agreement and
+      does not cure such failure in a reasonable period of time after becoming
+      aware of such noncompliance. If all Recipient&#039;s rights under this Agreement
+      terminate, Recipient agrees to cease use and distribution of the Program
+      as soon as reasonably practicable. However, Recipient&#039;s obligations under
+      this Agreement and any licenses granted by Recipient relating to the
+      Program shall continue and survive.
+    </p>
+    <p>Everyone is permitted to copy and distribute copies of this Agreement,
+      but in order to avoid inconsistency the Agreement is copyrighted and may
+      only be modified in the following manner. The Agreement Steward reserves
+      the right to publish new versions (including revisions) of this Agreement
+      from time to time. No one other than the Agreement Steward has the right
+      to modify this Agreement. The Eclipse Foundation is the initial Agreement
+      Steward. The Eclipse Foundation may assign the responsibility to serve as
+      the Agreement Steward to a suitable separate entity. Each new version of
+      the Agreement will be given a distinguishing version number. The Program
+      (including Contributions) may always be Distributed subject to the version
+      of the Agreement under which it was received. In addition, after a new
+      version of the Agreement is published, Contributor may elect to Distribute
+      the Program (including its Contributions) under the new version.
+    </p>
+    <p>Except as expressly stated in Sections 2(a) and 2(b) above, Recipient
+      receives no rights or licenses to the intellectual property of any
+      Contributor under this Agreement, whether expressly, by implication,
+      estoppel or otherwise. All rights in the Program not expressly granted
+      under this Agreement are reserved. Nothing in this Agreement is intended
+      to be enforceable by any entity that is not a Contributor or Recipient.
+      No third-party beneficiary rights are created under this Agreement.
+    </p>
+    <h2 id="exhibit-a">Exhibit A &ndash; Form of Secondary Licenses Notice</h2>
+    <p>&ldquo;This Source Code may also be made available under the following 
+    	Secondary Licenses when the conditions for such availability set forth 
+    	in the Eclipse Public License, v. 2.0 are satisfied: {name license(s),
+    	version(s), and exceptions or additional permissions here}.&rdquo;
+    </p>
+    <blockquote>
+      <p>Simply including a copy of this Agreement, including this Exhibit A
+        is not sufficient to license the Source Code under Secondary Licenses.
+      </p>
+      <p>If it is not possible or desirable to put the notice in a particular file,
+        then You may include the notice in a location (such as a LICENSE file in a
+        relevant directory) where a recipient would be likely to look for
+        such a notice.
+      </p>
+      <p>You may add additional accurate notices of copyright ownership.</p>
+    </blockquote>
+  </body>
+</html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.util.sessionlog.file/src/org/eclipse/app4mc/util/sessionlog/file/SessionLogFileWriter.java b/plugins/org.eclipse.app4mc.util.sessionlog.file/src/org/eclipse/app4mc/util/sessionlog/file/SessionLogFileWriter.java
new file mode 100644
index 0000000..bae1464
--- /dev/null
+++ b/plugins/org.eclipse.app4mc.util.sessionlog.file/src/org/eclipse/app4mc/util/sessionlog/file/SessionLogFileWriter.java
@@ -0,0 +1,75 @@
+/**
+ ********************************************************************************
+ * Copyright (c) 2021 Robert Bosch GmbH and others.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ *
+ * Contributors:
+ *     Robert Bosch GmbH - initial API and implementation
+ ********************************************************************************
+ */
+package org.eclipse.app4mc.util.sessionlog.file;
+
+import java.io.BufferedWriter;
+import java.io.File;
+import java.io.FileWriter;
+import java.io.IOException;
+import java.util.List;
+
+import org.eclipse.app4mc.util.sessionlog.SessionLogEntry;
+import org.eclipse.app4mc.util.sessionlog.SessionLogWriter;
+import org.osgi.service.component.annotations.Component;
+import org.osgi.service.component.annotations.Reference;
+import org.osgi.service.component.annotations.ReferenceCardinality;
+import org.osgi.service.component.annotations.ReferencePolicy;
+import org.osgi.service.log.Logger;
+import org.osgi.service.log.LoggerFactory;
+
+/**
+ * {@link SessionLogWriter} implementation that write the session log entries to a {@link File}.
+ */
+@Component
+public class SessionLogFileWriter implements SessionLogWriter {
+
+	LoggerFactory factory;
+	Logger logger;
+
+	@Override
+	public void write(File sessionLogFile, List<SessionLogEntry> log) {
+		try (BufferedWriter writer = new BufferedWriter(new FileWriter(sessionLogFile))) {
+			for (SessionLogEntry logEntry : log) {
+				writer.append(logEntry.message);
+				writer.newLine();
+				if (logEntry.throwable != null) {
+					writer.append(logEntry.getStackTrace());
+					writer.newLine();
+				}
+			}
+		} catch (IOException e) {
+			if (this.logger != null) {
+				this.logger.error("Failed to write session log file!", e);
+			} else {
+				// fallback if no LogService is available
+				e.printStackTrace();
+			}
+		}
+	}
+
+	@Reference(cardinality = ReferenceCardinality.OPTIONAL, policy = ReferencePolicy.DYNAMIC)
+	void setLogger(LoggerFactory factory) {
+		this.factory = factory;
+		this.logger = factory.getLogger(getClass());
+	}
+
+	void unsetLogger(LoggerFactory loggerFactory) {
+		if (this.factory == loggerFactory) {
+			this.factory = null;
+			this.logger = null;
+		}
+	}
+
+}
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/.classpath b/plugins/org.eclipse.app4mc.util.sessionlog/.classpath
similarity index 99%
copy from plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/.classpath
copy to plugins/org.eclipse.app4mc.util.sessionlog/.classpath
index b862a29..eca7bdb 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/.classpath
+++ b/plugins/org.eclipse.app4mc.util.sessionlog/.classpath
@@ -1,7 +1,7 @@
-<?xml version="1.0" encoding="UTF-8"?>

-<classpath>

-	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>

-	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>

-	<classpathentry kind="src" path="src"/>

-	<classpathentry kind="output" path="bin"/>

-</classpath>

+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
+	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
+	<classpathentry kind="src" path="src"/>
+	<classpathentry kind="output" path="bin"/>
+</classpath>
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/.project b/plugins/org.eclipse.app4mc.util.sessionlog/.project
similarity index 78%
copy from plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/.project
copy to plugins/org.eclipse.app4mc.util.sessionlog/.project
index 10df767..5825a10 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/.project
+++ b/plugins/org.eclipse.app4mc.util.sessionlog/.project
@@ -1,28 +1,33 @@
-<?xml version="1.0" encoding="UTF-8"?>

-<projectDescription>

-	<name>org.eclipse.app4mc.amalthea.converters.log4j.configuration</name>

-	<comment></comment>

-	<projects>

-	</projects>

-	<buildSpec>

-		<buildCommand>

-			<name>org.eclipse.jdt.core.javabuilder</name>

-			<arguments>

-			</arguments>

-		</buildCommand>

-		<buildCommand>

-			<name>org.eclipse.pde.ManifestBuilder</name>

-			<arguments>

-			</arguments>

-		</buildCommand>

-		<buildCommand>

-			<name>org.eclipse.pde.SchemaBuilder</name>

-			<arguments>

-			</arguments>

-		</buildCommand>

-	</buildSpec>

-	<natures>

-		<nature>org.eclipse.pde.PluginNature</nature>

-		<nature>org.eclipse.jdt.core.javanature</nature>

-	</natures>

-</projectDescription>

+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>org.eclipse.app4mc.util.sessionlog</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.jdt.core.javabuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.pde.ManifestBuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.pde.SchemaBuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.pde.ds.core.builder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>org.eclipse.pde.PluginNature</nature>
+		<nature>org.eclipse.jdt.core.javanature</nature>
+	</natures>
+</projectDescription>
diff --git a/plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/.settings/org.eclipse.jdt.core.prefs b/plugins/org.eclipse.app4mc.util.sessionlog/.settings/org.eclipse.jdt.core.prefs
similarity index 99%
copy from plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/.settings/org.eclipse.jdt.core.prefs
copy to plugins/org.eclipse.app4mc.util.sessionlog/.settings/org.eclipse.jdt.core.prefs
index e2860e9..9f6ece8 100644
--- a/plugins/org.eclipse.app4mc.amalthea.converters.log4j.configuration/.settings/org.eclipse.jdt.core.prefs
+++ b/plugins/org.eclipse.app4mc.util.sessionlog/.settings/org.eclipse.jdt.core.prefs
@@ -1,8 +1,8 @@
-eclipse.preferences.version=1

-org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled

-org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8

-org.eclipse.jdt.core.compiler.compliance=1.8

-org.eclipse.jdt.core.compiler.problem.assertIdentifier=error

-org.eclipse.jdt.core.compiler.problem.enumIdentifier=error

-org.eclipse.jdt.core.compiler.release=disabled

-org.eclipse.jdt.core.compiler.source=1.8

+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
+org.eclipse.jdt.core.compiler.compliance=1.8
+org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
+org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
+org.eclipse.jdt.core.compiler.release=disabled
+org.eclipse.jdt.core.compiler.source=1.8
diff --git a/plugins/org.eclipse.app4mc.util.sessionlog/.settings/org.eclipse.pde.ds.annotations.prefs b/plugins/org.eclipse.app4mc.util.sessionlog/.settings/org.eclipse.pde.ds.annotations.prefs
new file mode 100644
index 0000000..9f27ee9
--- /dev/null
+++ b/plugins/org.eclipse.app4mc.util.sessionlog/.settings/org.eclipse.pde.ds.annotations.prefs
@@ -0,0 +1,8 @@
+classpath=true
+dsVersion=V1_3
+eclipse.preferences.version=1
+enabled=true
+generateBundleActivationPolicyLazy=true
+path=OSGI-INF
+validationErrorLevel=error
+validationErrorLevel.missingImplicitUnbindMethod=ignore
diff --git a/plugins/org.eclipse.app4mc.util.sessionlog/META-INF/MANIFEST.MF b/plugins/org.eclipse.app4mc.util.sessionlog/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..6fb2657
--- /dev/null
+++ b/plugins/org.eclipse.app4mc.util.sessionlog/META-INF/MANIFEST.MF
@@ -0,0 +1,12 @@
+Manifest-Version: 1.0
+Bundle-ManifestVersion: 2
+Bundle-Name: APP4MC SessionLog Util
+Bundle-SymbolicName: org.eclipse.app4mc.util.sessionlog
+Bundle-Version: 1.1.0.qualifier
+Bundle-Vendor: Eclipse APP4MC
+Automatic-Module-Name: org.eclipse.app4mc.util.sessionlog
+Bundle-RequiredExecutionEnvironment: JavaSE-1.8
+Service-Component: OSGI-INF/org.eclipse.app4mc.util.sessionlog.SessionLogger.xml
+Bundle-ActivationPolicy: lazy
+Export-Package: org.eclipse.app4mc.util.sessionlog;version="1.1.0"
+Import-Package: org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional
diff --git a/plugins/org.eclipse.app4mc.util.sessionlog/OSGI-INF/org.eclipse.app4mc.util.sessionlog.SessionLogger.xml b/plugins/org.eclipse.app4mc.util.sessionlog/OSGI-INF/org.eclipse.app4mc.util.sessionlog.SessionLogger.xml
new file mode 100644
index 0000000..94f47f3
--- /dev/null
+++ b/plugins/org.eclipse.app4mc.util.sessionlog/OSGI-INF/org.eclipse.app4mc.util.sessionlog.SessionLogger.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.2.0" factory="org.eclipse.app4mc.amalthea.sessionlog.factory" name="org.eclipse.app4mc.util.sessionlog.SessionLogger">
+   <service>
+      <provide interface="org.eclipse.app4mc.util.sessionlog.SessionLogger"/>
+   </service>
+   <reference bind="registerLogWriter" cardinality="0..n" interface="org.eclipse.app4mc.util.sessionlog.SessionLogWriter" name="registerLogWriter" policy="dynamic" policy-option="greedy" unbind="unregisterLogWriter"/>
+   <implementation class="org.eclipse.app4mc.util.sessionlog.SessionLogger"/>
+</scr:component>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.util.sessionlog/about.html b/plugins/org.eclipse.app4mc.util.sessionlog/about.html
new file mode 100644
index 0000000..164f781
--- /dev/null
+++ b/plugins/org.eclipse.app4mc.util.sessionlog/about.html
@@ -0,0 +1,36 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>About</title>
+</head>
+<body lang="EN-US">
+	<h2>About This Content</h2>
+
+	<p>November 30, 2017</p>
+	<h3>License</h3>
+
+	<p>
+		The Eclipse Foundation makes available all content in this plug-in
+		(&quot;Content&quot;). Unless otherwise indicated below, the Content
+		is provided to you under the terms and conditions of the Eclipse
+		Public License Version 2.0 (&quot;EPL&quot;). A copy of the EPL is
+		available at <a href="http://www.eclipse.org/legal/epl-2.0">http://www.eclipse.org/legal/epl-2.0</a>.
+		For purposes of the EPL, &quot;Program&quot; will mean the Content.
+	</p>
+
+	<p>
+		If you did not receive this Content directly from the Eclipse
+		Foundation, the Content is being redistributed by another party
+		(&quot;Redistributor&quot;) and different terms and conditions may
+		apply to your use of any object code in the Content. Check the
+		Redistributor's license that was provided with the Content. If no such
+		license exists, contact the Redistributor. Unless otherwise indicated
+		below, the terms and conditions of the EPL still apply to any source
+		code in the Content and such source code may be obtained at <a
+			href="http://www.eclipse.org/">http://www.eclipse.org</a>.
+	</p>
+
+</body>
+</html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.util.sessionlog/build.properties b/plugins/org.eclipse.app4mc.util.sessionlog/build.properties
new file mode 100644
index 0000000..2a35983
--- /dev/null
+++ b/plugins/org.eclipse.app4mc.util.sessionlog/build.properties
@@ -0,0 +1,9 @@
+source.. = src/
+output.. = bin/
+bin.includes = META-INF/,\
+               .,\
+               OSGI-INF/,\
+               about.html,\
+               epl-2.0.html
+src.includes = about.html,\
+               epl-2.0.html
diff --git a/plugins/org.eclipse.app4mc.util.sessionlog/epl-2.0.html b/plugins/org.eclipse.app4mc.util.sessionlog/epl-2.0.html
new file mode 100644
index 0000000..637a181
--- /dev/null
+++ b/plugins/org.eclipse.app4mc.util.sessionlog/epl-2.0.html
@@ -0,0 +1,300 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+  <head>
+    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+    <title>Eclipse Public License - Version 2.0</title>
+    <style type="text/css">
+      body {
+        margin: 1.5em 3em;
+      }
+      h1{
+        font-size:1.5em;
+      }
+      h2{
+        font-size:1em;
+        margin-bottom:0.5em;
+        margin-top:1em;
+      }
+      p {
+        margin-top:  0.5em;
+        margin-bottom: 0.5em;
+      }
+      ul, ol{
+        list-style-type:none;
+      }
+    </style>
+  </head>
+  <body>
+    <h1>Eclipse Public License - v 2.0</h1>
+    <p>THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+      PUBLIC LICENSE (&ldquo;AGREEMENT&rdquo;). ANY USE, REPRODUCTION OR DISTRIBUTION
+      OF THE PROGRAM CONSTITUTES RECIPIENT&#039;S ACCEPTANCE OF THIS AGREEMENT.
+    </p>
+    <h2 id="definitions">1. DEFINITIONS</h2>
+    <p>&ldquo;Contribution&rdquo; means:</p>
+    <ul>
+      <li>a) in the case of the initial Contributor, the initial content
+        Distributed under this Agreement, and
+      </li>
+      <li>
+        b) in the case of each subsequent Contributor:
+        <ul>
+          <li>i) changes to the Program, and</li>
+          <li>ii) additions to the Program;</li>
+        </ul>
+        where such changes and/or additions to the Program originate from
+        and are Distributed by that particular Contributor. A Contribution
+        &ldquo;originates&rdquo; from a Contributor if it was added to the Program by such
+        Contributor itself or anyone acting on such Contributor&#039;s behalf.
+        Contributions do not include changes or additions to the Program that
+        are not Modified Works.
+      </li>
+    </ul>
+    <p>&ldquo;Contributor&rdquo; means any person or entity that Distributes the Program.</p>
+    <p>&ldquo;Licensed Patents&rdquo; mean patent claims licensable by a Contributor which
+      are necessarily infringed by the use or sale of its Contribution alone
+      or when combined with the Program.
+    </p>
+    <p>&ldquo;Program&rdquo; means the Contributions Distributed in accordance with this
+      Agreement.
+    </p>
+    <p>&ldquo;Recipient&rdquo; means anyone who receives the Program under this Agreement
+      or any Secondary License (as applicable), including Contributors.
+    </p>
+    <p>&ldquo;Derivative Works&rdquo; shall mean any work, whether in Source Code or other
+      form, that is based on (or derived from) the Program and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship.
+    </p>
+    <p>&ldquo;Modified Works&rdquo; shall mean any work in Source Code or other form that
+      results from an addition to, deletion from, or modification of the
+      contents of the Program, including, for purposes of clarity any new file
+      in Source Code form that contains any contents of the Program. Modified
+      Works shall not include works that contain only declarations, interfaces,
+      types, classes, structures, or files of the Program solely in each case
+      in order to link to, bind by name, or subclass the Program or Modified
+      Works thereof.
+    </p>
+    <p>&ldquo;Distribute&rdquo; means the acts of a) distributing or b) making available
+      in any manner that enables the transfer of a copy.
+    </p>
+    <p>&ldquo;Source Code&rdquo; means the form of a Program preferred for making
+      modifications, including but not limited to software source code,
+      documentation source, and configuration files.
+    </p>
+    <p>&ldquo;Secondary License&rdquo; means either the GNU General Public License,
+      Version 2.0, or any later versions of that license, including any
+      exceptions or additional permissions as identified by the initial
+      Contributor.
+    </p>
+    <h2 id="grant-of-rights">2. GRANT OF RIGHTS</h2>
+    <ul>
+      <li>a) Subject to the terms of this Agreement, each Contributor hereby
+        grants Recipient a non-exclusive, worldwide, royalty-free copyright
+        license to reproduce, prepare Derivative Works of, publicly display,
+        publicly perform, Distribute and sublicense the Contribution of such
+        Contributor, if any, and such Derivative Works.
+      </li>
+      <li>b) Subject to the terms of this Agreement, each Contributor hereby
+        grants Recipient a non-exclusive, worldwide, royalty-free patent
+        license under Licensed Patents to make, use, sell, offer to sell,
+        import and otherwise transfer the Contribution of such Contributor,
+        if any, in Source Code or other form. This patent license shall
+        apply to the combination of the Contribution and the Program if,
+        at the time the Contribution is added by the Contributor, such
+        addition of the Contribution causes such combination to be covered
+        by the Licensed Patents. The patent license shall not apply to any
+        other combinations which include the Contribution. No hardware per
+        se is licensed hereunder.
+      </li>
+      <li>c) Recipient understands that although each Contributor grants the
+        licenses to its Contributions set forth herein, no assurances are
+        provided by any Contributor that the Program does not infringe the
+        patent or other intellectual property rights of any other entity.
+        Each Contributor disclaims any liability to Recipient for claims
+        brought by any other entity based on infringement of intellectual
+        property rights or otherwise. As a condition to exercising the rights
+        and licenses granted hereunder, each Recipient hereby assumes sole
+        responsibility to secure any other intellectual property rights needed,
+        if any. For example, if a third party patent license is required to
+        allow Recipient to Distribute the Program, it is Recipient&#039;s
+        responsibility to acquire that license before distributing the Program.
+      </li>
+      <li>d) Each Contributor represents that to its knowledge it has sufficient
+        copyright rights in its Contribution, if any, to grant the copyright
+        license set forth in this Agreement.
+      </li>
+      <li>e) Notwithstanding the terms of any Secondary License, no Contributor
+        makes additional grants to any Recipient (other than those set forth
+        in this Agreement) as a result of such Recipient&#039;s receipt of the
+        Program under the terms of a Secondary License (if permitted under
+        the terms of Section 3).
+      </li>
+    </ul>
+    <h2 id="requirements">3. REQUIREMENTS</h2>
+    <p>3.1 If a Contributor Distributes the Program in any form, then:</p>
+    <ul>
+      <li>a) the Program must also be made available as Source Code, in
+        accordance with section 3.2, and the Contributor must accompany
+        the Program with a statement that the Source Code for the Program
+        is available under this Agreement, and informs Recipients how to
+        obtain it in a reasonable manner on or through a medium customarily
+        used for software exchange; and
+      </li>
+      <li>
+        b) the Contributor may Distribute the Program under a license
+        different than this Agreement, provided that such license:
+        <ul>
+          <li>i) effectively disclaims on behalf of all other Contributors all
+            warranties and conditions, express and implied, including warranties
+            or conditions of title and non-infringement, and implied warranties
+            or conditions of merchantability and fitness for a particular purpose;
+          </li>
+          <li>ii) effectively excludes on behalf of all other Contributors all
+            liability for damages, including direct, indirect, special, incidental
+            and consequential damages, such as lost profits;
+          </li>
+          <li>iii) does not attempt to limit or alter the recipients&#039; rights in the
+            Source Code under section 3.2; and
+          </li>
+          <li>iv) requires any subsequent distribution of the Program by any party
+            to be under a license that satisfies the requirements of this section 3.
+          </li>
+        </ul>
+      </li>
+    </ul>
+    <p>3.2 When the Program is Distributed as Source Code:</p>
+    <ul>
+      <li>a) it must be made available under this Agreement, or if the Program (i)
+        is combined with other material in a separate file or files made available
+        under a Secondary License, and (ii) the initial Contributor attached to
+        the Source Code the notice described in Exhibit A of this Agreement,
+        then the Program may be made available under the terms of such
+        Secondary Licenses, and
+      </li>
+      <li>b) a copy of this Agreement must be included with each copy of the Program.</li>
+    </ul>
+    <p>3.3 Contributors may not remove or alter any copyright, patent, trademark,
+      attribution notices, disclaimers of warranty, or limitations of liability
+      (&lsquo;notices&rsquo;) contained within the Program from any copy of the Program which
+      they Distribute, provided that Contributors may add their own appropriate
+      notices.
+    </p>
+    <h2 id="commercial-distribution">4. COMMERCIAL DISTRIBUTION</h2>
+    <p>Commercial distributors of software may accept certain responsibilities
+      with respect to end users, business partners and the like. While this
+      license is intended to facilitate the commercial use of the Program, the
+      Contributor who includes the Program in a commercial product offering should
+      do so in a manner which does not create potential liability for other
+      Contributors. Therefore, if a Contributor includes the Program in a
+      commercial product offering, such Contributor (&ldquo;Commercial Contributor&rdquo;)
+      hereby agrees to defend and indemnify every other Contributor
+      (&ldquo;Indemnified Contributor&rdquo;) against any losses, damages and costs
+      (collectively &ldquo;Losses&rdquo;) arising from claims, lawsuits and other legal actions
+      brought by a third party against the Indemnified Contributor to the extent
+      caused by the acts or omissions of such Commercial Contributor in connection
+      with its distribution of the Program in a commercial product offering.
+      The obligations in this section do not apply to any claims or Losses relating
+      to any actual or alleged intellectual property infringement. In order to
+      qualify, an Indemnified Contributor must: a) promptly notify the
+      Commercial Contributor in writing of such claim, and b) allow the Commercial
+      Contributor to control, and cooperate with the Commercial Contributor in,
+      the defense and any related settlement negotiations. The Indemnified
+      Contributor may participate in any such claim at its own expense.
+    </p>
+    <p>For example, a Contributor might include the Program
+      in a commercial product offering, Product X. That Contributor is then a
+      Commercial Contributor. If that Commercial Contributor then makes performance
+      claims, or offers warranties related to Product X, those performance claims
+      and warranties are such Commercial Contributor&#039;s responsibility alone.
+      Under this section, the Commercial Contributor would have to defend claims
+      against the other Contributors related to those performance claims and
+      warranties, and if a court requires any other Contributor to pay any damages
+      as a result, the Commercial Contributor must pay those damages.
+    </p>
+    <h2 id="warranty">5. NO WARRANTY</h2>
+    <p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT PERMITTED
+      BY APPLICABLE LAW, THE PROGRAM IS PROVIDED ON AN &ldquo;AS IS&rdquo; BASIS, WITHOUT
+      WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING,
+      WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
+      MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is
+      solely responsible for determining the appropriateness of using and
+      distributing the Program and assumes all risks associated with its
+      exercise of rights under this Agreement, including but not limited to the
+      risks and costs of program errors, compliance with applicable laws, damage
+      to or loss of data, programs or equipment, and unavailability or
+      interruption of operations.
+    </p>
+    <h2 id="disclaimer">6. DISCLAIMER OF LIABILITY</h2>
+    <p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT PERMITTED
+      BY APPLICABLE LAW, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY
+      LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
+      OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS),
+      HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+      LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+      OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS
+      GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+    </p>
+    <h2 id="general">7. GENERAL</h2>
+    <p>If any provision of this Agreement is invalid or unenforceable under
+      applicable law, it shall not affect the validity or enforceability of the
+      remainder of the terms of this Agreement, and without further action by the
+      parties hereto, such provision shall be reformed to the minimum extent
+      necessary to make such provision valid and enforceable.
+    </p>
+    <p>If Recipient institutes patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Program itself
+      (excluding combinations of the Program with other software or hardware)
+      infringes such Recipient&#039;s patent(s), then such Recipient&#039;s rights granted
+      under Section 2(b) shall terminate as of the date such litigation is filed.
+    </p>
+    <p>All Recipient&#039;s rights under this Agreement shall terminate if it fails to
+      comply with any of the material terms or conditions of this Agreement and
+      does not cure such failure in a reasonable period of time after becoming
+      aware of such noncompliance. If all Recipient&#039;s rights under this Agreement
+      terminate, Recipient agrees to cease use and distribution of the Program
+      as soon as reasonably practicable. However, Recipient&#039;s obligations under
+      this Agreement and any licenses granted by Recipient relating to the
+      Program shall continue and survive.
+    </p>
+    <p>Everyone is permitted to copy and distribute copies of this Agreement,
+      but in order to avoid inconsistency the Agreement is copyrighted and may
+      only be modified in the following manner. The Agreement Steward reserves
+      the right to publish new versions (including revisions) of this Agreement
+      from time to time. No one other than the Agreement Steward has the right
+      to modify this Agreement. The Eclipse Foundation is the initial Agreement
+      Steward. The Eclipse Foundation may assign the responsibility to serve as
+      the Agreement Steward to a suitable separate entity. Each new version of
+      the Agreement will be given a distinguishing version number. The Program
+      (including Contributions) may always be Distributed subject to the version
+      of the Agreement under which it was received. In addition, after a new
+      version of the Agreement is published, Contributor may elect to Distribute
+      the Program (including its Contributions) under the new version.
+    </p>
+    <p>Except as expressly stated in Sections 2(a) and 2(b) above, Recipient
+      receives no rights or licenses to the intellectual property of any
+      Contributor under this Agreement, whether expressly, by implication,
+      estoppel or otherwise. All rights in the Program not expressly granted
+      under this Agreement are reserved. Nothing in this Agreement is intended
+      to be enforceable by any entity that is not a Contributor or Recipient.
+      No third-party beneficiary rights are created under this Agreement.
+    </p>
+    <h2 id="exhibit-a">Exhibit A &ndash; Form of Secondary Licenses Notice</h2>
+    <p>&ldquo;This Source Code may also be made available under the following 
+    	Secondary Licenses when the conditions for such availability set forth 
+    	in the Eclipse Public License, v. 2.0 are satisfied: {name license(s),
+    	version(s), and exceptions or additional permissions here}.&rdquo;
+    </p>
+    <blockquote>
+      <p>Simply including a copy of this Agreement, including this Exhibit A
+        is not sufficient to license the Source Code under Secondary Licenses.
+      </p>
+      <p>If it is not possible or desirable to put the notice in a particular file,
+        then You may include the notice in a location (such as a LICENSE file in a
+        relevant directory) where a recipient would be likely to look for
+        such a notice.
+      </p>
+      <p>You may add additional accurate notices of copyright ownership.</p>
+    </blockquote>
+  </body>
+</html>
\ No newline at end of file
diff --git a/plugins/org.eclipse.app4mc.util.sessionlog/src/org/eclipse/app4mc/util/sessionlog/SessionLogEntry.java b/plugins/org.eclipse.app4mc.util.sessionlog/src/org/eclipse/app4mc/util/sessionlog/SessionLogEntry.java
new file mode 100644
index 0000000..6311eb4
--- /dev/null
+++ b/plugins/org.eclipse.app4mc.util.sessionlog/src/org/eclipse/app4mc/util/sessionlog/SessionLogEntry.java
@@ -0,0 +1,73 @@
+/**
+ ********************************************************************************
+ * Copyright (c) 2021 Robert Bosch GmbH and others.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ *
+ * Contributors:
+ *     Robert Bosch GmbH - initial API and implementation
+ ********************************************************************************
+ */
+package org.eclipse.app4mc.util.sessionlog;
+
+import java.io.PrintWriter;
+import java.io.StringWriter;
+import java.util.function.Predicate;
+
+public class SessionLogEntry implements Predicate<SessionLogEntry.Status> {
+
+	public enum Status {
+		DEBUG, INFO, WARNING, ERROR;
+		
+		public static Status parseStatus(String logLevel) {
+			Status logStatus = Status.DEBUG;
+			if (logLevel != null) {
+				try {
+					logStatus = SessionLogEntry.Status.valueOf(logLevel);
+				} catch (IllegalArgumentException e) {
+					// if the system property can not be parsed to a Status, we use the default
+				}
+			}
+			return logStatus;
+		}
+	}
+	
+	public final Status status;
+	public final String message;
+	public final Throwable throwable;
+	
+	public SessionLogEntry(Status status, String message) {
+		this(status, message, null);
+	}
+	
+	public SessionLogEntry(Status status, String message, Throwable throwable) {
+		this.status = status;
+		this.message = message;
+		this.throwable = throwable;
+	}
+	
+	public String getStackTrace() {
+		if (this.throwable != null) {
+			StringWriter sw = new StringWriter();
+			PrintWriter pw = new PrintWriter(sw);
+			this.throwable.printStackTrace(pw);
+			return sw.toString();
+		}
+		return "";
+	}
+
+	@Override
+	public boolean test(SessionLogEntry.Status t) {
+		switch (t) {
+			case ERROR: return (this.status == Status.ERROR);
+			case WARNING: return (this.status == Status.ERROR || this.status == Status.WARNING);
+			case INFO: return (this.status == Status.ERROR || this.status == Status.WARNING || this.status == Status.INFO);
+			case DEBUG: return true;
+		}
+		return true;
+	}
+}
diff --git a/plugins/org.eclipse.app4mc.util.sessionlog/src/org/eclipse/app4mc/util/sessionlog/SessionLogWriter.java b/plugins/org.eclipse.app4mc.util.sessionlog/src/org/eclipse/app4mc/util/sessionlog/SessionLogWriter.java
new file mode 100644
index 0000000..76c7cb8
--- /dev/null
+++ b/plugins/org.eclipse.app4mc.util.sessionlog/src/org/eclipse/app4mc/util/sessionlog/SessionLogWriter.java
@@ -0,0 +1,35 @@
+/**
+ ********************************************************************************
+ * Copyright (c) 2021 Robert Bosch GmbH and others.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ *
+ * Contributors:
+ *     Robert Bosch GmbH - initial API and implementation
+ ********************************************************************************
+ */
+package org.eclipse.app4mc.util.sessionlog;
+
+import java.io.File;
+import java.util.List;
+
+/**
+ * Service interface for writer that are registered with the SessionLogger to
+ * flush the collected session log entries.
+ */
+public interface SessionLogWriter {
+
+	/**
+	 * Write the session log entries.
+	 * 
+	 * @param sessionLogFile The log file to which the log entries should be
+	 *                       written.
+	 * @param log            The session log entries to write.
+	 */
+	void write(File sessionLogFile, List<SessionLogEntry> log);
+	
+}
diff --git a/plugins/org.eclipse.app4mc.util.sessionlog/src/org/eclipse/app4mc/util/sessionlog/SessionLogger.java b/plugins/org.eclipse.app4mc.util.sessionlog/src/org/eclipse/app4mc/util/sessionlog/SessionLogger.java
new file mode 100644
index 0000000..e58efe1
--- /dev/null
+++ b/plugins/org.eclipse.app4mc.util.sessionlog/src/org/eclipse/app4mc/util/sessionlog/SessionLogger.java
@@ -0,0 +1,74 @@
+/**
+ ********************************************************************************
+ * Copyright (c) 2021 Robert Bosch GmbH and others.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ *
+ * Contributors:
+ *     Robert Bosch GmbH - initial API and implementation
+ ********************************************************************************
+ */
+package org.eclipse.app4mc.util.sessionlog;
+
+import java.io.File;
+import java.text.MessageFormat;
+import java.util.ArrayList;
+import java.util.concurrent.CopyOnWriteArrayList;
+
+import org.eclipse.app4mc.util.sessionlog.SessionLogEntry.Status;
+import org.osgi.service.component.annotations.Component;
+import org.osgi.service.component.annotations.Reference;
+import org.osgi.service.component.annotations.ReferenceCardinality;
+import org.osgi.service.component.annotations.ReferencePolicy;
+import org.osgi.service.component.annotations.ReferencePolicyOption;
+
+/**
+ * Service factory to create a service that can be used to collect session log
+ * statements, e.g. for a migration or a transformation session. The collected
+ * log statements can then be flushed via SessionLogWriter services, e.g. to a
+ * file or to the console.
+ */
+@Component(factory = "org.eclipse.app4mc.amalthea.sessionlog.factory", service = SessionLogger.class)
+public class SessionLogger {
+
+	CopyOnWriteArrayList<SessionLogWriter> logWriter = new CopyOnWriteArrayList<>();
+	
+	ArrayList<SessionLogEntry> log = new ArrayList<>();
+	
+	public void error(String msg, Object... args) {
+		String message = (args != null && args.length > 0) ? MessageFormat.format(msg, args) : msg;
+		Exception e = null;
+		if (args != null && args.length > 0 && args[args.length - 1] instanceof Exception) {
+			e = (Exception) args[args.length - 1];
+		}
+		this.log.add(new SessionLogEntry(Status.ERROR, "ERROR: " + message, e));
+	}
+	
+	public void warn(String msg, Object... args) {
+		String message = (args != null && args.length > 0) ? MessageFormat.format(msg, args) : msg;
+		this.log.add(new SessionLogEntry(Status.WARNING, "WARN : " + message));
+	}
+	
+	public void info(String msg, Object... args) {
+		String message = (args != null && args.length > 0) ? MessageFormat.format(msg, args) : msg;
+		this.log.add(new SessionLogEntry(Status.INFO, "INFO : " + message));
+	}
+	
+	public void flush(File sessionLogFile) {
+		this.logWriter.forEach(w -> w.write(sessionLogFile, new ArrayList<>(this.log)));
+		this.log.clear();
+	}
+	
+	@Reference(cardinality = ReferenceCardinality.MULTIPLE, policy = ReferencePolicy.DYNAMIC, policyOption = ReferencePolicyOption.GREEDY)
+	public void registerLogWriter(SessionLogWriter writer) {
+		this.logWriter.add(writer);
+	}
+	
+	public void unregisterLogWriter(SessionLogWriter writer) {
+		this.logWriter.remove(writer);
+	}
+}
diff --git a/pom.xml b/pom.xml
index 8b0c8f2..d55781d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -17,10 +17,10 @@
 		<app4mc.version>1.1.0-SNAPSHOT</app4mc.version>
 		<app4mc.baseline>1.0.0</app4mc.baseline>
 
-		<tycho.version>2.0.0</tycho.version>
+		<tycho.version>2.3.0</tycho.version>
 
 		<build-helper.version>1.9.1</build-helper.version>
-		<org.jboss.tools.tycho-plugins.version>1.4.0</org.jboss.tools.tycho-plugins.version>
+		<org.jboss.tools.tycho-plugins.version>2.2.0</org.jboss.tools.tycho-plugins.version>
 
 		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
 		<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
@@ -133,12 +133,6 @@
 							<version>${tycho.version}</version>
 						</dependency>
 					</dependencies>
-
-					<configuration>
-						<timestampProvider>jgit</timestampProvider>
-						<jgit.ignore>pom.xml</jgit.ignore>
-						<jgit.dirtyWorkingTree>ignore</jgit.dirtyWorkingTree>
-					</configuration>
 				</plugin>
 
 				<plugin>
diff --git a/releng/org.eclipse.app4mc.converters.p2repo/category.xml b/releng/org.eclipse.app4mc.converters.p2repo/category.xml
index 0b08e2c..805a586 100644
--- a/releng/org.eclipse.app4mc.converters.p2repo/category.xml
+++ b/releng/org.eclipse.app4mc.converters.p2repo/category.xml
@@ -6,5 +6,18 @@
    <feature id="org.eclipse.app4mc.amalthea.converters.sdk">
       <category name="org.eclipse.app4mc.amalthea.converters"/>
    </feature>
+   <feature id="org.eclipse.app4mc.utils.headless">
+      <category name="org.eclipse.app4mc.utils"/>
+   </feature>
+   <feature id="org.eclipse.app4mc.utils.headless.sdk">
+      <category name="org.eclipse.app4mc.utils"/>
+   </feature>
+   <feature id="org.eclipse.app4mc.utils.platform">
+      <category name="org.eclipse.app4mc.utils"/>
+   </feature>
+   <feature id="org.eclipse.app4mc.utils.platform.sdk">
+      <category name="org.eclipse.app4mc.utils"/>
+   </feature>
    <category-def name="org.eclipse.app4mc.amalthea.converters" label="APP4MC Converters"/>
+   <category-def name="org.eclipse.app4mc.utils" label="APP4MC Utils"/>
 </site>
diff --git a/releng/org.eclipse.app4mc.converters.p2repo/compositeContent.xml b/releng/org.eclipse.app4mc.converters.p2repo/compositeContent.xml
deleted file mode 100644
index 561b278..0000000
--- a/releng/org.eclipse.app4mc.converters.p2repo/compositeContent.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<?compositeMetadataRepository version='1.0.0'?>
-<repository name='APP4MC Tool Platform' type='org.eclipse.equinox.internal.p2.metadata.repository.CompositeMetadataRepository' version='1'>
-  <properties size='2'>
-    <property name='p2.timestamp' value='1397033440899'/>
-  </properties>
-  <children size='9'>
-    <child location='http://download.eclipse.org/modeling/emf/emf/updates/releases'/>
-    <child location='http://download.eclipse.org/modeling/emf/compare/updates/releases'/>
-    <child location='http://download.eclipse.org/rmf/updates'/>
-    <child location='http://download.eclipse.org/sphinx/updates/interim'/>
-    <child location='http://download.eclipse.org/modeling/tmf/xtext/updates/composite/releases'/>
-    <child location='http://franca.eclipselabs.org.codespot.com/git/update_site/releases'/>
-    <child location='http://updates.yakindu.org/sct/kepler/releases'/>
-  </children>
-</repository>
diff --git a/releng/org.eclipse.app4mc.converters.product/amalthea_migration.bndrun b/releng/org.eclipse.app4mc.converters.product/amalthea_migration.bndrun
index 22c782a..569046a 100644
--- a/releng/org.eclipse.app4mc.converters.product/amalthea_migration.bndrun
+++ b/releng/org.eclipse.app4mc.converters.product/amalthea_migration.bndrun
@@ -11,10 +11,7 @@
 	org.apache.felix.scr,\
     org.eclipse.osgi.services,\
     org.eclipse.osgi.util,\
-    org.slf4j.api,\
-    org.apache.log4j,\
     org.eclipse.equinox.common,\
-    org.slf4j.impl.log4j12,\
     org.eclipse.app4mc.amalthea.converters.071,\
     org.eclipse.app4mc.amalthea.converters.072,\
     org.eclipse.app4mc.amalthea.converters.080,\
@@ -30,7 +27,9 @@
     org.eclipse.app4mc.amalthea.converters.096,\
     org.eclipse.app4mc.amalthea.converters.097,\
     org.eclipse.app4mc.amalthea.converters.common,\
-    org.eclipse.app4mc.amalthea.converters.log4j.configuration,\
+    org.eclipse.app4mc.util.sessionlog,\
+    org.eclipse.app4mc.util.sessionlog.console,\
+    org.eclipse.app4mc.util.sessionlog.file,\
     javax.xml,\
     org.jaxen,\
     org.jdom2,\
@@ -42,5 +41,4 @@
 
 -runproperties:	\
 	osgi.console=xxx,\
-	log4j.configuration=headless_log4j.xml,\
 	app4mc.log.level=ERROR
diff --git a/releng/org.eclipse.app4mc.converters.product/headless.product b/releng/org.eclipse.app4mc.converters.product/headless.product
index d30178b..f397ebd 100644
--- a/releng/org.eclipse.app4mc.converters.product/headless.product
+++ b/releng/org.eclipse.app4mc.converters.product/headless.product
@@ -7,6 +7,10 @@
    </configIni>
 
    <launcherArgs>
+      <programArgs>-console
+      </programArgs>
+      <vmArgs>-Declipse.ignoreApp=true -Dosgi.noShutdown=true -Dapp4mc.log.level=ERROR
+      </vmArgs>
       <vmArgsMac>-XstartOnFirstThread -Dorg.eclipse.swt.internal.carbon.smallFonts
       </vmArgsMac>
    </launcherArgs>
@@ -309,14 +313,16 @@
    <features>
       <feature id="org.eclipse.app4mc.amalthea.converters.headless.runtime" installMode="root"/>
       <feature id="org.eclipse.app4mc.amalthea.converters.headless" installMode="root"/>
+      <feature id="org.eclipse.app4mc.utils.headless" installMode="root"/>
    </features>
 
    <configurations>
       <plugin id="org.apache.felix.scr" autoStart="true" startLevel="2" />
-      <property name="app4mc.log.level" value="ERROR" />
-      <property name="osgi.noShutdown" value="true" />
+      <plugin id="org.eclipse.app4mc.util.sessionlog.console" autoStart="true" startLevel="3" />
+      <plugin id="org.eclipse.app4mc.util.sessionlog.file" autoStart="true" startLevel="3" />
       <property name="eclipse.ignoreApp" value="true" />
-      <property name="log4j.configuration" value="headless_log4j.xml" />
+      <property name="osgi.noShutdown" value="true" />
+      <property name="app4mc.log.level" value="ERROR" />
    </configurations>
 
    <preferencesInfo>
diff --git a/releng/org.eclipse.app4mc.converters.product/pom.xml b/releng/org.eclipse.app4mc.converters.product/pom.xml
index d7abe46..bfa7336 100644
--- a/releng/org.eclipse.app4mc.converters.product/pom.xml
+++ b/releng/org.eclipse.app4mc.converters.product/pom.xml
@@ -11,7 +11,6 @@
 		<relativePath>../../pom.xml</relativePath>
 	</parent>
 
-	<groupId>org.eclipse.app4mc.converters</groupId>
 	<artifactId>headless</artifactId>
 	
 	<packaging>eclipse-repository</packaging>
diff --git a/releng/org.eclipse.app4mc.converters.target/org.eclipse.app4mc.converters.target.target b/releng/org.eclipse.app4mc.converters.target/org.eclipse.app4mc.converters.target.target
index dc1ef53..7b73eaf 100644
--- a/releng/org.eclipse.app4mc.converters.target/org.eclipse.app4mc.converters.target.target
+++ b/releng/org.eclipse.app4mc.converters.target/org.eclipse.app4mc.converters.target.target
@@ -1,15 +1,12 @@
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
 <?pde?>
 <!-- generated with https://github.com/eclipse-cbi/targetplatform-dsl -->
-<target name="Amalthea Model Migration Target" sequenceNumber="1592297242">
+<target name="Amalthea Model Migration Target" sequenceNumber="1619074360">
   <locations>
     <location includeMode="slicer" includeAllPlatforms="true" includeSource="true" includeConfigurePhase="false" type="InstallableUnit">
       <unit id="org.eclipse.sdk.ide" version="4.14.0.I20191210-0610"/>
       <unit id="org.eclipse.equinox.sdk.feature.group" version="3.20.0.v20191122-2104"/>
       <unit id="javax.xml" version="1.3.4.v201005080400"/>
-      <unit id="org.slf4j.api" version="1.7.2.v20121108-1250"/>
-      <unit id="org.slf4j.impl.log4j12" version="1.7.2.v20131105-2200"/>
-      <unit id="org.apache.log4j" version="1.2.15.v201012070815"/>
       <unit id="org.apache.xalan" version="2.7.1.v201005080400"/>
       <unit id="org.apache.xerces" version="2.9.0.v201101211617"/>
       <unit id="org.apache.xml.resolver" version="1.2.0.v201005080400"/>
diff --git a/releng/org.eclipse.app4mc.converters.target/org.eclipse.app4mc.converters.target.tpd b/releng/org.eclipse.app4mc.converters.target/org.eclipse.app4mc.converters.target.tpd
index 712ab8e..b6d8f07 100644
--- a/releng/org.eclipse.app4mc.converters.target/org.eclipse.app4mc.converters.target.tpd
+++ b/releng/org.eclipse.app4mc.converters.target/org.eclipse.app4mc.converters.target.tpd
@@ -6,9 +6,6 @@
 	org.eclipse.sdk.ide
 	org.eclipse.equinox.sdk.feature.group
 	javax.xml
-	org.slf4j.api [1.7.2,1.7.3)
-	org.slf4j.impl.log4j12 [1.7.2,2.0.0)
-	org.apache.log4j [1.2.15,1.3.0)
 	org.apache.xalan [2.7.1,2.7.2)
 	org.apache.xerces [2.9.0,2.10.0)
 	org.apache.xml.resolver [1.2.0,1.2.1)
@@ -26,4 +23,4 @@
 
 location "http://download.eclipse.org/cbi/updates/license" {
 	org.eclipse.license.feature.group
-}
\ No newline at end of file
+}
diff --git a/tests/org.eclipse.app4mc.amalthea.converters.096.tests/src/org/eclipse/app4mc/amalthea/converters096/tests/SwConverterTest.java b/tests/org.eclipse.app4mc.amalthea.converters.096.tests/src/org/eclipse/app4mc/amalthea/converters096/tests/SwConverterTest.java
index 3725897..106d3a9 100644
--- a/tests/org.eclipse.app4mc.amalthea.converters.096.tests/src/org/eclipse/app4mc/amalthea/converters096/tests/SwConverterTest.java
+++ b/tests/org.eclipse.app4mc.amalthea.converters.096.tests/src/org/eclipse/app4mc/amalthea/converters096/tests/SwConverterTest.java
@@ -34,7 +34,7 @@
 	public static Collection<Object[]> getTestData() {

 

 		return Arrays.asList(new Object[][] {

-			{ "/democar/democar.amxmi", true },
+			{ "/democar/democar.amxmi", true },

 			{"/modecondition/modecondition.amxmi", true}

 		});

 	}

diff --git a/tests/org.eclipse.app4mc.amalthea.converters.common.tests/META-INF/MANIFEST.MF b/tests/org.eclipse.app4mc.amalthea.converters.common.tests/META-INF/MANIFEST.MF
index f992616..c1f4644 100644
--- a/tests/org.eclipse.app4mc.amalthea.converters.common.tests/META-INF/MANIFEST.MF
+++ b/tests/org.eclipse.app4mc.amalthea.converters.common.tests/META-INF/MANIFEST.MF
@@ -9,6 +9,7 @@
 Import-Package: org.eclipse.app4mc.amalthea.converters.common,

  org.eclipse.app4mc.amalthea.converters.common.base,

  org.eclipse.app4mc.amalthea.converters.common.utils,

+ org.eclipse.app4mc.util.sessionlog;version="1.1.0",

  org.jdom2

 Export-Package: org.eclipse.app4mc.amalthea.converters.common.tests

 Require-Bundle: org.junit;bundle-version="4.12.0"

diff --git a/tests/org.eclipse.app4mc.amalthea.converters.common.tests/src/org/eclipse/app4mc/amalthea/converters/common/tests/AbstractConverterTest.java b/tests/org.eclipse.app4mc.amalthea.converters.common.tests/src/org/eclipse/app4mc/amalthea/converters/common/tests/AbstractConverterTest.java
index 0eb3459..dbcf7d0 100644
--- a/tests/org.eclipse.app4mc.amalthea.converters.common.tests/src/org/eclipse/app4mc/amalthea/converters/common/tests/AbstractConverterTest.java
+++ b/tests/org.eclipse.app4mc.amalthea.converters.common.tests/src/org/eclipse/app4mc/amalthea/converters/common/tests/AbstractConverterTest.java
@@ -20,11 +20,13 @@
 

 import java.io.File;

 import java.io.IOException;

+import java.lang.reflect.Field;

 import java.lang.reflect.Method;

 import java.nio.file.Files;

 import java.nio.file.Path;

 import java.nio.file.Paths;

 import java.util.ArrayList;

+import java.util.Arrays;

 import java.util.Collection;

 import java.util.Comparator;

 import java.util.HashMap;

@@ -41,6 +43,7 @@
 import org.eclipse.app4mc.amalthea.converters.common.utils.AmaltheaNamespaceRegistry;

 import org.eclipse.app4mc.amalthea.converters.common.utils.HelperUtil;

 import org.eclipse.app4mc.amalthea.converters.common.utils.ModelVersion;

+import org.eclipse.app4mc.util.sessionlog.SessionLogger;

 import org.jdom2.Attribute;

 import org.jdom2.Document;

 import org.jdom2.Element;

@@ -154,6 +157,7 @@
 					throws InstantiationException, IllegalAccessException, Exception {

 

 		if (converterClasss != null) {

+			SessionLogger logger = new SessionLogger(); 

 			for (Class<?> class1 : converterClasss) {

 				if (IConverter.class.isAssignableFrom(class1)) {

 					IConverter newInstance = (IConverter) class1.getDeclaredConstructor().newInstance();

@@ -163,9 +167,24 @@
 					properties.put(ServiceConstants.INPUT_MODEL_VERSION_PROPERTY, getInputModelVersion().getVersion());

 					properties.put(ServiceConstants.OUTPUT_MODEL_VERSION_PROPERTY, getOutputModelVersion().getVersion());

 

-					Method activateMethod = newInstance.getClass().getDeclaredMethod("activate", Map.class);

-					activateMethod.setAccessible(true);

-					activateMethod.invoke(newInstance, properties);

+					

+					Method[] methods = newInstance.getClass().getDeclaredMethods();

+					Method activateMethod = Arrays.stream(methods).filter(m -> "activate".equals(m.getName())).findFirst().orElse(null);

+					if (activateMethod != null) {

+						activateMethod.setAccessible(true);

+						if (activateMethod.getParameterCount() == 1) {

+							activateMethod.invoke(newInstance, properties);

+						} else if (activateMethod.getParameterCount() == 2) {

+							activateMethod.invoke(newInstance, properties, null);

+						}

+					}

+

+					Field[] fields = newInstance.getClass().getDeclaredFields();

+					Field loggerField = Arrays.stream(fields).filter(m -> "logger".equals(m.getName())).findFirst().orElse(null);

+					if (loggerField != null) {

+						loggerField.setAccessible(true);

+						loggerField.set(newInstance, logger);

+					}

 					

 					//set cache

 					setCache(newInstance, caches);