Return-Path: X-Original-To: apmail-directory-commits-archive@www.apache.org Delivered-To: apmail-directory-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id A3AE510148 for ; Mon, 18 Nov 2013 21:57:45 +0000 (UTC) Received: (qmail 12688 invoked by uid 500); 18 Nov 2013 21:57:45 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 12624 invoked by uid 500); 18 Nov 2013 21:57:45 -0000 Mailing-List: contact commits-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@directory.apache.org Delivered-To: mailing list commits@directory.apache.org Received: (qmail 12617 invoked by uid 99); 18 Nov 2013 21:57:45 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 18 Nov 2013 21:57:45 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 18 Nov 2013 21:57:44 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id CF78F238883D; Mon, 18 Nov 2013 21:57:23 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1543184 - /directory/studio/trunk/repository/README Date: Mon, 18 Nov 2013 21:57:23 -0000 To: commits@directory.apache.org From: seelmann@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20131118215723.CF78F238883D@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: seelmann Date: Mon Nov 18 21:57:23 2013 New Revision: 1543184 URL: http://svn.apache.org/r1543184 Log: Add readme how to add new plugin dependencies Added: directory/studio/trunk/repository/README Added: directory/studio/trunk/repository/README URL: http://svn.apache.org/viewvc/directory/studio/trunk/repository/README?rev=1543184&view=auto ============================================================================== --- directory/studio/trunk/repository/README (added) +++ directory/studio/trunk/repository/README Mon Nov 18 21:57:23 2013 @@ -0,0 +1,12 @@ +Howto add new plugin dependencies to internal maven repository +* create directory "newplugins" +* copy plugins jar from existing Eclipse (Juno 3.8) installation to "newplugins" directory (example: org.eclipse.core.databinding.beans_1.2.200.v20120523-1955.jar) +* run the "deploy_new_plugins.sh" script +* delete the "newplugins" directory +* add the new dependency (including version) to the parent pom.xml "dependencyManagement" section +* add the new dependency (excluding version) to the repository/pom.xml +* now you can add the new dependency (excluding version) to the plugin's pom.xml +* run "mvn install" from the project root to see if all works + +The script splits the original filename (e.g. org.eclipse.core.databinding.beans_1.2.200.v20120523-1955.jar) and extracts groupId, artifactId, version, and packaging. +