Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] Eclipse-PatchFragment Require-Bundle

Looks like Tycho decided not to include any swt native fragments on
compile classpath, but I don't know why. If you can create a standalone
project and provide reasonably simple steps to reproduce the problem, I
can have a closer look.

--
Regards,
Igor

On 12-03-09 7:18 AM, Mirko Swillus wrote:
Hej,
Am 09.03.2012 03:43, schrieb Igor Fedorenko:

Tycho treats all *direct* optional dependencies as required (by default,
at least) and ignores all indirect optional dependencies. In you case,
you have fragment->host->optional_dependencies, which Tycho considers to
be indirect and ignores unless they are forced via <extraRequirements>
dependency-resolution configuration block.

I understand. But now I'm stuck on this whole optional dependency thing,
so for now I'm only trying to build the host bundle. We use optional
dependencies for single sourcing within RCP or RAP environments. Look at
the host's MANIFEST.MF Require-Bundles [1], there we define this kind of
'XOR dependency': Use either the RCP or RAP artifacts (to be used at
build- _and_ runtime).

What I tried now was to ignore all optional dependencies with

<dependency-resolution>
<optionalDependencies>ignore</optionalDependencies>
</dependency-resolution>

in the host's pom (because I don't have the RAP artifacts in my target
platform), and defining a bunch of <extraRequirements> which I need at
build time (the RCP part). But this does not work. See the host's pom
[1] and the build log [2].

Any comment would be highly appriciated. Regards,
Mirko

[0]: Host's MANFIEST.MF:
Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.7.0,3.8.0)",
org.eclipse.ui;bundle-version="[3.7.0,3.8.0)";resolution:=optional,
org.eclipse.core.expressions;bundle-version="[3.4.0,3.5.0)",
org.eclipse.rap.ui;bundle-version="[1.4.0,1.5.0)";resolution:=optional,

org.eclipse.core.databinding;bundle-version="[1.4.0,1.5.0)";resolution:=optional,

org.eclipse.ui.forms;bundle-version="[3.5.0,3.6.0)";resolution:=optional,

org.eclipse.jface.databinding;bundle-version="[1.5.0,1.6.0)";resolution:=optional,


org.eclipse.core.databinding.observable;bundle-version="[1.4.0,1.5.0)";resolution:=optional,


org.eclipse.core.databinding.beans;bundle-version="[1.2.0,1.3.0)";resolution:=optional,


org.eclipse.core.databinding.property;bundle-version="[1.4.0,1.5.0)";resolution:=optional,


org.eclipse.rap.ui.forms;bundle-version="[1.4.0,1.5.0)";resolution:=optional,


org.eclipse.rap.jface.databinding;bundle-version="[1.4.0,1.5.0)";resolution:=optional,

com.foobar.commons.qtcommons;bundle-version="5.1.1",
org.apache.commons.beanutils;bundle-version="1.8.0",
org.apache.commons.codec;bundle-version="1.5.0",
org.apache.commons.collections;bundle-version="3.2.1",
org.apache.commons.io;bundle-version="2.1.0",
org.apache.commons.lang3;bundle-version="3.1.0",
org.apache.commons.math;bundle-version="2.1.0"

[1] host's pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0";
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
<modelVersion>4.0.0</modelVersion>
<artifactId>com.qualitype.rcp.commons</artifactId>
<version>4.0.0-SNAPSHOT</version>

<parent>
<groupId>com.qualitype.rcp</groupId>
<artifactId>com.qualitype.rcp.commons.parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>

<packaging>eclipse-plugin</packaging>

<build>
<sourceDirectory>
src
</sourceDirectory>

<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<version>${tycho-version}</version>
<configuration>
<dependency-resolution>
<optionalDependencies>ignore</optionalDependencies>
</dependency-resolution>
<extraRequirements>
<requirement>
<type>eclipse-plugin</type>
<id>org.eclipse.ui</id>
<versionRange>[3.7.0,3.8.0)</versionRange>
</requirement>

<requirement>
<type>eclipse-plugin</type>
<id>org.eclipse.ui.forms</id>
<versionRange>[3.5.0,3.6.0)</versionRange>
</requirement>

<requirement>
<type>eclipse-plugin</type>
<id>org.eclipse.jface.databinding</id>
<versionRange>[1.5.0,1.6.0)</versionRange>
</requirement>

<requirement>
<type>eclipse-plugin</type>
<id>org.eclipse.core.databinding</id>
<versionRange>[1.4.0,1.5.0)</versionRange>
</requirement>

<requirement>
<type>eclipse-plugin</type>
<id>org.eclipse.core.databinding.observable</id>
<versionRange>[1.4.0,1.5.0)</versionRange>
</requirement>

<requirement>
<type>eclipse-plugin</type>
<id>org.eclipse.core.databinding.beans</id>
<versionRange>[1.4.0,1.5.0)</versionRange>
</requirement>

<requirement>
<type>eclipse-plugin</type>
<id>org.eclipse.core.databinding.property</id>
<versionRange>[1.4.0,1.5.0)</versionRange>
</requirement>
</extraRequirements>
</configuration>
</plugin>
</plugins>
</build>
</project>



[2] build log:
Apache Maven 3.0.4 (r1232337; 2012-01-17 09:44:56+0100)
Maven home: C:\Program Files (x86)\apache-maven-3.0.4
Java version: 1.7.0_02, vendor: Oracle Corporation
Java home: C:\Program Files\Java\jdk1.7.0_02\jre
Default locale: de_DE, platform encoding: Cp1252
OS name: "windows 7", version: "6.1", arch: "amd64", family: "windows"
[INFO] Error stacktraces are turned on.
[DEBUG] Reading global settings from C:\Program Files
(x86)\apache-maven-3.0.4\conf\settings.xml
[DEBUG] Reading user settings from C:\Users\mirkos\.m2\settings.xml
[DEBUG] Using local repository at C:\Users\mirkos\.m2\repository
[DEBUG] Using manager EnhancedLocalRepositoryManager with priority 10
for C:\Users\mirkos\.m2\repository
[INFO] Scanning for projects...
[DEBUG] org.eclipse.tycho:tycho-maven-plugin:jar:0.14.1:
[DEBUG] org.eclipse.tycho:tycho-core:jar:0.14.1:compile
[DEBUG] org.apache.maven:maven-core:jar:3.0:compile
[DEBUG] org.apache.maven:maven-model: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-artifact: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.apache.maven:maven-plugin-api:jar:3.0:compile
[DEBUG] org.codehaus.plexus:plexus-utils:jar:2.0.4:compile
[DEBUG] org.codehaus.plexus:plexus-archiver:jar:1.2:compile
[DEBUG] org.codehaus.plexus:plexus-io:jar:1.0.1:compile
[DEBUG]
org.eclipse.tycho:org.eclipse.osgi:jar:3.8.0.v20120123-1419:compile
[DEBUG] org.eclipse.tycho:sisu-equinox-embedder:jar:0.14.1:compile
[DEBUG] org.eclipse.tycho:sisu-equinox-api:jar:0.14.1:compile
[DEBUG] org.eclipse.tycho:tycho-metadata-model:jar:0.14.1:compile
[DEBUG] de.pdark:decentxml:jar:1.3:compile
[DEBUG] org.eclipse.tycho:tycho-embedder-api:jar:0.14.1:compile
[DEBUG]
org.eclipse.tycho:org.eclipse.tycho.embedder.shared:jar:0.14.1:compile
[DEBUG]
org.eclipse.tycho:org.eclipse.tycho.core.shared:jar:0.14.1:compile
[DEBUG] org.eclipse.tycho:tycho-p2-facade:jar:0.14.1:compile
[DEBUG]
org.codehaus.plexus:plexus-component-annotations:jar:1.5.5: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.eclipse.tycho:org.eclipse.tycho.p2.resolver.shared:jar:0.14.1:compile
[DEBUG]
org.eclipse.tycho:org.eclipse.tycho.p2.tools.shared:jar:0.14.1:compile
[DEBUG] Created new class realm maven.api
[DEBUG] Importing foreign packages into class realm maven.api
[DEBUG] Imported: org.apache.maven.wagon.events < plexus.core
[DEBUG] Imported: org.sonatype.aether.transfer < plexus.core
[DEBUG] Imported: org.apache.maven.exception < plexus.core
[DEBUG] Imported: org.sonatype.aether.metadata < plexus.core
[DEBUG] Imported: org.codehaus.plexus.util.xml.Xpp3Dom < plexus.core
[DEBUG] Imported: org.sonatype.aether.collection < plexus.core
[DEBUG] Imported: org.sonatype.aether.version < plexus.core
[DEBUG] Imported: org.apache.maven.monitor < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.repository < plexus.core
[DEBUG] Imported: org.apache.maven.repository < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.resource < plexus.core
[DEBUG] Imported: org.codehaus.plexus.logging < plexus.core
[DEBUG] Imported: org.apache.maven.profiles < plexus.core
[DEBUG] Imported: org.sonatype.aether.repository < plexus.core
[DEBUG] Imported: org.apache.maven.classrealm < plexus.core
[DEBUG] Imported: org.apache.maven.execution < plexus.core
[DEBUG] Imported: org.sonatype.aether.artifact < plexus.core
[DEBUG] Imported: org.sonatype.aether.spi < plexus.core
[DEBUG] Imported: org.apache.maven.reporting < plexus.core
[DEBUG] Imported: org.apache.maven.usability < plexus.core
[DEBUG] Imported: org.codehaus.plexus.container < plexus.core
[DEBUG] Imported: org.codehaus.plexus.component < plexus.core
[DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlSerializer <
plexus.core
[DEBUG] Imported: org.apache.maven.wagon.authentication < plexus.core
[DEBUG] Imported: org.apache.maven.lifecycle < plexus.core
[DEBUG] Imported: org.codehaus.plexus.classworlds < plexus.core
[DEBUG] Imported: org.sonatype.aether.graph < plexus.core
[DEBUG] Imported: org.sonatype.aether.* < plexus.core
[DEBUG] Imported: org.apache.maven.settings < plexus.core
[DEBUG] Imported: org.codehaus.classworlds < plexus.core
[DEBUG] Imported: org.sonatype.aether.impl < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.* < plexus.core
[DEBUG] Imported: org.apache.maven.toolchain < plexus.core
[DEBUG] Imported: org.sonatype.aether.deployment < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.observers < plexus.core
[DEBUG] Imported:
org.codehaus.plexus.util.xml.pull.XmlPullParserException < plexus.core
[DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlPullParser <
plexus.core
[DEBUG] Imported: org.apache.maven.configuration < plexus.core
[DEBUG] Imported: org.apache.maven.cli < plexus.core
[DEBUG] Imported: org.sonatype.aether.installation < plexus.core
[DEBUG] Imported: org.codehaus.plexus.context < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.authorization < plexus.core
[DEBUG] Imported: org.apache.maven.project < plexus.core
[DEBUG] Imported: org.apache.maven.rtinfo < plexus.core
[DEBUG] Imported: org.codehaus.plexus.lifecycle < plexus.core
[DEBUG] Imported: org.codehaus.plexus.configuration < plexus.core
[DEBUG] Imported: org.apache.maven.artifact < plexus.core
[DEBUG] Imported: org.apache.maven.model < plexus.core
[DEBUG] Imported: org.apache.maven.* < plexus.core
[DEBUG] Imported: org.apache.maven.wagon.proxy < plexus.core
[DEBUG] Imported: org.sonatype.aether.resolution < plexus.core
[DEBUG] Imported: org.apache.maven.plugin < plexus.core
[DEBUG] Imported: org.codehaus.plexus.* < plexus.core
[DEBUG] Imported: org.codehaus.plexus.personality < plexus.core
[DEBUG] Populating class realm maven.api
[DEBUG] Created new class realm
extension>org.eclipse.tycho:tycho-maven-plugin:0.14.1
[DEBUG] Importing foreign packages into class realm
extension>org.eclipse.tycho:tycho-maven-plugin:0.14.1
[DEBUG] Imported: < maven.api
[DEBUG] Populating class realm
extension>org.eclipse.tycho:tycho-maven-plugin:0.14.1
[DEBUG] Included: org.eclipse.tycho:tycho-maven-plugin:jar:0.14.1
[DEBUG] Included: org.eclipse.tycho:tycho-core:jar:0.14.1
[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-utils:jar:2.0.4
[DEBUG] Included: org.codehaus.plexus:plexus-archiver:jar:1.2
[DEBUG] Included: org.codehaus.plexus:plexus-io:jar:1.0.1
[DEBUG] Included:
org.eclipse.tycho:org.eclipse.osgi:jar:3.8.0.v20120123-1419
[DEBUG] Included: org.eclipse.tycho:sisu-equinox-embedder:jar:0.14.1
[DEBUG] Included: org.eclipse.tycho:sisu-equinox-api:jar:0.14.1
[DEBUG] Included: org.eclipse.tycho:tycho-metadata-model:jar:0.14.1
[DEBUG] Included: de.pdark:decentxml:jar:1.3
[DEBUG] Included: org.eclipse.tycho:tycho-embedder-api:jar:0.14.1
[DEBUG] Included:
org.eclipse.tycho:org.eclipse.tycho.embedder.shared:jar:0.14.1
[DEBUG] Included:
org.eclipse.tycho:org.eclipse.tycho.core.shared:jar:0.14.1
[DEBUG] Included: org.eclipse.tycho:tycho-p2-facade:jar:0.14.1
[DEBUG] Included:
org.codehaus.plexus:plexus-component-annotations:jar:1.5.5
[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.eclipse.tycho:org.eclipse.tycho.p2.resolver.shared:jar:0.14.1
[DEBUG] Included:
org.eclipse.tycho:org.eclipse.tycho.p2.tools.shared:jar:0.14.1
[DEBUG] Extension realms for project
com.qualitype.rcp:com.qualitype.rcp.commons:eclipse-plugin:4.0.0-SNAPSHOT:
[ClassRealm[extension>org.eclipse.tycho:tycho-maven-plugin:0.14.1,
parent: sun.misc.Launcher$AppClassLoader@32db4c8d]]
[DEBUG] Created new class realm
project>com.qualitype.rcp:com.qualitype.rcp.commons:4.0.0-SNAPSHOT
[DEBUG] Populating class realm
project>com.qualitype.rcp:com.qualitype.rcp.commons:4.0.0-SNAPSHOT
[DEBUG] Looking up lifecyle mappings for packaging eclipse-plugin from
ClassRealm[project>com.qualitype.rcp:com.qualitype.rcp.commons:4.0.0-SNAPSHOT,
parent: ClassRealm[maven.api, parent: null]]
[DEBUG] target-platform-configuration for MavenProject:
com.qualitype.rcp:com.qualitype.rcp.commons:4.0.0-SNAPSHOT @
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons Plug-in\pom.xml:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<dependency-resolution>
<optionalDependencies>ignore</optionalDependencies>
</dependency-resolution>
<extraRequirements>
<requirement>
<type>eclipse-plugin</type>
<id>org.eclipse.ui</id>
<versionRange>[3.7.0,3.8.0)</versionRange>
</requirement>
<requirement>
<type>eclipse-plugin</type>
<id>org.eclipse.ui.forms</id>
<versionRange>[3.5.0,3.6.0)</versionRange>
</requirement>
<requirement>
<type>eclipse-plugin</type>
<id>org.eclipse.jface.databinding</id>
<versionRange>[1.5.0,1.6.0)</versionRange>
</requirement>
<requirement>
<type>eclipse-plugin</type>
<id>org.eclipse.core.databinding</id>
<versionRange>[1.4.0,1.5.0)</versionRange>
</requirement>
<requirement>
<type>eclipse-plugin</type>
<id>org.eclipse.core.databinding.observable</id>
<versionRange>[1.4.0,1.5.0)</versionRange>
</requirement>
<requirement>
<type>eclipse-plugin</type>
<id>org.eclipse.core.databinding.beans</id>
<versionRange>[1.4.0,1.5.0)</versionRange>
</requirement>
<requirement>
<type>eclipse-plugin</type>
<id>org.eclipse.core.databinding.property</id>
<versionRange>[1.4.0,1.5.0)</versionRange>
</requirement>
</extraRequirements>
<resolver>p2</resolver>
<target>
<artifact>
<groupId>com.qualitype.rcp</groupId>
<artifactId>com.qualitype.rcp.commons.target</artifactId>
<version>1.0.0-SNAPSHOT</version>
<classifier>indigo</classifier>
</artifact>
</target>
<ignoreTychoRepositories>true</ignoreTychoRepositories>
<environments>
<environment>
<os>win32</os>
<ws>win32</ws>
<arch>x86</arch>
</environment>
</environments>
</configuration>
Time to load bundles: 171
[DEBUG] clear OSGi proxy settings
[DEBUG] org.eclipse.tycho:tycho-p2-plugin:jar:0.14.1:
[DEBUG] org.apache.maven:maven-plugin-api:jar:3.0:compile
[DEBUG] org.apache.maven:maven-model:jar:3.0:compile
[DEBUG] org.apache.maven:maven-artifact: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-utils:jar:2.0.4:compile
[DEBUG] org.codehaus.plexus:plexus-classworlds:jar:2.2.3:compile
[DEBUG]
org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile
[DEBUG] org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile
[DEBUG] org.sonatype.plexus:plexus-cipher:jar:1.4:compile
[DEBUG] org.eclipse.tycho:sisu-equinox-launching:jar:0.14.1:compile
[DEBUG] org.eclipse.tycho:tycho-core:jar:0.14.1:compile
[DEBUG] org.codehaus.plexus:plexus-archiver:jar:1.2:compile
[DEBUG] org.codehaus.plexus:plexus-io:jar:1.0.1:compile
[DEBUG] org.eclipse.tycho:tycho-metadata-model:jar:0.14.1:compile
[DEBUG] de.pdark:decentxml:jar:1.3:compile
[DEBUG] org.eclipse.tycho:tycho-embedder-api:jar:0.14.1:compile
[DEBUG]
org.eclipse.tycho:org.eclipse.tycho.embedder.shared:jar:0.14.1:compile
[DEBUG]
org.eclipse.tycho:org.eclipse.tycho.core.shared:jar:0.14.1:compile
[DEBUG] org.eclipse.tycho:sisu-equinox-api:jar:0.14.1:compile
[DEBUG] org.eclipse.tycho:tycho-p2-facade:jar:0.14.1:compile
[DEBUG]
org.eclipse.tycho:org.eclipse.osgi:jar:3.8.0.v20120123-1419:compile
[DEBUG] org.eclipse.tycho:sisu-equinox-embedder:jar:0.14.1:compile
[DEBUG]
org.eclipse.tycho:org.eclipse.tycho.p2.resolver.shared:jar:0.14.1:compile
[DEBUG]
org.eclipse.tycho:org.eclipse.tycho.p2.tools.shared:jar:0.14.1:compile
[DEBUG] Created new class realm
plugin>org.eclipse.tycho:tycho-p2-plugin:0.14.1
[DEBUG] Importing foreign packages into class realm
plugin>org.eclipse.tycho:tycho-p2-plugin:0.14.1
[DEBUG] Imported: <
project>com.qualitype.rcp:com.qualitype.rcp.commons:4.0.0-SNAPSHOT
[DEBUG] Populating class realm
plugin>org.eclipse.tycho:tycho-p2-plugin:0.14.1
[DEBUG] Included: org.eclipse.tycho:tycho-p2-plugin:jar:0.14.1
[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.codehaus.plexus:plexus-utils:jar:2.0.4
[DEBUG] Included:
org.codehaus.plexus:plexus-component-annotations:jar:1.5.5
[DEBUG] Included: org.sonatype.plexus:plexus-sec-dispatcher:jar:1.3
[DEBUG] Included: org.sonatype.plexus:plexus-cipher:jar:1.4
[DEBUG] Included: org.eclipse.tycho:sisu-equinox-launching:jar:0.14.1
[DEBUG] Included: org.codehaus.plexus:plexus-archiver:jar:1.2
[DEBUG] Included: org.codehaus.plexus:plexus-io:jar:1.0.1
[DEBUG] Excluded: org.apache.maven:maven-plugin-api:jar:3.0
[DEBUG] Excluded: org.apache.maven:maven-model:jar:3.0
[DEBUG] Excluded: org.apache.maven:maven-artifact:jar:3.0
[DEBUG] Excluded: org.sonatype.sisu:sisu-inject-plexus:jar:1.4.2
[DEBUG] Excluded: org.apache.maven:maven-core:jar:3.0
[DEBUG] Excluded: org.apache.maven:maven-settings:jar:3.0
[DEBUG] Excluded: org.apache.maven:maven-settings-builder:jar:3.0
[DEBUG] Excluded: org.apache.maven:maven-repository-metadata:jar:3.0
[DEBUG] Excluded: org.apache.maven:maven-model-builder:jar:3.0
[DEBUG] Excluded: org.apache.maven:maven-aether-provider:jar:3.0
[DEBUG] Excluded: org.sonatype.aether:aether-impl:jar:1.7
[DEBUG] Excluded: org.sonatype.aether:aether-spi:jar:1.7
[DEBUG] Excluded: org.sonatype.aether:aether-api:jar:1.7
[DEBUG] Excluded: org.codehaus.plexus:plexus-classworlds:jar:2.2.3
[DEBUG] Excluded: org.eclipse.tycho:tycho-core:jar:0.14.1
[DEBUG] Excluded: org.eclipse.tycho:tycho-metadata-model:jar:0.14.1
[DEBUG] Excluded: de.pdark:decentxml:jar:1.3
[DEBUG] Excluded: org.eclipse.tycho:tycho-embedder-api:jar:0.14.1
[DEBUG] Excluded:
org.eclipse.tycho:org.eclipse.tycho.embedder.shared:jar:0.14.1
[DEBUG] Excluded:
org.eclipse.tycho:org.eclipse.tycho.core.shared:jar:0.14.1
[DEBUG] Excluded: org.eclipse.tycho:sisu-equinox-api:jar:0.14.1
[DEBUG] Excluded: org.eclipse.tycho:tycho-p2-facade:jar:0.14.1
[DEBUG] Excluded:
org.eclipse.tycho:org.eclipse.osgi:jar:3.8.0.v20120123-1419
[DEBUG] Excluded: org.eclipse.tycho:sisu-equinox-embedder:jar:0.14.1
[DEBUG] Excluded:
org.eclipse.tycho:org.eclipse.tycho.p2.resolver.shared:jar:0.14.1
[DEBUG] Excluded:
org.eclipse.tycho:org.eclipse.tycho.p2.tools.shared:jar:0.14.1
[INFO] Computing target platform for MavenProject:
com.qualitype.rcp:com.qualitype.rcp.commons:4.0.0-SNAPSHOT @
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons Plug-in\pom.xml
[DEBUG] Resolving target definition file
"C:\Users\mirkos\.m2\repository\com\qualitype\rcp\com.qualitype.rcp.commons.target\1.0.0-SNAPSHOT\com.qualitype.rcp.commons.target-1.0.0-SNAPSHOT-indigo.target"

Mrz 09, 2012 1:08:47 PM
org.apache.commons.httpclient.auth.AuthChallengeProcessor
selectAuthScheme
Information: basic authentication scheme selected
Mrz 09, 2012 1:08:48 PM
org.apache.commons.httpclient.auth.AuthChallengeProcessor
selectAuthScheme
Information: basic authentication scheme selected
Mrz 09, 2012 1:08:48 PM
org.apache.commons.httpclient.auth.AuthChallengeProcessor
selectAuthScheme
Information: basic authentication scheme selected
Mrz 09, 2012 1:08:48 PM
org.apache.commons.httpclient.auth.AuthChallengeProcessor
selectAuthScheme
Information: basic authentication scheme selected
Mrz 09, 2012 1:08:48 PM
org.apache.commons.httpclient.auth.AuthChallengeProcessor
selectAuthScheme
Information: basic authentication scheme selected
Mrz 09, 2012 1:08:48 PM
org.apache.commons.httpclient.auth.AuthChallengeProcessor
selectAuthScheme
Information: basic authentication scheme selected
Mrz 09, 2012 1:08:48 PM
org.apache.commons.httpclient.auth.AuthChallengeProcessor
selectAuthScheme
Information: basic authentication scheme selected
Mrz 09, 2012 1:08:48 PM
org.apache.commons.httpclient.auth.AuthChallengeProcessor
selectAuthScheme
Information: basic authentication scheme selected
Mrz 09, 2012 1:08:48 PM
org.apache.commons.httpclient.auth.AuthChallengeProcessor
selectAuthScheme
Information: basic authentication scheme selected
[DEBUG] Added 52 units, the content of the target definition file, to
the target platform
[DEBUG] Registered artifact repository
org.eclipse.tycho.repository.registry.facade.RepositoryBlackboardKey(uri=file:/resolution-context-artifacts@C:%5CUsers%5Cmirkos%5Cworkspaces%5CcommonsPluginTycho%5CCommons%20Plug-in)

[DEBUG] Added 23 locally built units to the target platform
[INFO] Resolving dependencies of MavenProject:
com.qualitype.rcp:com.qualitype.rcp.commons:4.0.0-SNAPSHOT @
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons Plug-in\pom.xml
Mrz 09, 2012 1:08:48 PM
org.apache.commons.httpclient.auth.AuthChallengeProcessor
selectAuthScheme
Information: basic authentication scheme selected
Mrz 09, 2012 1:08:48 PM
org.apache.commons.httpclient.auth.AuthChallengeProcessor
selectAuthScheme
Information: basic authentication scheme selected
Mrz 09, 2012 1:08:49 PM
org.apache.commons.httpclient.auth.AuthChallengeProcessor
selectAuthScheme
Information: basic authentication scheme selected
Mrz 09, 2012 1:08:49 PM
org.apache.commons.httpclient.auth.AuthChallengeProcessor
selectAuthScheme
Information: basic authentication scheme selected
Mrz 09, 2012 1:08:49 PM
org.apache.commons.httpclient.auth.AuthChallengeProcessor
selectAuthScheme
Information: basic authentication scheme selected
Mrz 09, 2012 1:08:49 PM
org.apache.commons.httpclient.auth.AuthChallengeProcessor
selectAuthScheme
Information: basic authentication scheme selected
Mrz 09, 2012 1:08:49 PM
org.apache.commons.httpclient.auth.AuthChallengeProcessor
selectAuthScheme
Information: basic authentication scheme selected
Mrz 09, 2012 1:08:49 PM
org.apache.commons.httpclient.auth.AuthChallengeProcessor
selectAuthScheme
Information: basic authentication scheme selected
Mrz 09, 2012 1:08:49 PM
org.apache.commons.httpclient.auth.AuthChallengeProcessor
selectAuthScheme
Information: basic authentication scheme selected
[WARNING] The following locally built units have been used to resolve
project dependencies:
[WARNING] com.qualitype.rcp.jboss5.client/2.1.1
[INFO] Resolving class path of MavenProject:
com.qualitype.rcp:com.qualitype.rcp.commons:4.0.0-SNAPSHOT @
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons Plug-in\pom.xml
[DEBUG] Bundle-ClassPath entry runtime_registry_compatibility.jar does
not exist
inC:\Users\mirkos\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.registry\3.5.101.R37x_v20110810-1611\org.eclipse.equinox.registry-3.5.101.R37x_v20110810-1611.jar

[DEBUG] Bundle-ClassPath entry runtime_registry_compatibility.jar does
not exist
inC:\Users\mirkos\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.registry\3.5.101.R37x_v20110810-1611\org.eclipse.equinox.registry-3.5.101.R37x_v20110810-1611.jar

[DEBUG] === REACTOR BUILD PLAN
================================================
[DEBUG] Project:
com.qualitype.rcp:com.qualitype.rcp.commons:eclipse-plugin:4.0.0-SNAPSHOT
[DEBUG] Tasks: [clean, install]
[DEBUG] Style: Regular
[DEBUG]
=======================================================================
[INFO]
[INFO]
------------------------------------------------------------------------
[INFO] Building com.qualitype.rcp.commons 4.0.0-SNAPSHOT
[INFO]
------------------------------------------------------------------------
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources,
process-sources, generate-resources, process-resources, compile,
process-classes, generate-test-sources, process-test-sources,
generate-test-resources, process-test-resources, test-compile,
process-test-classes, test, prepare-package, package,
pre-integration-test, integration-test, post-integration-test, verify,
install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources,
process-sources, generate-resources, process-resources, compile,
process-classes, generate-test-sources, process-test-sources,
generate-test-resources, process-test-resources, test-compile,
process-test-classes, test, prepare-package, package,
pre-integration-test, integration-test, post-integration-test, verify,
install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources,
process-sources, generate-resources, process-resources, compile,
process-classes, generate-test-sources, process-test-sources,
generate-test-resources, process-test-resources, test-compile,
process-test-classes, test, prepare-package, package,
pre-integration-test, integration-test, post-integration-test, verify,
install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources,
process-sources, generate-resources, process-resources, compile,
process-classes, generate-test-sources, process-test-sources,
generate-test-resources, process-test-resources, test-compile,
process-test-classes, test, prepare-package, package,
pre-integration-test, integration-test, post-integration-test, verify,
install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources,
process-sources, generate-resources, process-resources, compile,
process-classes, generate-test-sources, process-test-sources,
generate-test-resources, process-test-resources, test-compile,
process-test-classes, test, prepare-package, package,
pre-integration-test, integration-test, post-integration-test, verify,
install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources,
process-sources, generate-resources, process-resources, compile,
process-classes, generate-test-sources, process-test-sources,
generate-test-resources, process-test-resources, test-compile,
process-test-classes, test, prepare-package, package,
pre-integration-test, integration-test, post-integration-test, verify,
install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources,
process-sources, generate-resources, process-resources, compile,
process-classes, generate-test-sources, process-test-sources,
generate-test-resources, process-test-resources, test-compile,
process-test-classes, test, prepare-package, package,
pre-integration-test, integration-test, post-integration-test, verify,
install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources,
process-sources, generate-resources, process-resources, compile,
process-classes, generate-test-sources, process-test-sources,
generate-test-resources, process-test-resources, test-compile,
process-test-classes, test, prepare-package, package,
pre-integration-test, integration-test, post-integration-test, verify,
install, deploy]
[DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean]
[DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy]
[DEBUG] Lifecycle default -> [validate, initialize, generate-sources,
process-sources, generate-resources, process-resources, compile,
process-classes, generate-test-sources, process-test-sources,
generate-test-resources, process-test-resources, test-compile,
process-test-classes, test, prepare-package, package,
pre-integration-test, integration-test, post-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:
com.qualitype.rcp:com.qualitype.rcp.commons:4.0.0-SNAPSHOT
[DEBUG] Dependencies (collect): []
[DEBUG] Dependencies (resolve): [compile]
[DEBUG] Repositories (dependencies): [central
(http://repo.maven.apache.org/maven2, releases)]
[DEBUG] Repositories (plugins) : [central
(http://repo.maven.apache.org/maven2, releases)]
[DEBUG]
-----------------------------------------------------------------------
[DEBUG] Goal: org.apache.maven.plugins:maven-clean-plugin:2.4.1: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}"/>
<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:0.14.1:build-qualifier
(default-build-qualifier)
[DEBUG] Style: Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
<baseDir default-value="${project.basedir}"/>
<forceContextQualifier>${forceContextQualifier}</forceContextQualifier>
<format default-value="yyyyMMddHHmm"/>
<packaging default-value="${project.packaging}"/>
<project default-value="${project}"/>
<session>${session}</session>
</configuration>
[DEBUG]
-----------------------------------------------------------------------
[DEBUG] Goal:
org.eclipse.tycho:tycho-packaging-plugin:0.14.1:validate-id
(default-validate-id)
[DEBUG] Style: Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
<packaging default-value="${project.packaging}"/>
<project default-value="${project}"/>
</configuration>
[DEBUG]
-----------------------------------------------------------------------
[DEBUG] Goal:
org.eclipse.tycho:tycho-packaging-plugin:0.14.1:validate-version
(default-validate-version)
[DEBUG] Style: Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
<packaging default-value="${project.packaging}"/>
<project default-value="${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:0.14.1: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>
<debug default-value="true">${maven.compiler.debug}</debug>
<encoding>${maven.compiler.encoding}</encoding>
<executable>${maven.compiler.executable}</executable>
<fork default-value="false"/>
<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>
<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>
<target>${maven.compiler.target}</target>
<useJDK default-value="SYSTEM"/>
<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-packaging-plugin:0.14.1: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:0.14.1:p2-metadata
(default-p2-metadata)
[DEBUG] Style: Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
<attachP2Metadata default-value="true"/>
<project>${project}</project>
</configuration>
[DEBUG]
-----------------------------------------------------------------------
[DEBUG] Goal:
org.apache.maven.plugins:maven-install-plugin:2.3.1:install
(default-install)
[DEBUG] Style: Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
<artifact default-value="${project.artifact}"/>
<attachedArtifacts default-value="${project.attachedArtifacts}"/>
<createChecksum default-value="false">${createChecksum}</createChecksum>
<localRepository>${localRepository}</localRepository>
<packaging default-value="${project.packaging}"/>
<pomFile default-value="${project.file}"/>
<updateReleaseInfo
default-value="false">${updateReleaseInfo}</updateReleaseInfo>
</configuration>
[DEBUG]
-----------------------------------------------------------------------
[DEBUG] Goal:
org.eclipse.tycho:tycho-p2-plugin:0.14.1:update-local-index
(default-update-local-index)
[DEBUG] Style: Regular
[DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>
<configuration>
<project>${project}</project>
</configuration>
[DEBUG]
=======================================================================
[DEBUG]
com.qualitype.rcp:com.qualitype.rcp.commons:eclipse-plugin:4.0.0-SNAPSHOT
[DEBUG]
p2.eclipse-plugin:com.qualitype.commons.qtcommons:jar:5.1.1.SNAPSHOT:system

[DEBUG] p2.eclipse-plugin:com.springsource.javassist:jar:3.15.0.GA:system
[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:2.1.1:system
[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/antlr.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/commons-logging.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/concurrent.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/ejb3-persistence.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/hibernate-annotations.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/hibernate-core.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jboss-aop-client.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jboss-appclient.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jboss-aspect-jdk50-client.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jboss-client.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jboss-common-core.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jboss-deployers-client-spi.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jboss-deployers-client.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jboss-deployers-core-spi.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jboss-deployers-core.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jboss-deployment.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jboss-ejb3-common-client.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jboss-ejb3-core-client.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jboss-ejb3-ext-api.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jboss-ejb3-proxy-clustered-client.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jboss-ejb3-proxy-impl-client.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jboss-ejb3-proxy-spi-client.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jboss-ejb3-security-client.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jboss-ha-client.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jboss-ha-legacy-client.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jboss-iiop-client.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jboss-integration.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jboss-j2se.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jboss-javaee.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jboss-jsr77-client.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jboss-logging-jdk.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jboss-logging-log4j.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jboss-logging-spi.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jboss-main-client.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jboss-mdr.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jboss-messaging-client.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jboss-remoting.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jboss-security-spi.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jboss-serialization.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jboss-srp-client.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jboss-system-client.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jboss-system-jmx-client.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jbossall-client.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jbossjts-integration.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jbossjts.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jbosssx-as-client.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jbosssx-client.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jmx-client.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jmx-invoker-adaptor-client.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/jnp-client.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/slf4j-api.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/slf4j-jboss-logging.jar:2.1.1:system

[DEBUG]
p2.eclipse-plugin:com.qualitype.rcp.jboss5.client:jar:lib/xmlsec.jar:2.1.1:system

[DEBUG] p2.eclipse-plugin:org.apache.commons.beanutils:jar:1.8.3:system
[DEBUG] p2.eclipse-plugin:org.apache.commons.codec:jar:1.6.0:system
[DEBUG] p2.eclipse-plugin:org.apache.commons.io:jar:2.1.0:system
[DEBUG] p2.eclipse-plugin:org.apache.commons.lang3:jar:3.1.0:system
[DEBUG]
p2.eclipse-plugin:org.eclipse.core.runtime:jar:3.7.0.v20110110:system
[DEBUG]
p2.eclipse-plugin:org.eclipse.core.expressions:jar:3.4.300.v20110228:system

[DEBUG] p2.eclipse-plugin:org.apache.commons.collections:jar:3.2.1:system
[DEBUG] p2.eclipse-plugin:org.apache.commons.math:jar:2.2.0:system
[DEBUG]
p2.eclipse-plugin:org.eclipse.core.contenttype:jar:3.4.100.v20110423-0524:system

[DEBUG]
p2.eclipse-plugin:org.eclipse.equinox.preferences:jar:3.4.1.R37x_v20110725:system

[DEBUG]
p2.eclipse-plugin:org.eclipse.equinox.registry:jar:3.5.101.R37x_v20110810-1611:system

[DEBUG]
p2.eclipse-plugin:org.eclipse.equinox.common:jar:3.6.0.v20110523:system
[DEBUG]
p2.eclipse-plugin:org.eclipse.osgi:jar:3.7.1.R37x_v20110808-1106:system
[DEBUG]
p2.eclipse-plugin:org.eclipse.core.jobs:jar:3.5.100.v20110404:system
[DEBUG]
p2.eclipse-plugin:org.eclipse.core.runtime.compatibility.auth:jar:3.2.200.v20110110:system

[DEBUG]
p2.eclipse-plugin:org.eclipse.equinox.app:jar:1.3.100.v20110321:system
[DEBUG]
p2.eclipse-plugin:org.eclipse.osgi.services:jar:3.3.0.v20110513:system
[INFO]
[INFO] --- maven-clean-plugin:2.4.1:clean (default-clean) @
com.qualitype.rcp.commons ---
[DEBUG] org.apache.maven.plugins:maven-clean-plugin:jar:2.4.1:
[DEBUG] org.apache.maven:maven-plugin-api:jar:2.0.6:compile
[DEBUG] org.codehaus.plexus:plexus-utils:jar:2.0.5:compile
[DEBUG] Created new class realm
plugin>org.apache.maven.plugins:maven-clean-plugin:2.4.1
[DEBUG] Importing foreign packages into class realm
plugin>org.apache.maven.plugins:maven-clean-plugin:2.4.1
[DEBUG] Imported: <
project>com.qualitype.rcp:com.qualitype.rcp.commons:4.0.0-SNAPSHOT
[DEBUG] Populating class realm
plugin>org.apache.maven.plugins:maven-clean-plugin:2.4.1
[DEBUG] Included: org.apache.maven.plugins:maven-clean-plugin:jar:2.4.1
[DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:2.0.5
[DEBUG] Excluded: org.apache.maven:maven-plugin-api:jar:2.0.6
[DEBUG] Configuring mojo
org.apache.maven.plugins:maven-clean-plugin:2.4.1:clean from plugin
realm
ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.4.1,
parent: sun.misc.Launcher$AppClassLoader@32db4c8d]
[DEBUG] Configuring mojo
'org.apache.maven.plugins:maven-clean-plugin:2.4.1:clean' with basic
configurator -->
[DEBUG] (f) directory =
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons Plug-in\target
[DEBUG] (f) excludeDefaultDirectories = false
[DEBUG] (f) failOnError = true
[DEBUG] (f) followSymLinks = false
[DEBUG] (f) outputDirectory =
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes
[DEBUG] (f) reportDirectory =
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons Plug-in\target\site
[DEBUG] (f) skip = false
[DEBUG] (f) testOutputDirectory =
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\test-classes
[DEBUG] -- end configuration --
[INFO] Deleting C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\util\ProductUtils.class
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\util\Messages.class
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\util\ImplementationLoader.class
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\util\CollectionUtils.class
[INFO] Deleting directory
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\util
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\wizard\Messages.class
[INFO] Deleting directory
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\wizard
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\viewer\TableCellRenderer.class

[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\viewer\DefaultTableCellRenderer.class

[INFO] Deleting directory
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\viewer
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\view\Messages.class
[INFO] Deleting directory
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\view
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\res\Messages.class
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\res\FileConstants.class
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\res\CommonImages.class
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\res\CommonI18N.class
[INFO] Deleting directory
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\res
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\preferences\PreferencesConstants.class

[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\preferences\Messages.class
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\preferences\CommonsPreferences.class

[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\preferences\CommonsPreferenceInitializer.class

[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\preferences\BarCodeType.class
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\preferences\BarCodePreferenceInitializer.class

[INFO] Deleting directory
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\preferences
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\preference\store\SharedPreferenceStoreException.class

[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\preference\store\SharedPersistenceProvider.class

[INFO] Deleting directory
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\preference\store
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\preference\editor\Messages.class

[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\preference\editor\ISharedFieldEditor.class

[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\preference\editor\ArrayFieldValue.class

[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\preference\editor\ArrayFieldValue$ArrayFieldItemType.class

[INFO] Deleting directory
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\preference\editor
[INFO] Deleting directory
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\preference
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\job\Messages.class
[INFO] Deleting directory
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\job
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\handler\Messages.class
[INFO] Deleting directory
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\handler
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\event\WorldEventType.class
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\event\WorldChangeListener.class

[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\event\WorldChangeEvent.class
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\event\WorldChangedSynchronizeView.class

[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\event\ModelEventType.class
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\event\ModelChangeListener.class

[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\event\ModelChangeEvent.class
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\event\AsyncEventListener.class

[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\event\AsyncEvent.class
[INFO] Deleting directory
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\event
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\editor\Messages.class
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\editor\DescriptorInput.class
[INFO] Deleting directory
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\editor
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\dialog\Messages.class
[INFO] Deleting directory
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\dialog
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\control\Messages.class
[INFO] Deleting directory
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\control
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\composite\Messages.class
[INFO] Deleting directory
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\composite
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\action\Messages.class
[INFO] Deleting directory
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui\action
[INFO] Deleting directory
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\ui
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\runtime\status\ui\Messages.class
[INFO] Deleting directory
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\runtime\status\ui
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\runtime\status\Messages.class
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\runtime\status\IStatusNotificationManager.class

[INFO] Deleting directory
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\runtime\status
[INFO] Deleting directory
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\runtime
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\model\tree\MutableTreeNode.class
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\model\tree\Messages.class
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\model\tree\DefaultMutableTreeNode.class

[INFO] Deleting directory
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\model\tree
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\model\table\TableModel.class
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\model\table\RefreshListener.class

[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\model\table\RefreshInformation.class

[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\model\table\RefreshInformation$Extra.class

[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\model\table\PagedTableModel.class

[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\model\table\DefaultTableModel.class

[INFO] Deleting directory
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\model\table
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\model\RefreshableModel.class
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\model\ObservableModel.class
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\model\Decorateable.class
[INFO] Deleting directory
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\model
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\impex\RecordExportConfiguration.class

[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\impex\RecordExportConfiguration$Format.class

[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\impex\RecordExportConfiguration$Column.class

[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\impex\RecordExportConfiguration$Column$Type.class

[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\impex\RecordExportConfiguration$Column$EnumValue.class

[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\impex\Messages.class
[INFO] Deleting directory
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\impex
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\handling\error\Messages.class
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\handling\error\InputErrorValidation.class

[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\handling\error\InputErrorType.class

[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\handling\error\InputError.class
[INFO] Deleting directory
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\handling\error
[INFO] Deleting directory
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\handling
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\extensionpoint\SharedPreferenceExtensionPoint.class

[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\extensionpoint\SharedPreferenceExtensionPoint$PreferencePageExtension.class

[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\extensionpoint\SharedPreferenceExtensionPoint$PersistenceProviderExtension.class

[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\extensionpoint\DialogSettingsExtensionPoint.class

[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\extensionpoint\DialogSettingsExtensionPoint$ApplicationSettingsExtension.class

[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\extensionpoint\AbstractExtensionPoint.class

[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\extensionpoint\AbstractExtensionElement.class

[INFO] Deleting directory
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\extensionpoint
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\databinding\Messages.class
[INFO] Deleting directory
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\databinding
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\common\Messages.class
[INFO] Deleting file
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\common\EditorRegistry.class
[INFO] Deleting directory
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp\common
[INFO] Deleting directory
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype\rcp
[INFO] Deleting directory
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com\qualitype
[INFO] Deleting directory
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes\com
[INFO] Deleting directory
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes
[INFO] Deleting directory
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons Plug-in\target
[DEBUG] Skipping non-existing directory
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes
[DEBUG] Skipping non-existing directory
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\test-classes
[DEBUG] Skipping non-existing directory
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons Plug-in\target\site
[INFO]
[INFO] --- tycho-packaging-plugin:0.14.1:build-qualifier
(default-build-qualifier) @ com.qualitype.rcp.commons ---
[DEBUG] org.eclipse.tycho:tycho-packaging-plugin:jar:0.14.1:
[DEBUG] org.eclipse.tycho:tycho-core:jar:0.14.1:compile
[DEBUG] org.eclipse.tycho:sisu-equinox-embedder:jar:0.14.1:compile
[DEBUG] org.eclipse.tycho:sisu-equinox-api:jar:0.14.1:compile
[DEBUG] org.eclipse.tycho:tycho-metadata-model:jar:0.14.1:compile
[DEBUG] de.pdark:decentxml:jar:1.3:compile
[DEBUG] org.eclipse.tycho:tycho-embedder-api:jar:0.14.1:compile
[DEBUG]
org.eclipse.tycho:org.eclipse.tycho.embedder.shared:jar:0.14.1:compile
[DEBUG]
org.eclipse.tycho:org.eclipse.tycho.core.shared:jar:0.14.1:compile
[DEBUG] org.apache.maven:maven-core:jar:3.0:compile
[DEBUG] org.apache.maven:maven-model: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-artifact: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.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.codehaus.plexus:plexus-interpolation:jar:1.14:compile
[DEBUG] org.codehaus.plexus:plexus-classworlds:jar:2.2.3:compile
[DEBUG]
org.codehaus.plexus:plexus-component-annotations:jar:1.5.5: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-plugin-api:jar:3.0:compile
[DEBUG] org.codehaus.plexus:plexus-utils:jar:2.0.4:compile
[DEBUG]
org.eclipse.tycho:org.eclipse.osgi:jar:3.8.0.v20120123-1419:compile
[DEBUG] org.apache.maven:maven-archiver:jar:2.4:compile
[DEBUG] org.codehaus.plexus:plexus-archiver:jar:1.2:compile
[DEBUG] org.codehaus.plexus:plexus-io:jar:1.0.1:compile
[DEBUG] Created new class realm
plugin>org.eclipse.tycho:tycho-packaging-plugin:0.14.1
[DEBUG] Importing foreign packages into class realm
plugin>org.eclipse.tycho:tycho-packaging-plugin:0.14.1
[DEBUG] Imported: <
project>com.qualitype.rcp:com.qualitype.rcp.commons:4.0.0-SNAPSHOT
[DEBUG] Populating class realm
plugin>org.eclipse.tycho:tycho-packaging-plugin:0.14.1
[DEBUG] Included: org.eclipse.tycho:tycho-packaging-plugin:jar:0.14.1
[DEBUG] Included: org.sonatype.aether:aether-util:jar:1.7
[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.codehaus.plexus:plexus-interpolation:jar:1.14
[DEBUG] Included:
org.codehaus.plexus:plexus-component-annotations:jar:1.5.5
[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:2.0.4
[DEBUG] Included: org.apache.maven:maven-archiver:jar:2.4
[DEBUG] Included: org.codehaus.plexus:plexus-archiver:jar:1.2
[DEBUG] Included: org.codehaus.plexus:plexus-io:jar:1.0.1
[DEBUG] Excluded: org.eclipse.tycho:tycho-core:jar:0.14.1
[DEBUG] Excluded: org.eclipse.tycho:sisu-equinox-embedder:jar:0.14.1
[DEBUG] Excluded: org.eclipse.tycho:sisu-equinox-api:jar:0.14.1
[DEBUG] Excluded: org.eclipse.tycho:tycho-metadata-model:jar:0.14.1
[DEBUG] Excluded: de.pdark:decentxml:jar:1.3
[DEBUG] Excluded: org.eclipse.tycho:tycho-embedder-api:jar:0.14.1
[DEBUG] Excluded:
org.eclipse.tycho:org.eclipse.tycho.embedder.shared:jar:0.14.1
[DEBUG] Excluded:
org.eclipse.tycho:org.eclipse.tycho.core.shared:jar:0.14.1
[DEBUG] Excluded: org.apache.maven:maven-core:jar:3.0
[DEBUG] Excluded: org.apache.maven:maven-model:jar:3.0
[DEBUG] Excluded: org.apache.maven:maven-settings:jar:3.0
[DEBUG] Excluded: org.apache.maven:maven-settings-builder:jar:3.0
[DEBUG] Excluded: org.apache.maven:maven-repository-metadata:jar:3.0
[DEBUG] Excluded: org.apache.maven:maven-artifact:jar:3.0
[DEBUG] Excluded: org.apache.maven:maven-model-builder:jar:3.0
[DEBUG] Excluded: org.apache.maven:maven-aether-provider:jar:3.0
[DEBUG] Excluded: org.sonatype.aether:aether-impl:jar:1.7
[DEBUG] Excluded: org.sonatype.aether:aether-spi:jar:1.7
[DEBUG] Excluded: org.sonatype.aether:aether-api:jar:1.7
[DEBUG] Excluded: org.sonatype.sisu:sisu-inject-plexus:jar:1.4.2
[DEBUG] Excluded: org.codehaus.plexus:plexus-classworlds:jar:2.2.3
[DEBUG] Excluded: org.apache.maven:maven-plugin-api:jar:3.0
[DEBUG] Excluded:
org.eclipse.tycho:org.eclipse.osgi:jar:3.8.0.v20120123-1419
[DEBUG] Configuring mojo
org.eclipse.tycho:tycho-packaging-plugin:0.14.1:build-qualifier from
plugin realm
ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:0.14.1,
parent: sun.misc.Launcher$AppClassLoader@32db4c8d]
[DEBUG] Configuring mojo
'org.eclipse.tycho:tycho-packaging-plugin:0.14.1:build-qualifier' with
basic configurator -->
[DEBUG] (f) baseDir =
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons Plug-in
[DEBUG] (s) format = yyyyMMddHHmm
[DEBUG] (f) packaging = eclipse-plugin
[DEBUG] (f) project = MavenProject:
com.qualitype.rcp:com.qualitype.rcp.commons:4.0.0-SNAPSHOT @
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons Plug-in\pom.xml
[DEBUG] (f) session = org.apache.maven.execution.MavenSession@6ddda79e
[DEBUG] -- end configuration --
[INFO]
[INFO] --- tycho-packaging-plugin:0.14.1:validate-id
(default-validate-id) @ com.qualitype.rcp.commons ---
[DEBUG] Configuring mojo
org.eclipse.tycho:tycho-packaging-plugin:0.14.1:validate-id from
plugin realm
ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:0.14.1,
parent: sun.misc.Launcher$AppClassLoader@32db4c8d]
[DEBUG] Configuring mojo
'org.eclipse.tycho:tycho-packaging-plugin:0.14.1:validate-id' with
basic configurator -->
[DEBUG] (f) packaging = eclipse-plugin
[DEBUG] (f) project = MavenProject:
com.qualitype.rcp:com.qualitype.rcp.commons:4.0.0-SNAPSHOT @
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons Plug-in\pom.xml
[DEBUG] -- end configuration --
[INFO]
[INFO] --- tycho-packaging-plugin:0.14.1:validate-version
(default-validate-version) @ com.qualitype.rcp.commons ---
[DEBUG] Configuring mojo
org.eclipse.tycho:tycho-packaging-plugin:0.14.1:validate-version from
plugin realm
ClassRealm[plugin>org.eclipse.tycho:tycho-packaging-plugin:0.14.1,
parent: sun.misc.Launcher$AppClassLoader@32db4c8d]
[DEBUG] Configuring mojo
'org.eclipse.tycho:tycho-packaging-plugin:0.14.1:validate-version'
with basic configurator -->
[DEBUG] (f) packaging = eclipse-plugin
[DEBUG] (f) project = MavenProject:
com.qualitype.rcp:com.qualitype.rcp.commons:4.0.0-SNAPSHOT @
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons Plug-in\pom.xml
[DEBUG] (f) strictVersions = true
[DEBUG] -- end configuration --
[INFO]
[INFO] --- maven-resources-plugin:2.4.3:resources (default-resources)
@ com.qualitype.rcp.commons ---
[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>com.qualitype.rcp:com.qualitype.rcp.commons:4.0.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] Excluded: org.apache.maven:maven-plugin-api:jar:2.0.6
[DEBUG] Excluded: org.apache.maven:maven-project:jar:2.0.6
[DEBUG] Excluded: org.apache.maven:maven-profile:jar:2.0.6
[DEBUG] Excluded: org.apache.maven:maven-artifact-manager:jar:2.0.6
[DEBUG] Excluded: org.apache.maven:maven-plugin-registry:jar:2.0.6
[DEBUG] Excluded: org.apache.maven:maven-core:jar:2.0.6
[DEBUG] Excluded:
org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.6
[DEBUG] Excluded: org.apache.maven:maven-repository-metadata:jar:2.0.6
[DEBUG] Excluded: org.apache.maven:maven-error-diagnostics:jar:2.0.6
[DEBUG] Excluded: org.apache.maven:maven-plugin-descriptor:jar:2.0.6
[DEBUG] Excluded: classworlds:classworlds:jar:1.1
[DEBUG] Excluded: org.apache.maven:maven-artifact:jar:2.0.6
[DEBUG] Excluded: org.apache.maven:maven-settings:jar:2.0.6
[DEBUG] Excluded: org.apache.maven:maven-model:jar:2.0.6
[DEBUG] Excluded: org.apache.maven:maven-monitor:jar:2.0.6
[DEBUG] Excluded:
org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1
[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: sun.misc.Launcher$AppClassLoader@32db4c8d]
[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:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes
[DEBUG] (s) overwrite = false
[DEBUG] (f) project = MavenProject:
com.qualitype.rcp:com.qualitype.rcp.commons:4.0.0-SNAPSHOT @
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons Plug-in\pom.xml
[DEBUG] (s) resources = [Resource {targetPath: null, filtering: false,
FileSet {directory:
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\src\main\resources, PatternSet [includes: {}, excludes: {}]}}]
[DEBUG] (f) session = org.apache.maven.execution.MavenSession@6ddda79e
[DEBUG] (f) useBuildFilters = true
[DEBUG] (s) useDefaultDelimiters = true
[DEBUG] -- end configuration --
[DEBUG] properties used {java.vendor=Oracle Corporation,
env.SYSTEMROOT=C:\Windows, sun.java.launcher=SUN_STANDARD,
sun.management.compiler=HotSpot 64-Bit Tiered Compilers,
env.PROMPT=$P$G, os.name=Windows 7, env.FP_NO_HOST_CHECK=NO,
sun.boot.class.path=C:\Program
Files\Java\jdk1.7.0_02\jre\lib\resources.jar;C:\Program
Files\Java\jdk1.7.0_02\jre\lib\rt.jar;C:\Program
Files\Java\jdk1.7.0_02\jre\lib\sunrsasign.jar;C:\Program
Files\Java\jdk1.7.0_02\jre\lib\jsse.jar;C:\Program
Files\Java\jdk1.7.0_02\jre\lib\jce.jar;C:\Program
Files\Java\jdk1.7.0_02\jre\lib\charsets.jar;C:\Program
Files\Java\jdk1.7.0_02\jre\classes, env.COMPUTERNAME=QT-PC-37,
unqualifiedVersion=4.0.0, env.ALLUSERSPROFILE=C:\ProgramData,
sun.desktop=windows, java.vm.specification.vendor=Oracle Corporation,
java.runtime.version=1.7.0_02-b13, env.HOMEPATH=\,
project.build.sourceEncoding=UTF-8,
env.HOMESHARE=\\srv03\share\home\MirkoSwillus, user.name=mirkos,
maven.build.version=Apache Maven 3.0.4 (r1232337; 2012-01-
17 09:4
4:56+0100), target-classifier=indigo, env.PATH=C:\Program
Files\Java\jdk1.7.0_02\jre\bin;C:\Program Files (x86)\AMD
APP\bin\x86_64;C:\Program Files (x86)\AMD APP\bin\x86;C:\Program
Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files
(x86)\Common Files\Microsoft Shared\Windows
Live;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;c:\Program
Files (x86)\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files
(x86)\Windows Live\Shared;C:\Program Files (x86)\Common Files\Roxio
Shared\OEM\DLLShared\;C:\Program Files (x86)\Common Files\Roxio
Shared\OEM\DLLShared\;C:\Program Files (x86)\Common Files\Roxio
Shared\OEM\12.0\DLLShared\;C:\Program Files
(x86)\Roxio\OEM\AudioCore\;C:\Program Files\SlikSvn\bin\;C:\Program
Files\Java\jdk1.6.0_30\jre\bin, user.language=de, env.WINDIR=C:\Windows,
sun.boot.library.path=C:\Program Files\Java\jdk1.7.0_02\jre\bin,
classworlds.conf=C:\Users\mirkos\workspaces\commonsPluginTycho\.metadat
a\.plugi
ns\org.eclipse.m2e.core\launches\m2conf3797472506983213082.tmp,
java.version=1.7.0_02, env.PROCESSOR_IDENTIFIER=Intel64 Family 6 Model
42 Stepping 7, GenuineIntel, user.timezone=Europe/Berlin,
env.TEMP=C:\Users\mirkos\AppData\Local\Temp, sun.arch.data.model=64,
java.endorsed.dirs=C:\Program Files\Java\jdk1.7.0_02\jre\lib\endorsed,
buildQualifier=201203091208, sun.cpu.isalist=amd64, env.HOMEDRIVE=H:,
sun.jnu.encoding=Cp1252, file.encoding.pkg=sun.io, env.SYSTEMDRIVE=C:,
tycho-version=0.14.1, file.separator=\, java.specification.name=Java
Platform API Specification, java.class.version=51.0, user.country=DE,
java.home=C:\Program Files\Java\jdk1.7.0_02\jre,
env.APPDATA=C:\Users\mirkos\AppData\Roaming, env.PUBLIC=C:\Users\Public,
java.vm.info=mixed mode, env.OS=Windows_NT, os.version=6.1,
env.AMDAPPSDKROOT=C:\Program Files (x86)\AMD APP\, path.separator=;,
java.vm.version=22.0-b10, env.USERPROFILE=C:\Users\mirkos,
user.variant=, env.JAVA_HOME=C:\Program Files\Java\jdk1.6.0_30, jav
a.awt.pr
interjob=sun.awt.windows.WPrinterJob,
env.TMP=C:\Users\mirkos\AppData\Local\Temp, env.PROGRAMFILES=C:\Program
Files, sun.io.unicode.encoding=UnicodeLittle,
awt.toolkit=sun.awt.windows.WToolkit, user.script=,
user.home=C:\Users\mirkos, env.COMMONPROGRAMFILES=C:\Program
Files\Common Files, env.SESSIONNAME=Console,
java.specification.vendor=Oracle Corporation,
env.NUMBER_OF_PROCESSORS=4, java.library.path=C:\Program
Files\Java\jdk1.7.0_02\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\Program
Files\Java\jdk1.7.0_02\jre\bin;C:\Program Files (x86)\AMD
APP\bin\x86_64;C:\Program Files (x86)\AMD APP\bin\x86;C:\Program
Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files
(x86)\Common Files\Microsoft Shared\Windows
Live;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;c:\Program
Files (x86)\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files
(x86)\Windows Live\Shared;C:\Program Files (x86)\Common Files\Rox
io Share
d\OEM\DLLShared\;C:\Program Files (x86)\Common Files\Roxio
Shared\OEM\DLLShared\;C:\Program Files (x86)\Common Files\Roxio
Shared\OEM\12.0\DLLShared\;C:\Program Files
(x86)\Roxio\OEM\AudioCore\;C:\Program Files\SlikSvn\bin\;C:\Program
Files\Java\jdk1.6.0_30\jre\bin;.,
java.vendor.url=http://java.oracle.com/,
env.COMMONPROGRAMFILES(X86)=C:\Program Files (x86)\Common Files,
env.USERDNSDOMAIN=DRESDEN.LOCAL,
env.PSMODULEPATH=C:\Windows\system32\WindowsPowerShell\v1.0\Modules\,
java.vm.vendor=Oracle Corporation, maven.home=C:\Program Files
(x86)\apache-maven-3.0.4, java.runtime.name=Java(TM) SE Runtime
Environment,
sun.java.command=org.codehaus.plexus.classworlds.launcher.Launcher -B -X
-e -s C:\Users\mirkos\.m2\settings.xml clean install,
java.class.path=C:\Program Files
(x86)\apache-maven-3.0.4\boot\plexus-classworlds-2.4.jar,
env.PROGRAMW6432=C:\Program Files, maven.version=3.0.4,
env.PROGRAMFILES(X86)=C:\Program Files (x86),
java.vm.specification.name=Java Virtual Machine Spec
ificatio
n, env.LOGONSERVER=\\PDC01, java.vm.specification.version=1.7,
env.PROCESSOR_ARCHITECTURE=AMD64, env.COMMONPROGRAMW6432=C:\Program
Files\Common Files, sun.cpu.endian=little, sun.os.patch.level=Service
Pack 1, env.HOME=C:\Users\mirkos, env.PROCESSOR_REVISION=2a07,
java.io.tmpdir=C:\Users\mirkos\AppData\Local\Temp\,
java.vendor.url.bug=http://bugreport.sun.com/bugreport/,
env.PROGRAMDATA=C:\ProgramData, env.COMSPEC=C:\Windows\system32\cmd.exe,
os.arch=amd64, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment,
java.ext.dirs=C:\Program
Files\Java\jdk1.7.0_02\jre\lib\ext;C:\Windows\Sun\Java\lib\ext,
env.LOCALAPPDATA=C:\Users\mirkos\AppData\Local,
user.dir=C:\Users\mirkos\workspaces\commonsPluginTycho\Commons Plug-in,
line.separator=
, java.vm.name=Java HotSpot(TM) 64-Bit Server VM,
env.PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC,
env.USERNAME=mirkos, file.encoding=Cp1252, env.USERDOMAIN=DRESDEN,
java.specification.version=1.7, env.PROCESSOR_LEVEL=6}
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[DEBUG] resource with targetPath null
directory C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\src\main\resources
excludes []
includes []
[INFO] skip non existing resourceDirectory
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\src\main\resources
[INFO]
[INFO] --- tycho-compiler-plugin:0.14.1:compile (default-compile) @
com.qualitype.rcp.commons ---
[DEBUG] org.eclipse.tycho:tycho-compiler-plugin:jar:0.14.1:
[DEBUG] org.apache.maven:maven-plugin-api:jar:3.0:compile
[DEBUG] org.apache.maven:maven-model:jar:3.0:compile
[DEBUG] org.apache.maven:maven-artifact:jar:3.0:compile
[DEBUG] org.sonatype.sisu:sisu-inject-plexus:jar:1.4.2:compile
[DEBUG] org.codehaus.plexus:plexus-classworlds:jar:2.2.3: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-compat:jar:3.0:compile
[DEBUG] org.apache.maven:maven-model-builder:jar:3.0:compile
[DEBUG] org.apache.maven:maven-settings:jar:3.0:compile
[DEBUG] org.apache.maven:maven-core: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-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.sonatype.plexus:plexus-sec-dispatcher:jar:1.3:compile
[DEBUG] org.sonatype.plexus:plexus-cipher:jar:1.4:compile
[DEBUG] org.codehaus.plexus:plexus-interpolation:jar:1.14:compile
[DEBUG]
org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile
[DEBUG] org.apache.maven.wagon:wagon-provider-api:jar:1.0-beta-6:compile
[DEBUG] org.codehaus.plexus:plexus-utils:jar:2.0.4:compile
[DEBUG] org.codehaus.plexus:plexus-compiler-manager:jar:1.6:compile
[DEBUG]
org.eclipse.tycho:org.eclipse.osgi:jar:3.8.0.v20120123-1419:compile
[DEBUG] org.codehaus.plexus:plexus-compiler-api:jar:1.6:compile
[DEBUG] org.eclipse.tycho:tycho-core:jar:0.14.1:compile
[DEBUG] org.codehaus.plexus:plexus-archiver:jar:1.2:compile
[DEBUG] org.codehaus.plexus:plexus-io:jar:1.0.1:compile
[DEBUG] org.eclipse.tycho:sisu-equinox-embedder:jar:0.14.1:compile
[DEBUG] org.eclipse.tycho:sisu-equinox-api:jar:0.14.1:compile
[DEBUG] org.eclipse.tycho:tycho-metadata-model:jar:0.14.1:compile
[DEBUG] de.pdark:decentxml:jar:1.3:compile
[DEBUG] org.eclipse.tycho:tycho-embedder-api:jar:0.14.1:compile
[DEBUG]
org.eclipse.tycho:org.eclipse.tycho.embedder.shared:jar:0.14.1:compile
[DEBUG]
org.eclipse.tycho:org.eclipse.tycho.core.shared:jar:0.14.1:compile
[DEBUG] org.eclipse.tycho:tycho-compiler-jdt:jar:0.14.1:compile
[DEBUG]
org.eclipse.tycho:org.eclipse.jdt.core:jar:3.8.1.v20120125-1544:compile
[DEBUG] Created new class realm
plugin>org.eclipse.tycho:tycho-compiler-plugin:0.14.1
[DEBUG] Importing foreign packages into class realm
plugin>org.eclipse.tycho:tycho-compiler-plugin:0.14.1
[DEBUG] Imported: <
project>com.qualitype.rcp:com.qualitype.rcp.commons:4.0.0-SNAPSHOT
[DEBUG] Populating class realm
plugin>org.eclipse.tycho:tycho-compiler-plugin:0.14.1
[DEBUG] Included: org.eclipse.tycho:tycho-compiler-plugin:jar:0.14.1
[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.sonatype.plexus:plexus-sec-dispatcher:jar:1.3
[DEBUG] Included: org.sonatype.plexus:plexus-cipher:jar:1.4
[DEBUG] Included: org.codehaus.plexus:plexus-interpolation:jar:1.14
[DEBUG] Included:
org.codehaus.plexus:plexus-component-annotations:jar:1.5.5
[DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:2.0.4
[DEBUG] Included: org.codehaus.plexus:plexus-compiler-manager:jar:1.6
[DEBUG] Included: org.codehaus.plexus:plexus-compiler-api:jar:1.6
[DEBUG] Included: org.codehaus.plexus:plexus-archiver:jar:1.2
[DEBUG] Included: org.codehaus.plexus:plexus-io:jar:1.0.1
[DEBUG] Included: org.eclipse.tycho:tycho-compiler-jdt:jar:0.14.1
[DEBUG] Included:
org.eclipse.tycho:org.eclipse.jdt.core:jar:3.8.1.v20120125-1544
[DEBUG] Excluded: org.apache.maven:maven-plugin-api:jar:3.0
[DEBUG] Excluded: org.apache.maven:maven-model:jar:3.0
[DEBUG] Excluded: org.apache.maven:maven-artifact:jar:3.0
[DEBUG] Excluded: org.sonatype.sisu:sisu-inject-plexus:jar:1.4.2
[DEBUG] Excluded: org.codehaus.plexus:plexus-classworlds:jar:2.2.3
[DEBUG] Excluded: org.apache.maven:maven-compat:jar:3.0
[DEBUG] Excluded: org.apache.maven:maven-model-builder:jar:3.0
[DEBUG] Excluded: org.apache.maven:maven-settings:jar:3.0
[DEBUG] Excluded: org.apache.maven:maven-core:jar:3.0
[DEBUG] Excluded: org.apache.maven:maven-settings-builder:jar:3.0
[DEBUG] Excluded: org.apache.maven:maven-repository-metadata:jar:3.0
[DEBUG] Excluded: org.apache.maven:maven-aether-provider:jar:3.0
[DEBUG] Excluded: org.sonatype.aether:aether-impl:jar:1.7
[DEBUG] Excluded: org.sonatype.aether:aether-spi:jar:1.7
[DEBUG] Excluded: org.sonatype.aether:aether-api:jar:1.7
[DEBUG] Excluded:
org.apache.maven.wagon:wagon-provider-api:jar:1.0-beta-6
[DEBUG] Excluded:
org.eclipse.tycho:org.eclipse.osgi:jar:3.8.0.v20120123-1419
[DEBUG] Excluded: org.eclipse.tycho:tycho-core:jar:0.14.1
[DEBUG] Excluded: org.eclipse.tycho:sisu-equinox-embedder:jar:0.14.1
[DEBUG] Excluded: org.eclipse.tycho:sisu-equinox-api:jar:0.14.1
[DEBUG] Excluded: org.eclipse.tycho:tycho-metadata-model:jar:0.14.1
[DEBUG] Excluded: de.pdark:decentxml:jar:1.3
[DEBUG] Excluded: org.eclipse.tycho:tycho-embedder-api:jar:0.14.1
[DEBUG] Excluded:
org.eclipse.tycho:org.eclipse.tycho.embedder.shared:jar:0.14.1
[DEBUG] Excluded:
org.eclipse.tycho:org.eclipse.tycho.core.shared:jar:0.14.1
[DEBUG] Configuring mojo
org.eclipse.tycho:tycho-compiler-plugin:0.14.1:compile from plugin
realm
ClassRealm[plugin>org.eclipse.tycho:tycho-compiler-plugin:0.14.1,
parent: sun.misc.Launcher$AppClassLoader@32db4c8d]
[DEBUG] Configuring mojo
'org.eclipse.tycho:tycho-compiler-plugin:0.14.1:compile' with basic
configurator -->
[DEBUG] (f) basedir =
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons Plug-in
[DEBUG] (f) buildDirectory =
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons Plug-in\target
[DEBUG] (f) compilerId = jdt
[DEBUG] (f) debug = true
[DEBUG] (f) fork = false
[DEBUG] (f) optimize = false
[DEBUG] (f) outputFileName = com.qualitype.rcp.commons-4.0.0-SNAPSHOT
[DEBUG] (f) project = MavenProject:
com.qualitype.rcp:com.qualitype.rcp.commons:4.0.0-SNAPSHOT @
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons Plug-in\pom.xml
[DEBUG] (f) session = org.apache.maven.execution.MavenSession@6ddda79e
[DEBUG] (f) showDeprecation = false
[DEBUG] (f) showWarnings = false
[DEBUG] (f) staleMillis = 0
[DEBUG] (f) useJDK = SYSTEM
[DEBUG] (f) verbose = false
[DEBUG] -- end configuration --
[DEBUG] Using compiler 'jdt'.
[DEBUG] Source directories:
[C:\Users\mirkos\workspaces\commonsPluginTycho\Commons Plug-in\src]
[DEBUG] Classpath:
[C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes
C:\Users\mirkos\.m2\repository\p2\osgi\bundle\org.eclipse.core.runtime\3.7.0.v20110110\org.eclipse.core.runtime-3.7.0.v20110110.jar[~org/eclipse/core/internal/preferences/legacy/*;~org/eclipse/core/internal/runtime/*;+org/eclipse/core/runtime/*;?**/*]

C:\Users\mirkos\.m2\repository\p2\osgi\bundle\org.eclipse.osgi\3.7.1.R37x_v20110808-1106\org.eclipse.osgi-3.7.1.R37x_v20110808-1106.jar[+org/eclipse/osgi/event/*;+org/eclipse/osgi/framework/console/*;+org/eclipse/osgi/framework/eventmgr/*;+org/eclipse/osgi/framework/log/*;+org/eclipse/osgi/launch/*;+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/storagemanager/*;+org/eclipse/osgi/util/*;+org/eclipse/equinox/log/*;+org/osgi/framework/*;+org/osgi/framework/launch/*;+org/osgi/framework/hooks/bundle/*;+org/osgi/framework/hooks/resolver/*;+org/osgi/framework/hooks/service/*;+org/osgi/framework/hooks/weaving/*;+org/osgi/framewo

rk/star
tlevel/*;+org/osgi/framework/wiring/*;+org/osgi/service/condpermadmin/*;~org/osgi/service/framework/*;+org/osgi/service/log/*;+org/osgi/service/packageadmin/*;+org/osgi/service/permissionadmin/*;+org/osgi/service/startlevel/*;+org/osgi/service/url/*;+org/osgi/util/tracker/*;~org/eclipse/core/runtime/adaptor/*;~org/eclipse/core/runtime/internal/adaptor/*;~org/eclipse/core/runtime/internal/stats/*;~org/eclipse/osgi/baseadaptor/*;~org/eclipse/osgi/baseadaptor/bundlefile/*;~org/eclipse/osgi/baseadaptor/hooks/*;~org/eclipse/osgi/baseadaptor/loader/*;~org/eclipse/osgi/framework/adaptor/*;~org/eclipse/osgi/framework/debug/*;~org/eclipse/osgi/framework/internal/core/*;~org/eclipse/osgi/framework/internal/protocol/*;~org/eclipse/osgi/framework/internal/protocol/bundleentry/*;~org/eclipse/osgi/framework/internal/protocol/bundleresource/*;~org/eclipse/osgi/framework/internal/protocol/reference/*;~org/eclipse/osgi/framework/internal/reliablefile/*;~org/eclipse/osgi/framework/util/*;~or
g/

eclipse/
osgi/internal/baseadaptor/*;~org/eclipse/osgi/internal/composite/*;~org/eclipse/osgi/internal/loader/*;~org/eclipse/osgi/internal/loader/buddy/*;~org/eclipse/osgi/internal/module/*;~org/eclipse/osgi/internal/profile/*;~org/eclipse/osgi/internal/resolver/*;~org/eclipse/osgi/internal/serviceregistry/*;~org/eclipse/osgi/internal/permadmin/*;~org/eclipse/osgi/internal/provisional/service/security/*;~org/eclipse/osgi/internal/provisional/verifier/*;~org/eclipse/osgi/internal/service/security/*;~org/eclipse/osgi/internal/signedcontent/*;~org/eclipse/osgi/service/internal/composite/*;~org/eclipse/equinox/log/internal/*;?**/*]

C:\Users\mirkos\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.common\3.6.0.v20110523\org.eclipse.equinox.common-3.6.0.v20110523.jar[~org/eclipse/core/internal/boot/*;~org/eclipse/core/internal/runtime/*;+org/eclipse/core/runtime/*;+org/eclipse/equinox/events/*;?**/*]

C:\Users\mirkos\.m2\repository\p2\osgi\bundle\org.eclipse.core.jobs\3.5.100.v20110404\org.eclipse.core.jobs-3.5.100.v20110404.jar[~org/eclipse/core/internal/jobs/*;+org/eclipse/core/runtime/jobs/*;?**/*]

C:\Users\mirkos\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.registry\3.5.101.R37x_v20110810-1611\org.eclipse.equinox.registry-3.5.101.R37x_v20110810-1611.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\mirkos\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.preferences\3.4.1.R37x_v20110725\org.eclipse.equinox.preferences-3.4.1.R37x_v20110725.jar[~org/eclipse/core/internal/preferences/*;~org/eclipse/core/internal/preferences/exchange/*;+org/eclipse/core/runtime/preferences/*;+org/osgi/service/prefs/*;?**/*]

C:\Users\mirkos\.m2\repository\p2\osgi\bundle\org.eclipse.core.contenttype\3.4.100.v20110423-0524\org.eclipse.core.contenttype-3.4.100.v20110423-0524.jar[~org/eclipse/core/internal/content/*;+org/eclipse/core/runtime/content/*;?**/*]

C:\Users\mirkos\.m2\repository\p2\osgi\bundle\org.eclipse.core.runtime.compatibility.auth\3.2.200.v20110110\org.eclipse.core.runtime.compatibility.auth-3.2.200.v20110110.jar[?**/*]

C:\Users\mirkos\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.app\1.3.100.v20110321\org.eclipse.equinox.app-1.3.100.v20110321.jar[+org/eclipse/equinox/app/*;~org/eclipse/equinox/internal/app/*;+org/osgi/service/application/*;?**/*]

C:\Users\mirkos\.m2\repository\p2\osgi\bundle\org.eclipse.core.expressions\3.4.300.v20110228\org.eclipse.core.expressions-3.4.300.v20110228.jar[+org/eclipse/core/expressions/*;~org/eclipse/core/internal/expressions/*;~org/eclipse/core/internal/expressions/propertytester/*;~org/eclipse/core/internal/expressions/util/*;?**/*]

C:\Users\mirkos\.m2\repository\p2\osgi\bundle\com.qualitype.commons.qtcommons\5.1.1.SNAPSHOT\com.qualitype.commons.qtcommons-5.1.1.SNAPSHOT.jar[+com/qualitype/commons/query/*;+com/qualitype/commons/i18n/*;+com/qualitype/commons/math/*;+com/qualitype/commons/swing/action/*;+com/qualitype/commons/swing/renderer/*;+com/qualitype/commons/qtd/binding/*;+com/qualitype/commons/qtd/*;+com/qualitype/commons/sort/*;+com/qualitype/commons/swing/dialog/*;+com/qualitype/commons/*;+com/qualitype/commons/exception/*;+com/qualitype/commons/primitives/*;+com/qualitype/commons/swing/editor/*;+com/qualitype/commons/sql/*;+com/qualitype/commons/print/*;+com/qualitype/commons/xml/*;+com/qualitype/commons/text/*;+com/qualitype/commons/swing/*;+com/qualitype/commons/param/*;+com/qualitype/commons/csv/*;+com/qualitype/commons/swing/ribbon/*;+com/qualitype/commons/persistence/*;+com/qualitype/commons/security/*;+com/qualitype/commons/cryptography/*;+com/qualitype/commons/barcode/*;+com/qualitype/c

ommons/
reflect/*;+com/qualitype/commons/io/*;+com/qualitype/commons/swing/input/*;+com/qualitype/commons/swing/model/*;?**/*]

C:\Users\mirkos\.m2\repository\p2\osgi\bundle\org.apache.commons.beanutils\1.8.3\org.apache.commons.beanutils-1.8.3.jar[+org/apache/commons/beanutils/locale/converters/*;+org/apache/commons/beanutils/*;+org/apache/commons/beanutils/converters/*;+org/apache/commons/beanutils/expression/*;+org/apache/commons/beanutils/locale/*;?**/*]

C:\Users\mirkos\.m2\repository\p2\osgi\bundle\org.apache.commons.codec\1.6.0\org.apache.commons.codec-1.6.0.jar[+org/apache/commons/codec/*;+org/apache/commons/codec/net/*;+org/apache/commons/codec/language/bm/*;+org/apache/commons/codec/language/*;+org/apache/commons/codec/digest/*;+org/apache/commons/codec/binary/*;?**/*]

C:\Users\mirkos\.m2\repository\p2\osgi\bundle\org.apache.commons.collections\3.2.1\org.apache.commons.collections-3.2.1.jar[+org/apache/commons/collections/map/*;+org/apache/commons/collections/buffer/*;+org/apache/commons/collections/comparators/*;+org/apache/commons/collections/collection/*;+org/apache/commons/collections/bag/*;+org/apache/commons/collections/iterators/*;+org/apache/commons/collections/bidimap/*;+org/apache/commons/collections/set/*;+org/apache/commons/collections/functors/*;+org/apache/commons/collections/list/*;+org/apache/commons/collections/keyvalue/*;+org/apache/commons/collections/*;?**/*]

C:\Users\mirkos\.m2\repository\p2\osgi\bundle\org.apache.commons.io\2.1.0\org.apache.commons.io-2.1.0.jar[+org/apache/commons/io/output/*;+org/apache/commons/io/monitor/*;+org/apache/commons/io/filefilter/*;+org/apache/commons/io/comparator/*;+org/apache/commons/io/input/*;+org/apache/commons/io/*;?**/*]

C:\Users\mirkos\.m2\repository\p2\osgi\bundle\org.apache.commons.lang3\3.1.0\org.apache.commons.lang3-3.1.0.jar[+org/apache/commons/lang3/event/*;+org/apache/commons/lang3/mutable/*;+org/apache/commons/lang3/tuple/*;+org/apache/commons/lang3/time/*;+org/apache/commons/lang3/concurrent/*;+org/apache/commons/lang3/text/translate/*;+org/apache/commons/lang3/text/*;+org/apache/commons/lang3/math/*;+org/apache/commons/lang3/*;+org/apache/commons/lang3/exception/*;+org/apache/commons/lang3/reflect/*;+org/apache/commons/lang3/builder/*;?**/*]

C:\Users\mirkos\.m2\repository\p2\osgi\bundle\org.apache.commons.math\2.2.0\org.apache.commons.math-2.2.0.jar[+org/apache/commons/math/analysis/interpolation/*;+org/apache/commons/math/dfp/*;+org/apache/commons/math/special/*;+org/apache/commons/math/util/*;+org/apache/commons/math/analysis/*;+org/apache/commons/math/stat/descriptive/*;+org/apache/commons/math/stat/regression/*;+org/apache/commons/math/stat/correlation/*;+org/apache/commons/math/stat/clustering/*;+org/apache/commons/math/ode/jacobians/*;+org/apache/commons/math/stat/ranking/*;+org/apache/commons/math/*;+org/apache/commons/math/ode/sampling/*;+org/apache/commons/math/genetics/*;+org/apache/commons/math/analysis/polynomials/*;+org/apache/commons/math/exception/util/*;+org/apache/commons/math/optimization/linear/*;+org/apache/commons/math/ode/nonstiff/*;+org/apache/commons/math/optimization/univariate/*;+org/apache/commons/math/optimization/direct/*;+org/apache/commons/math/optimization/general/*;+org/apache/

commons
/math/stat/*;+org/apache/commons/math/distribution/*;+org/apache/commons/math/ode/events/*;+org/apache/commons/math/stat/descriptive/summary/*;+org/apache/commons/math/geometry/*;+org/apache/commons/math/linear/*;+org/apache/commons/math/estimation/*;+org/apache/commons/math/analysis/integration/*;+org/apache/commons/math/stat/descriptive/rank/*;+org/apache/commons/math/random/*;+org/apache/commons/math/fraction/*;+org/apache/commons/math/complex/*;+org/apache/commons/math/transform/*;+org/apache/commons/math/stat/inference/*;+org/apache/commons/math/optimization/fitting/*;+org/apache/commons/math/exception/*;+org/apache/commons/math/optimization/*;+org/apache/commons/math/ode/*;+org/apache/commons/math/stat/descriptive/moment/*;+org/apache/commons/math/analysis/solvers/*;?**/*]]

[DEBUG] Output directory:
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes
[DEBUG] Classpath:
[DEBUG] C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes
[DEBUG]
C:\Users\mirkos\.m2\repository\p2\osgi\bundle\org.eclipse.core.runtime\3.7.0.v20110110\org.eclipse.core.runtime-3.7.0.v20110110.jar[~org/eclipse/core/internal/preferences/legacy/*;~org/eclipse/core/internal/runtime/*;+org/eclipse/core/runtime/*;?**/*]

[DEBUG]
C:\Users\mirkos\.m2\repository\p2\osgi\bundle\org.eclipse.osgi\3.7.1.R37x_v20110808-1106\org.eclipse.osgi-3.7.1.R37x_v20110808-1106.jar[+org/eclipse/osgi/event/*;+org/eclipse/osgi/framework/console/*;+org/eclipse/osgi/framework/eventmgr/*;+org/eclipse/osgi/framework/log/*;+org/eclipse/osgi/launch/*;+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/storagemanager/*;+org/eclipse/osgi/util/*;+org/eclipse/equinox/log/*;+org/osgi/framework/*;+org/osgi/framework/launch/*;+org/osgi/framework/hooks/bundle/*;+org/osgi/framework/hooks/resolver/*;+org/osgi/framework/hooks/service/*;+org/osgi/framework/hooks/weaving/*;+org/osgi

/framew
ork/startlevel/*;+org/osgi/framework/wiring/*;+org/osgi/service/condpermadmin/*;~org/osgi/service/framework/*;+org/osgi/service/log/*;+org/osgi/service/packageadmin/*;+org/osgi/service/permissionadmin/*;+org/osgi/service/startlevel/*;+org/osgi/service/url/*;+org/osgi/util/tracker/*;~org/eclipse/core/runtime/adaptor/*;~org/eclipse/core/runtime/internal/adaptor/*;~org/eclipse/core/runtime/internal/stats/*;~org/eclipse/osgi/baseadaptor/*;~org/eclipse/osgi/baseadaptor/bundlefile/*;~org/eclipse/osgi/baseadaptor/hooks/*;~org/eclipse/osgi/baseadaptor/loader/*;~org/eclipse/osgi/framework/adaptor/*;~org/eclipse/osgi/framework/debug/*;~org/eclipse/osgi/framework/internal/core/*;~org/eclipse/osgi/framework/internal/protocol/*;~org/eclipse/osgi/framework/internal/protocol/bundleentry/*;~org/eclipse/osgi/framework/internal/protocol/bundleresource/*;~org/eclipse/osgi/framework/internal/protocol/reference/*;~org/eclipse/osgi/framework/internal/reliablefile/*;~org/eclipse/osgi/framework/ut
il

/*;~org/
eclipse/osgi/internal/baseadaptor/*;~org/eclipse/osgi/internal/composite/*;~org/eclipse/osgi/internal/loader/*;~org/eclipse/osgi/internal/loader/buddy/*;~org/eclipse/osgi/internal/module/*;~org/eclipse/osgi/internal/profile/*;~org/eclipse/osgi/internal/resolver/*;~org/eclipse/osgi/internal/serviceregistry/*;~org/eclipse/osgi/internal/permadmin/*;~org/eclipse/osgi/internal/provisional/service/security/*;~org/eclipse/osgi/internal/provisional/verifier/*;~org/eclipse/osgi/internal/service/security/*;~org/eclipse/osgi/internal/signedcontent/*;~org/eclipse/osgi/service/internal/composite/*;~org/eclipse/equinox/log/internal/*;?**/*]

[DEBUG]
C:\Users\mirkos\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.common\3.6.0.v20110523\org.eclipse.equinox.common-3.6.0.v20110523.jar[~org/eclipse/core/internal/boot/*;~org/eclipse/core/internal/runtime/*;+org/eclipse/core/runtime/*;+org/eclipse/equinox/events/*;?**/*]

[DEBUG]
C:\Users\mirkos\.m2\repository\p2\osgi\bundle\org.eclipse.core.jobs\3.5.100.v20110404\org.eclipse.core.jobs-3.5.100.v20110404.jar[~org/eclipse/core/internal/jobs/*;+org/eclipse/core/runtime/jobs/*;?**/*]

[DEBUG]
C:\Users\mirkos\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.registry\3.5.101.R37x_v20110810-1611\org.eclipse.equinox.registry-3.5.101.R37x_v20110810-1611.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\mirkos\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.preferences\3.4.1.R37x_v20110725\org.eclipse.equinox.preferences-3.4.1.R37x_v20110725.jar[~org/eclipse/core/internal/preferences/*;~org/eclipse/core/internal/preferences/exchange/*;+org/eclipse/core/runtime/preferences/*;+org/osgi/service/prefs/*;?**/*]

[DEBUG]
C:\Users\mirkos\.m2\repository\p2\osgi\bundle\org.eclipse.core.contenttype\3.4.100.v20110423-0524\org.eclipse.core.contenttype-3.4.100.v20110423-0524.jar[~org/eclipse/core/internal/content/*;+org/eclipse/core/runtime/content/*;?**/*]

[DEBUG]
C:\Users\mirkos\.m2\repository\p2\osgi\bundle\org.eclipse.core.runtime.compatibility.auth\3.2.200.v20110110\org.eclipse.core.runtime.compatibility.auth-3.2.200.v20110110.jar[?**/*]

[DEBUG]
C:\Users\mirkos\.m2\repository\p2\osgi\bundle\org.eclipse.equinox.app\1.3.100.v20110321\org.eclipse.equinox.app-1.3.100.v20110321.jar[+org/eclipse/equinox/app/*;~org/eclipse/equinox/internal/app/*;+org/osgi/service/application/*;?**/*]

[DEBUG]
C:\Users\mirkos\.m2\repository\p2\osgi\bundle\org.eclipse.core.expressions\3.4.300.v20110228\org.eclipse.core.expressions-3.4.300.v20110228.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\mirkos\.m2\repository\p2\osgi\bundle\com.qualitype.commons.qtcommons\5.1.1.SNAPSHOT\com.qualitype.commons.qtcommons-5.1.1.SNAPSHOT.jar[+com/qualitype/commons/query/*;+com/qualitype/commons/i18n/*;+com/qualitype/commons/math/*;+com/qualitype/commons/swing/action/*;+com/qualitype/commons/swing/renderer/*;+com/qualitype/commons/qtd/binding/*;+com/qualitype/commons/qtd/*;+com/qualitype/commons/sort/*;+com/qualitype/commons/swing/dialog/*;+com/qualitype/commons/*;+com/qualitype/commons/exception/*;+com/qualitype/commons/primitives/*;+com/qualitype/commons/swing/editor/*;+com/qualitype/commons/sql/*;+com/qualitype/commons/print/*;+com/qualitype/commons/xml/*;+com/qualitype/commons/text/*;+com/qualitype/commons/swing/*;+com/qualitype/commons/param/*;+com/qualitype/commons/csv/*;+com/qualitype/commons/swing/ribbon/*;+com/qualitype/commons/persistence/*;+com/qualitype/commons/security/*;+com/qualitype/commons/cryptography/*;+com/qualitype/commons/barcode/*;+com/qua

litype/
commons/reflect/*;+com/qualitype/commons/io/*;+com/qualitype/commons/swing/input/*;+com/qualitype/commons/swing/model/*;?**/*]

[DEBUG]
C:\Users\mirkos\.m2\repository\p2\osgi\bundle\org.apache.commons.beanutils\1.8.3\org.apache.commons.beanutils-1.8.3.jar[+org/apache/commons/beanutils/locale/converters/*;+org/apache/commons/beanutils/*;+org/apache/commons/beanutils/converters/*;+org/apache/commons/beanutils/expression/*;+org/apache/commons/beanutils/locale/*;?**/*]

[DEBUG]
C:\Users\mirkos\.m2\repository\p2\osgi\bundle\org.apache.commons.codec\1.6.0\org.apache.commons.codec-1.6.0.jar[+org/apache/commons/codec/*;+org/apache/commons/codec/net/*;+org/apache/commons/codec/language/bm/*;+org/apache/commons/codec/language/*;+org/apache/commons/codec/digest/*;+org/apache/commons/codec/binary/*;?**/*]

[DEBUG]
C:\Users\mirkos\.m2\repository\p2\osgi\bundle\org.apache.commons.collections\3.2.1\org.apache.commons.collections-3.2.1.jar[+org/apache/commons/collections/map/*;+org/apache/commons/collections/buffer/*;+org/apache/commons/collections/comparators/*;+org/apache/commons/collections/collection/*;+org/apache/commons/collections/bag/*;+org/apache/commons/collections/iterators/*;+org/apache/commons/collections/bidimap/*;+org/apache/commons/collections/set/*;+org/apache/commons/collections/functors/*;+org/apache/commons/collections/list/*;+org/apache/commons/collections/keyvalue/*;+org/apache/commons/collections/*;?**/*]

[DEBUG]
C:\Users\mirkos\.m2\repository\p2\osgi\bundle\org.apache.commons.io\2.1.0\org.apache.commons.io-2.1.0.jar[+org/apache/commons/io/output/*;+org/apache/commons/io/monitor/*;+org/apache/commons/io/filefilter/*;+org/apache/commons/io/comparator/*;+org/apache/commons/io/input/*;+org/apache/commons/io/*;?**/*]

[DEBUG]
C:\Users\mirkos\.m2\repository\p2\osgi\bundle\org.apache.commons.lang3\3.1.0\org.apache.commons.lang3-3.1.0.jar[+org/apache/commons/lang3/event/*;+org/apache/commons/lang3/mutable/*;+org/apache/commons/lang3/tuple/*;+org/apache/commons/lang3/time/*;+org/apache/commons/lang3/concurrent/*;+org/apache/commons/lang3/text/translate/*;+org/apache/commons/lang3/text/*;+org/apache/commons/lang3/math/*;+org/apache/commons/lang3/*;+org/apache/commons/lang3/exception/*;+org/apache/commons/lang3/reflect/*;+org/apache/commons/lang3/builder/*;?**/*]

[DEBUG]
C:\Users\mirkos\.m2\repository\p2\osgi\bundle\org.apache.commons.math\2.2.0\org.apache.commons.math-2.2.0.jar[+org/apache/commons/math/analysis/interpolation/*;+org/apache/commons/math/dfp/*;+org/apache/commons/math/special/*;+org/apache/commons/math/util/*;+org/apache/commons/math/analysis/*;+org/apache/commons/math/stat/descriptive/*;+org/apache/commons/math/stat/regression/*;+org/apache/commons/math/stat/correlation/*;+org/apache/commons/math/stat/clustering/*;+org/apache/commons/math/ode/jacobians/*;+org/apache/commons/math/stat/ranking/*;+org/apache/commons/math/*;+org/apache/commons/math/ode/sampling/*;+org/apache/commons/math/genetics/*;+org/apache/commons/math/analysis/polynomials/*;+org/apache/commons/math/exception/util/*;+org/apache/commons/math/optimization/linear/*;+org/apache/commons/math/ode/nonstiff/*;+org/apache/commons/math/optimization/univariate/*;+org/apache/commons/math/optimization/direct/*;+org/apache/commons/math/optimization/general/*;+org

/apache
/commons/math/stat/*;+org/apache/commons/math/distribution/*;+org/apache/commons/math/ode/events/*;+org/apache/commons/math/stat/descriptive/summary/*;+org/apache/commons/math/geometry/*;+org/apache/commons/math/linear/*;+org/apache/commons/math/estimation/*;+org/apache/commons/math/analysis/integration/*;+org/apache/commons/math/stat/descriptive/rank/*;+org/apache/commons/math/random/*;+org/apache/commons/math/fraction/*;+org/apache/commons/math/complex/*;+org/apache/commons/math/transform/*;+org/apache/commons/math/stat/inference/*;+org/apache/commons/math/optimization/fitting/*;+org/apache/commons/math/exception/*;+org/apache/commons/math/optimization/*;+org/apache/commons/math/ode/*;+org/apache/commons/math/stat/descriptive/moment/*;+org/apache/commons/math/analysis/solvers/*;?**/*]

[DEBUG] Source roots:
[DEBUG] C:\Users\mirkos\workspaces\commonsPluginTycho\Commons Plug-in\src
[INFO] Compiling 287 source files to
C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\target\classes
[DEBUG] Using boot classpath: [Classpath for jar file C:\Program
Files\Java\jdk1.7.0_02\jre\lib\resources.jar, Classpath for jar file
C:\Program Files\Java\jdk1.7.0_02\jre\lib\rt.jar, Classpath for jar
file C:\Program Files\Java\jdk1.7.0_02\jre\lib\sunrsasign.jar,
Classpath for jar file C:\Program
Files\Java\jdk1.7.0_02\jre\lib\jsse.jar, Classpath for jar file
C:\Program Files\Java\jdk1.7.0_02\jre\lib\jce.jar, Classpath for jar
file C:\Program Files\Java\jdk1.7.0_02\jre\lib\charsets.jar]
[DEBUG] Original compiler output: ----------
1. ERROR in C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\src\com\qualitype\rcp\ui\preference\editor\PasswordStringFieldEditor.java
(at line 12)
import org.eclipse.jface.preference.FieldEditor;
^^^^^^^^^^^^^^^^^
The import org.eclipse.jface cannot be resolved
----------
2. ERROR in C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\src\com\qualitype\rcp\ui\preference\editor\PasswordStringFieldEditor.java
(at line 13)
import org.eclipse.jface.resource.JFaceResources;
^^^^^^^^^^^^^^^^^
The import org.eclipse.jface cannot be resolved
----------
3. ERROR in C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\src\com\qualitype\rcp\ui\preference\editor\PasswordStringFieldEditor.java
(at line 14)
import org.eclipse.swt.SWT;
^^^^^^^^^^^^^^^
The import org.eclipse.swt cannot be resolved
----------
4. ERROR in C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\src\com\qualitype\rcp\ui\preference\editor\PasswordStringFieldEditor.java
(at line 15)
import org.eclipse.swt.events.DisposeEvent;
^^^^^^^^^^^^^^^
The import org.eclipse.swt cannot be resolved
----------
5. ERROR in C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\src\com\qualitype\rcp\ui\preference\editor\PasswordStringFieldEditor.java
(at line 16)
import org.eclipse.swt.events.DisposeListener;
^^^^^^^^^^^^^^^
The import org.eclipse.swt cannot be resolved
----------
6. ERROR in C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\src\com\qualitype\rcp\ui\preference\editor\PasswordStringFieldEditor.java
(at line 17)
import org.eclipse.swt.events.FocusAdapter;
^^^^^^^^^^^^^^^
The import org.eclipse.swt cannot be resolved
----------
7. ERROR in C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\src\com\qualitype\rcp\ui\preference\editor\PasswordStringFieldEditor.java
(at line 18)
import org.eclipse.swt.events.FocusEvent;
^^^^^^^^^^^^^^^
The import org.eclipse.swt cannot be resolved
----------
8. ERROR in C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\src\com\qualitype\rcp\ui\preference\editor\PasswordStringFieldEditor.java
(at line 19)
import org.eclipse.swt.events.KeyAdapter;
^^^^^^^^^^^^^^^
The import org.eclipse.swt cannot be resolved
----------
9. ERROR in C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\src\com\qualitype\rcp\ui\preference\editor\PasswordStringFieldEditor.java
(at line 20)
import org.eclipse.swt.events.KeyEvent;
^^^^^^^^^^^^^^^
The import org.eclipse.swt cannot be resolved
----------
10. ERROR in C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\src\com\qualitype\rcp\ui\preference\editor\PasswordStringFieldEditor.java
(at line 21)
import org.eclipse.swt.layout.GridData;
^^^^^^^^^^^^^^^
The import org.eclipse.swt cannot be resolved
----------
11. ERROR in C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\src\com\qualitype\rcp\ui\preference\editor\PasswordStringFieldEditor.java
(at line 22)
import org.eclipse.swt.widgets.Composite;
^^^^^^^^^^^^^^^
The import org.eclipse.swt cannot be resolved
----------
12. ERROR in C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\src\com\qualitype\rcp\ui\preference\editor\PasswordStringFieldEditor.java
(at line 23)
import org.eclipse.swt.widgets.Text;
^^^^^^^^^^^^^^^
The import org.eclipse.swt cannot be resolved
----------
13. ERROR in C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\src\com\qualitype\rcp\ui\preference\editor\PasswordStringFieldEditor.java
(at line 32)
public class PasswordStringFieldEditor extends FieldEditor {
^^^^^^^^^^^
FieldEditor cannot be resolved to a type
----------
14. ERROR in C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\src\com\qualitype\rcp\ui\preference\editor\PasswordStringFieldEditor.java
(at line 69)
Text textField;
^^^^
Text cannot be resolved to a type
----------
15. ERROR in C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\src\com\qualitype\rcp\ui\preference\editor\PasswordStringFieldEditor.java
(at line 123)
final Composite parent) {
^^^^^^^^^
Composite cannot be resolved to a type
----------
16. ERROR in C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\src\com\qualitype\rcp\ui\preference\editor\PasswordStringFieldEditor.java
(at line 124)
init(name, labelText);
^^^^
The method init(String, String) is undefined for the type
PasswordStringFieldEditor
----------
17. ERROR in C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\src\com\qualitype\rcp\ui\preference\editor\PasswordStringFieldEditor.java
(at line 128)
this.errorMessage =
JFaceResources.getString("StringFieldEditor.errorMessage");//$NON-NLS-1$
^^^^^^^^^^^^^^
JFaceResources cannot be resolved
----------
18. ERROR in C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\src\com\qualitype\rcp\ui\preference\editor\PasswordStringFieldEditor.java
(at line 146)
public PasswordStringFieldEditor(final String name, final String
labelText, final int width, final Composite parent) {
^^^^^^^^^
Composite cannot be resolved to a type
----------
19. ERROR in C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\src\com\qualitype\rcp\ui\preference\editor\PasswordStringFieldEditor.java
(at line 161)
public PasswordStringFieldEditor(final String name, final String
labelText, final Composite parent) {
^^^^^^^^^
Composite cannot be resolved to a type
----------
20. ERROR in C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\src\com\qualitype\rcp\ui\preference\editor\PasswordStringFieldEditor.java
(at line 169)
protected void adjustForNumColumns(final int numColumns) {
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The method adjustForNumColumns(int) of type PasswordStringFieldEditor
must override or implement a supertype method
----------
21. ERROR in C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\src\com\qualitype\rcp\ui\preference\editor\PasswordStringFieldEditor.java
(at line 170)
final GridData gd = (GridData) this.textField.getLayoutData();
^^^^^^^^
GridData cannot be resolved to a type
----------
22. ERROR in C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\src\com\qualitype\rcp\ui\preference\editor\PasswordStringFieldEditor.java
(at line 170)
final GridData gd = (GridData) this.textField.getLayoutData();
^^^^^^^^
GridData cannot be resolved to a type
----------
23. ERROR in C:\Users\mirkos\workspaces\commonsPluginTycho\Commons
Plug-in\src\com\qualitype\rcp\ui\preference\editor\PasswordStringFieldEditor.java
(at line 170)
final GridData gd = (GridData) this.textField.getLayoutData();
^^^^^^^^^^^^^^

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


Back to the top