Problem with maven based platform application

"Asterix45" <[email protected]>
Newsgroups gmane.comp.java.netbeans.modules.openide.devel
Message-ID <[email protected]>
Hi all,

I'm trying to use maven for my application with platform 8.1.

I have added a maven NetBeans Platform Module and insert in the modue an option panel.
So NetBeans added all the  dependencies to the  pom.xml but when I compile using maven it not works, seem that maven can't find the packages needed.

I'm trying to search on the web with no results. I've added also the repository directive using this link

https://github.com/GeertjanWielenga/EntityExpander/blob/master/pom.xml

with no results.

This is my pom.xml right now


Code:

<?xml version="1.0" encoding="UTF-8"?>
<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>
    <parent>
        <groupId>xyz.myorg.workerscall</groupId>
        <artifactId>WorkersCall-JNB-parent</artifactId>
        <version>1.0-SNAPSHOT</version>
    </parent>
    <groupId>xyz.myorg.workerscall.startup</groupId>
    <artifactId>WorkersCallStartup</artifactId>
    <packaging>nbm</packaging>
    <build>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>nbm-maven-plugin</artifactId>
                <extensions>true</extensions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jar-plugin</artifactId>
                <configuration>
                    <useDefaultManifestFile>true</useDefaultManifestFile>
                </configuration>
            </plugin>
        </plugins>
    </build>
    <repositories>
        <repository>
            <id>netbeans</id>
            <name>Repository hosting NetBeans modules</name>
            <url>http://bits.netbeans.org/nexus/content/groups/netbeans</url>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
        </repository>
    </repositories>
    <dependencies>
        <dependency>
            <groupId>org.netbeans.api</groupId>
            <artifactId>org-netbeans-api-annotations-common</artifactId>
            <version>${netbeans.version}</version>
        </dependency>
        <dependency>
            <groupId>org.netbeans.api</groupId>
            <artifactId>org-openide-modules</artifactId>
            <version>${netbeans.version}</version>
        </dependency>
        <dependency>
            <groupId>org.netbeans.api</groupId>
            <artifactId>org-openide-util-ui</artifactId>
            <version>${netbeans.version}</version>
        </dependency>
        <dependency>
            <groupId>org.netbeans.api</groupId>
            <artifactId>org-openide-util</artifactId>
            <version>${netbeans.version}</version>
        </dependency>
        <dependency>
            <groupId>org.netbeans.api</groupId>
            <artifactId>org-openide-util-lookup</artifactId>
            <version>${netbeans.version}</version>
        </dependency>
        <dependency>
            <groupId>org.netbeans.modules</groupId>
            <artifactId>org-netbeans-modules-utilities</artifactId>
            <version>RELEASE81</version>
        </dependency>
        <dependency>
            <groupId>xyz.myorg.jwebsuitclient</groupId>
            <artifactId>JWebSuitClient</artifactId>
            <version>1.0-SNAPSHOT</version>
        </dependency>
        <dependency>
            <groupId>org.netbeans.api</groupId>
            <artifactId>org-netbeans-modules-options-api</artifactId>
            <version>RELEASE81</version>
        </dependency>
        <dependency>
            <groupId>org.netbeans.api</groupId>
            <artifactId>org-openide-awt</artifactId>
            <version>RELEASE80</version>
        </dependency>
    </dependencies>
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>
</project>




All NetBeans modules can't be found also if i specify a different release. I had this error on compiling:


Code:

cd /home/diego/NetBeansProjects/WorkersCall-JNB; JAVA_HOME=/usr/lib/jvm/default /usr/share/netbeans/java/maven/mvn clean install -U
[INFO] Scanning for projects...
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Build Order:
[INFO] 
[INFO] WorkersCall-JNB-parent
[INFO] WorkersCall-JNB-branding
[INFO] JWebSuitClient
[INFO] WorkersCallStartup
[INFO] WorkersCall-JNB-app
[INFO]                                                                         
[INFO] ------------------------------------------------------------------------
[INFO] Building WorkersCall-JNB-parent 1.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO] 
[INFO] --- maven-clean-plugin:2.4.1:clean (default-clean) @ WorkersCall-JNB-parent ---
[INFO] 
[INFO] --- maven-install-plugin:2.3.1:install (default-install) @ WorkersCall-JNB-parent ---
[INFO] Installing /home/diego/NetBeansProjects/WorkersCall-JNB/pom.xml to /home/diego/.m2/repository/xyz/myorg/workerscall/WorkersCall-JNB-parent/1.0-SNAPSHOT/WorkersCall-JNB-parent-1.0-SNAPSHOT.pom
[INFO]                                                                         
[INFO] ------------------------------------------------------------------------
[INFO] Building WorkersCall-JNB-branding 1.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/maven-metadata.xml
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/maven-metadata.xml (623 B at 2.5 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/maven-metadata.xml
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/maven-metadata.xml (715 B at 5.9 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/maven-metadata.xml
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/maven-metadata.xml (2 KB at 13.2 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-deploy-plugin/maven-metadata.xml
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-deploy-plugin/maven-metadata.xml (709 B at 5.9 KB/sec)
[INFO] 
[INFO] --- maven-clean-plugin:2.4.1:clean (default-clean) @ WorkersCall-JNB-branding ---
[INFO] Deleting /home/diego/NetBeansProjects/WorkersCall-JNB/branding/target
[INFO] 
[INFO] --- maven-resources-plugin:2.7:resources (default-resources) @ WorkersCall-JNB-branding ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO] 
[INFO] --- maven-compiler-plugin:2.5.1:compile (default-compile) @ WorkersCall-JNB-branding ---
[INFO] No sources to compile
[INFO] 
[INFO] --- nbm-maven-plugin:3.13:manifest (default-manifest) @ WorkersCall-JNB-branding ---
[INFO] NBM Plugin generates manifest
[INFO] 
[INFO] --- maven-resources-plugin:2.7:testResources (default-testResources) @ WorkersCall-JNB-branding ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /home/diego/NetBeansProjects/WorkersCall-JNB/branding/src/test/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.5.1:testCompile (default-testCompile) @ WorkersCall-JNB-branding ---
[INFO] No sources to compile
[INFO] 
[INFO] --- maven-surefire-plugin:2.19.1:test (default-test) @ WorkersCall-JNB-branding ---
[INFO] No tests to run.
[INFO] 
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ WorkersCall-JNB-branding ---
[INFO] Adding existing MANIFEST to archive. Found under: /home/diego/NetBeansProjects/WorkersCall-JNB/branding/target/classes/META-INF/MANIFEST.MF
[INFO] Building jar: /home/diego/NetBeansProjects/WorkersCall-JNB/branding/target/WorkersCall-JNB-branding-1.0-SNAPSHOT.jar
[INFO] 
[INFO] --- nbm-maven-plugin:3.13:branding (default-branding) @ WorkersCall-JNB-branding ---
[INFO] Building jar: /home/diego/NetBeansProjects/WorkersCall-JNB/branding/target/nbm/netbeans/workerscalljnb/modules/locale/org-netbeans-core_workerscalljnb.jar
[INFO] Building jar: /home/diego/NetBeansProjects/WorkersCall-JNB/branding/target/nbm/netbeans/workerscalljnb/modules/locale/org-netbeans-core-windows_workerscalljnb.jar
[INFO] Building jar: /home/diego/NetBeansProjects/WorkersCall-JNB/branding/target/nbm/netbeans/workerscalljnb/core/locale/core_workerscalljnb.jar
[INFO] 
[INFO] --- nbm-maven-plugin:3.13:nbm (default-nbm) @ WorkersCall-JNB-branding ---
[INFO] Copying module JAR to /home/diego/NetBeansProjects/WorkersCall-JNB/branding/target/nbm/netbeans/workerscalljnb/modules
[INFO] Generating Auto Update information for xyz.myorg.workerscall.WorkersCall.JNB.branding
[WARNING] No updater.jar specified, cannot validate Info.xml against DTD
[INFO] Building jar: /home/diego/NetBeansProjects/WorkersCall-JNB/branding/target/nbm/WorkersCall-JNB-branding-1.0-SNAPSHOT.nbm
[INFO] 
[INFO] --- maven-install-plugin:2.5.2:install (default-install) @ WorkersCall-JNB-branding ---
[INFO] Installing /home/diego/NetBeansProjects/WorkersCall-JNB/branding/target/WorkersCall-JNB-branding-1.0-SNAPSHOT.jar to /home/diego/.m2/repository/xyz/myorg/workerscall/WorkersCall-JNB-branding/1.0-SNAPSHOT/WorkersCall-JNB-branding-1.0-SNAPSHOT.jar
[INFO] Installing /home/diego/NetBeansProjects/WorkersCall-JNB/branding/pom.xml to /home/diego/.m2/repository/xyz/myorg/workerscall/WorkersCall-JNB-branding/1.0-SNAPSHOT/WorkersCall-JNB-branding-1.0-SNAPSHOT.pom
[INFO] Installing /home/diego/NetBeansProjects/WorkersCall-JNB/branding/target/WorkersCall-JNB-branding-1.0-SNAPSHOT.nbm to /home/diego/.m2/repository/xyz/myorg/workerscall/WorkersCall-JNB-branding/1.0-SNAPSHOT/WorkersCall-JNB-branding-1.0-SNAPSHOT.nbm
[INFO]                                                                         
[INFO] ------------------------------------------------------------------------
[INFO] Building JWebSuitClient 1.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO] 
[INFO] --- maven-clean-plugin:2.4.1:clean (default-clean) @ JWebSuitClient ---
[INFO] Deleting /home/diego/NetBeansProjects/JWebSuitClient/target
[INFO] 
[INFO] --- maven-resources-plugin:2.7:resources (default-resources) @ JWebSuitClient ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO] 
[INFO] --- maven-compiler-plugin:2.5.1:compile (default-compile) @ JWebSuitClient ---
[INFO] Compiling 7 source files to /home/diego/NetBeansProjects/JWebSuitClient/target/classes
[INFO] 
[INFO] --- nbm-maven-plugin:3.13:manifest (default-manifest) @ JWebSuitClient ---
[INFO] NBM Plugin generates manifest
[INFO] Adding on module's Class-Path:
[INFO]     com.fasterxml.jackson.core:jackson-databind:jar:2.6.4
[INFO]     com.fasterxml.jackson.core:jackson-core:jar:2.6.4
[INFO]     com.fasterxml.jackson.core:jackson-annotations:jar:2.6.4
[INFO] 
[INFO] --- maven-resources-plugin:2.7:testResources (default-testResources) @ JWebSuitClient ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory /home/diego/NetBeansProjects/JWebSuitClient/src/test/resources
[INFO] 
[INFO] --- maven-compiler-plugin:2.5.1:testCompile (default-testCompile) @ JWebSuitClient ---
[INFO] Nothing to compile - all classes are up to date
[INFO] 
[INFO] --- maven-surefire-plugin:2.19.1:test (default-test) @ JWebSuitClient ---
[INFO] No tests to run.
[INFO] 
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ JWebSuitClient ---
[INFO] Adding existing MANIFEST to archive. Found under: /home/diego/NetBeansProjects/JWebSuitClient/target/classes/META-INF/MANIFEST.MF
[INFO] Building jar: /home/diego/NetBeansProjects/JWebSuitClient/target/JWebSuitClient-1.0-SNAPSHOT.jar
[INFO] 
[INFO] --- nbm-maven-plugin:3.13:branding (default-branding) @ JWebSuitClient ---
[INFO] No branding to process.
[INFO] 
[INFO] --- nbm-maven-plugin:3.13:nbm (default-nbm) @ JWebSuitClient ---
[INFO] Copying module JAR to /home/diego/NetBeansProjects/JWebSuitClient/target/nbm/netbeans/extra/modules with manifest updates
[INFO] Generating Auto Update information for xyz.myorg.jwebsuitclient.JWebSuitClient
[WARNING] No updater.jar specified, cannot validate Info.xml against DTD
[INFO] Building jar: /home/diego/NetBeansProjects/JWebSuitClient/target/nbm/JWebSuitClient-1.0-SNAPSHOT.nbm
[INFO] 
[INFO] --- maven-install-plugin:2.5.2:install (default-install) @ JWebSuitClient ---
[INFO] Installing /home/diego/NetBeansProjects/JWebSuitClient/target/JWebSuitClient-1.0-SNAPSHOT.jar to /home/diego/.m2/repository/xyz/myorg/jwebsuitclient/JWebSuitClient/1.0-SNAPSHOT/JWebSuitClient-1.0-SNAPSHOT.jar
[INFO] Installing /home/diego/NetBeansProjects/JWebSuitClient/pom.xml to /home/diego/.m2/repository/xyz/myorg/jwebsuitclient/JWebSuitClient/1.0-SNAPSHOT/JWebSuitClient-1.0-SNAPSHOT.pom
[INFO] Installing /home/diego/NetBeansProjects/JWebSuitClient/target/JWebSuitClient-1.0-SNAPSHOT.nbm to /home/diego/.m2/repository/xyz/myorg/jwebsuitclient/JWebSuitClient/1.0-SNAPSHOT/JWebSuitClient-1.0-SNAPSHOT.nbm
[INFO]                                                                         
[INFO] ------------------------------------------------------------------------
[INFO] Building WorkersCallStartup 1.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
Downloading: http://bits.netbeans.org/nexus/content/groups/netbeans/org/netbeans/modules/org-netbeans-modules-utilities/RELEASE81/org-netbeans-modules-utilities-RELEASE81.pom
Downloading: http://repo.maven.apache.org/maven2/org/netbeans/modules/org-netbeans-modules-utilities/RELEASE81/org-netbeans-modules-utilities-RELEASE81.pom
[WARNING] The POM for org.netbeans.modules:org-netbeans-modules-utilities:jar:RELEASE81 is missing, no dependency information available
Downloading: http://bits.netbeans.org/nexus/content/groups/netbeans/org/netbeans/api/org-openide-awt/RELEASE80/org-openide-awt-RELEASE80.pom
Downloading: http://repo.maven.apache.org/maven2/org/netbeans/api/org-openide-awt/RELEASE80/org-openide-awt-RELEASE80.pom
[WARNING] The POM for org.netbeans.api:org-openide-awt:jar:RELEASE80 is missing, no dependency information available
Downloading: http://bits.netbeans.org/nexus/content/groups/netbeans/org/netbeans/modules/org-netbeans-modules-utilities/RELEASE81/org-netbeans-modules-utilities-RELEASE81.jar
Downloading: http://bits.netbeans.org/nexus/content/groups/netbeans/org/netbeans/api/org-netbeans-modules-options-api/RELEASE81/org-netbeans-modules-options-api-RELEASE81.jar
Downloading: http://bits.netbeans.org/nexus/content/groups/netbeans/org/netbeans/api/org-netbeans-api-progress/RELEASE81/org-netbeans-api-progress-RELEASE81.jar
Downloading: http://bits.netbeans.org/nexus/content/groups/netbeans/org/netbeans/api/org-netbeans-api-progress-nb/RELEASE81/org-netbeans-api-progress-nb-RELEASE81.jar
Downloading: http://bits.netbeans.org/nexus/content/groups/netbeans/org/netbeans/modules/org-netbeans-core/RELEASE81/org-netbeans-core-RELEASE81.jar
Downloading: http://bits.netbeans.org/nexus/content/groups/netbeans/org/netbeans/modules/org-netbeans-bootstrap/RELEASE81/org-netbeans-bootstrap-RELEASE81.jar
Downloading: http://bits.netbeans.org/nexus/content/groups/netbeans/org/netbeans/api/org-netbeans-modules-keyring/RELEASE81/org-netbeans-modules-keyring-RELEASE81.jar
Downloading: http://bits.netbeans.org/nexus/content/groups/netbeans/org/netbeans/api/org-netbeans-modules-sampler/RELEASE81/org-netbeans-modules-sampler-RELEASE81.jar
Downloading: http://bits.netbeans.org/nexus/content/groups/netbeans/org/netbeans/api/org-netbeans-swing-plaf/RELEASE81/org-netbeans-swing-plaf-RELEASE81.jar
Downloading: http://bits.netbeans.org/nexus/content/groups/netbeans/org/netbeans/api/org-openide-io/RELEASE81/org-openide-io-RELEASE81.jar
Downloading: http://bits.netbeans.org/nexus/content/groups/netbeans/org/netbeans/api/org-netbeans-api-intent/RELEASE81/org-netbeans-api-intent-RELEASE81.jar
Downloading: http://bits.netbeans.org/nexus/content/groups/netbeans/org/netbeans/api/org-netbeans-api-io/RELEASE81/org-netbeans-api-io-RELEASE81.jar
Downloading: http://bits.netbeans.org/nexus/content/groups/netbeans/org/netbeans/modules/org-netbeans-core-startup/RELEASE81/org-netbeans-core-startup-RELEASE81.jar
Downloading: http://bits.netbeans.org/nexus/content/groups/netbeans/org/netbeans/api/org-netbeans-libs-asm/RELEASE81/org-netbeans-libs-asm-RELEASE81.jar
Downloading: http://bits.netbeans.org/nexus/content/groups/netbeans/org/netbeans/modules/org-netbeans-core-startup-base/RELEASE81/org-netbeans-core-startup-base-RELEASE81.jar
Downloading: http://bits.netbeans.org/nexus/content/groups/netbeans/org/netbeans/api/org-netbeans-spi-quicksearch/RELEASE81/org-netbeans-spi-quicksearch-RELEASE81.jar
Downloading: http://bits.netbeans.org/nexus/content/groups/netbeans/org/netbeans/api/org-netbeans-swing-outline/RELEASE81/org-netbeans-swing-outline-RELEASE81.jar
Downloading: http://bits.netbeans.org/nexus/content/groups/netbeans/org/netbeans/api/org-openide-actions/RELEASE81/org-openide-actions-RELEASE81.jar
Downloading: http://bits.netbeans.org/nexus/content/groups/netbeans/org/netbeans/api/org-openide-text/RELEASE81/org-openide-text-RELEASE81.jar
Downloading: http://bits.netbeans.org/nexus/content/groups/netbeans/org/netbeans/api/org-openide-dialogs/RELEASE81/org-openide-dialogs-RELEASE81.jar
Downloading: http://bits.netbeans.org/nexus/content/groups/netbeans/org/netbeans/api/org-openide-explorer/RELEASE81/org-openide-explorer-RELEASE81.jar
Downloading: http://bits.netbeans.org/nexus/content/groups/netbeans/org/netbeans/api/org-netbeans-swing-tabcontrol/RELEASE81/org-netbeans-swing-tabcontrol-RELEASE81.jar
Downloading: http://bits.netbeans.org/nexus/content/groups/netbeans/org/netbeans/api/org-openide-filesystems-nb/RELEASE81/org-openide-filesystems-nb-RELEASE81.jar
Downloading: http://bits.netbeans.org/nexus/content/groups/netbeans/org/netbeans/api/org-openide-loaders/RELEASE81/org-openide-loaders-RELEASE81.jar
Downloading: http://bits.netbeans.org/nexus/content/groups/netbeans/org/netbeans/api/org-netbeans-modules-editor-mimelookup/RELEASE81/org-netbeans-modules-editor-mimelookup-RELEASE81.jar
Downloading: http://bits.netbeans.org/nexus/content/groups/netbeans/org/netbeans/api/org-netbeans-modules-queries/RELEASE81/org-netbeans-modules-queries-RELEASE81.jar
Downloading: http://bits.netbeans.org/nexus/content/groups/netbeans/org/netbeans/api/org-netbeans-api-templates/RELEASE81/org-netbeans-api-templates-RELEASE81.jar
Downloading: http://bits.netbeans.org/nexus/content/groups/netbeans/org/netbeans/api/org-openide-nodes/RELEASE81/org-openide-nodes-RELEASE81.jar
Downloading: http://bits.netbeans.org/nexus/content/groups/netbeans/org/netbeans/api/org-openide-windows/RELEASE81/org-openide-windows-RELEASE81.jar
Downloading: http://bits.netbeans.org/nexus/content/groups/netbeans/org/netbeans/api/org-openide-awt/RELEASE80/org-openide-awt-RELEASE80.jar
Downloading: http://repo.maven.apache.org/maven2/org/netbeans/modules/org-netbeans-modules-utilities/RELEASE81/org-netbeans-modules-utilities-RELEASE81.jar
Downloading: http://repo.maven.apache.org/maven2/org/netbeans/api/org-netbeans-modules-options-api/RELEASE81/org-netbeans-modules-options-api-RELEASE81.jar
Downloading: http://repo.maven.apache.org/maven2/org/netbeans/api/org-netbeans-api-progress/RELEASE81/org-netbeans-api-progress-RELEASE81.jar
Downloading: http://repo.maven.apache.org/maven2/org/netbeans/api/org-netbeans-api-progress-nb/RELEASE81/org-netbeans-api-progress-nb-RELEASE81.jar
Downloading: http://repo.maven.apache.org/maven2/org/netbeans/modules/org-netbeans-core/RELEASE81/org-netbeans-core-RELEASE81.jar
Downloading: http://repo.maven.apache.org/maven2/org/netbeans/modules/org-netbeans-bootstrap/RELEASE81/org-netbeans-bootstrap-RELEASE81.jar
Downloading: http://repo.maven.apache.org/maven2/org/netbeans/api/org-netbeans-modules-keyring/RELEASE81/org-netbeans-modules-keyring-RELEASE81.jar
Downloading: http://repo.maven.apache.org/maven2/org/netbeans/api/org-netbeans-modules-sampler/RELEASE81/org-netbeans-modules-sampler-RELEASE81.jar
Downloading: http://repo.maven.apache.org/maven2/org/netbeans/api/org-netbeans-swing-plaf/RELEASE81/org-netbeans-swing-plaf-RELEASE81.jar
Downloading: http://repo.maven.apache.org/maven2/org/netbeans/api/org-openide-io/RELEASE81/org-openide-io-RELEASE81.jar
Downloading: http://repo.maven.apache.org/maven2/org/netbeans/api/org-netbeans-api-intent/RELEASE81/org-netbeans-api-intent-RELEASE81.jar
Downloading: http://repo.maven.apache.org/maven2/org/netbeans/api/org-netbeans-api-io/RELEASE81/org-netbeans-api-io-RELEASE81.jar
Downloading: http://repo.maven.apache.org/maven2/org/netbeans/modules/org-netbeans-core-startup/RELEASE81/org-netbeans-core-startup-RELEASE81.jar
Downloading: http://repo.maven.apache.org/maven2/org/netbeans/api/org-netbeans-libs-asm/RELEASE81/org-netbeans-libs-asm-RELEASE81.jar
Downloading: http://repo.maven.apache.org/maven2/org/netbeans/modules/org-netbeans-core-startup-base/RELEASE81/org-netbeans-core-startup-base-RELEASE81.jar
Downloading: http://repo.maven.apache.org/maven2/org/netbeans/api/org-netbeans-spi-quicksearch/RELEASE81/org-netbeans-spi-quicksearch-RELEASE81.jar
Downloading: http://repo.maven.apache.org/maven2/org/netbeans/api/org-netbeans-swing-outline/RELEASE81/org-netbeans-swing-outline-RELEASE81.jar
Downloading: http://repo.maven.apache.org/maven2/org/netbeans/api/org-openide-actions/RELEASE81/org-openide-actions-RELEASE81.jar
Downloading: http://repo.maven.apache.org/maven2/org/netbeans/api/org-openide-text/RELEASE81/org-openide-text-RELEASE81.jar
Downloading: http://repo.maven.apache.org/maven2/org/netbeans/api/org-openide-dialogs/RELEASE81/org-openide-dialogs-RELEASE81.jar
Downloading: http://repo.maven.apache.org/maven2/org/netbeans/api/org-openide-explorer/RELEASE81/org-openide-explorer-RELEASE81.jar
Downloading: http://repo.maven.apache.org/maven2/org/netbeans/api/org-netbeans-swing-tabcontrol/RELEASE81/org-netbeans-swing-tabcontrol-RELEASE81.jar
Downloading: http://repo.maven.apache.org/maven2/org/netbeans/api/org-openide-filesystems-nb/RELEASE81/org-openide-filesystems-nb-RELEASE81.jar
Downloading: http://repo.maven.apache.org/maven2/org/netbeans/api/org-openide-loaders/RELEASE81/org-openide-loaders-RELEASE81.jar
Downloading: http://repo.maven.apache.org/maven2/org/netbeans/api/org-netbeans-modules-editor-mimelookup/RELEASE81/org-netbeans-modules-editor-mimelookup-RELEASE81.jar
Downloading: http://repo.maven.apache.org/maven2/org/netbeans/api/org-netbeans-modules-queries/RELEASE81/org-netbeans-modules-queries-RELEASE81.jar
Downloading: http://repo.maven.apache.org/maven2/org/netbeans/api/org-netbeans-api-templates/RELEASE81/org-netbeans-api-templates-RELEASE81.jar
Downloading: http://repo.maven.apache.org/maven2/org/netbeans/api/org-openide-nodes/RELEASE81/org-openide-nodes-RELEASE81.jar
Downloading: http://repo.maven.apache.org/maven2/org/netbeans/api/org-openide-windows/RELEASE81/org-openide-windows-RELEASE81.jar
Downloading: http://repo.maven.apache.org/maven2/org/netbeans/api/org-openide-awt/RELEASE80/org-openide-awt-RELEASE80.jar
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO] 
[INFO] WorkersCall-JNB-parent ............................ SUCCESS [0.123s]
[INFO] WorkersCall-JNB-branding .......................... SUCCESS [2.146s]
[INFO] JWebSuitClient .................................... SUCCESS [1.288s]
[INFO] WorkersCallStartup ................................ FAILURE [3.874s]
[INFO] WorkersCall-JNB-app ............................... SKIPPED
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 8.248s
[INFO] Finished at: Sun Jan 03 19:48:52 CET 2016
[INFO] Final Memory: 21M/345M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal on project WorkersCallStartup: Could not resolve dependencies for project xyz.myorg.workerscall.startup:WorkersCallStartup:nbm:1.0-SNAPSHOT: The following artifacts could not be resolved: org.netbeans.modules:org-netbeans-modules-utilities:jar:RELEASE81, org.netbeans.api:org-netbeans-modules-options-api:jar:RELEASE81, org.netbeans.api:org-netbeans-api-progress:jar:RELEASE81, org.netbeans.api:org-netbeans-api-progress-nb:jar:RELEASE81, org.netbeans.modules:org-netbeans-core:jar:RELEASE81, org.netbeans.modules:org-netbeans-bootstrap:jar:RELEASE81, org.netbeans.api:org-netbeans-modules-keyring:jar:RELEASE81, org.netbeans.api:org-netbeans-modules-sampler:jar:RELEASE81, org.netbeans.api:org-netbeans-swing-plaf:jar:RELEASE81, org.netbeans.api:org-openide-io:jar:REL
 EASE81, org.netbeans.api:org-netbeans-api-intent:jar:RELEASE81, org.netbeans.api:org-netbeans-api-io:jar:RELEASE81, org.netbeans.modules:org-netbeans-core-startup:jar:RELEASE81, org.netbean!
 s.api:org-netbeans-libs-asm:jar:RELEASE81, org.netbeans.modules:org-netbeans-core-startup-base:jar:RELEASE81, org.netbeans.api:org-netbeans-spi-quicksearch:jar:RELEASE81, org.netbeans.api:org-netbeans-swing-outline:jar:RELEASE81, org.netbeans.api:org-openide-actions:jar:RELEASE81, org.netbeans.api:org-openide-text:jar:RELEASE81, org.netbeans.api:org-openide-dialogs:jar:RELEASE81, org.netbeans.api:org-openide-explorer:jar:RELEASE81, org.netbeans.api:org-netbeans-swing-tabcontrol:jar:RELEASE81, org.netbeans.api:org-openide-filesystems-nb:jar:RELEASE81, org.netbeans.api:org-openide-loaders:jar:RELEASE81, org.netbeans.api:org-netbeans-modules-editor-mimelookup:jar:RELEASE81, org.netbeans.api:org-netbeans-modules-queries:jar:RELEASE81, org.netbeans.api:org-netbeans-api-templates:jar:RELEASE81,
  org.netbeans.api:org-openide-nodes:jar:RELEASE81, org.netbeans.api:org-openide-windows:jar:RELEASE81, org.netbeans.api:org-openide-awt:jar:RELEASE80: Could not find artifact org.netbeans.m!
 odules:org-netbeans-modules-utilities:jar:RELEASE81 in netbean!
 s (http:
//bits.netbeans.org/nexus/content/groups/netbeans) -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException
[ERROR] 
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR]   mvn <goals> -rf :WorkersCallStartup




Thanks for any help.
Regards
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.