Return-Path: Delivered-To: apmail-felix-dev-archive@www.apache.org Received: (qmail 75083 invoked from network); 13 Oct 2010 21:52:55 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 13 Oct 2010 21:52:55 -0000 Received: (qmail 70950 invoked by uid 500); 13 Oct 2010 21:52:54 -0000 Delivered-To: apmail-felix-dev-archive@felix.apache.org Received: (qmail 70888 invoked by uid 500); 13 Oct 2010 21:52:54 -0000 Mailing-List: contact dev-help@felix.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@felix.apache.org Delivered-To: mailing list dev@felix.apache.org Received: (qmail 70366 invoked by uid 99); 13 Oct 2010 21:52:53 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 13 Oct 2010 21:52:53 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.22] (HELO thor.apache.org) (140.211.11.22) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 13 Oct 2010 21:52:53 +0000 Received: from thor (localhost [127.0.0.1]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o9DLqWZT025040 for ; Wed, 13 Oct 2010 21:52:33 GMT Message-ID: <8990883.132871287006752738.JavaMail.jira@thor> Date: Wed, 13 Oct 2010 17:52:32 -0400 (EDT) From: "Alex Blewitt (JIRA)" To: dev@felix.apache.org Subject: [jira] Created: (FELIX-2656) Maven-bundle-plugin identified as not thread-safe in Maven 3.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Maven-bundle-plugin identified as not thread-safe in Maven 3.0 -------------------------------------------------------------- Key: FELIX-2656 URL: https://issues.apache.org/jira/browse/FELIX-2656 Project: Felix Issue Type: Bug Components: Maven Bundle Plugin Affects Versions: maven-bundle-plugin-2.1.0 Reporter: Alex Blewitt Priority: Minor When executing a Maven-3 build with maven-bundle-plugin and set to more than one thread, this error message is shown: [WARNING] ***************************************************************** [WARNING] * Your build is requesting parallel execution, but project * [WARNING] * contains the following plugin(s) that are not marked as * [WARNING] * @threadSafe to support parallel building. * [WARNING] * While this /may/ work fine, please look for plugin updates * [WARNING] * and/or request plugins be made thread-safe. * [WARNING] * If reporting an issue, report it against the plugin in * [WARNING] * question, not against maven-core * [WARNING] ***************************************************************** [WARNING] The following plugins are not marked @threadSafe in com.infoq.minimal: [WARNING] org.apache.felix:maven-bundle-plugin:2.1.0 [WARNING] ***************************************************************** https://cwiki.apache.org/MAVEN/parallel-builds-in-maven-3.html mvn -T 4 clean install # Builds with 4 threads I believe the solution is to add @threadSafe to the maven-bundle-plugin MoJo class (after checking that it is in fact thread-safe :) -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.