You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by na...@apache.org on 2010/09/14 19:05:19 UTC

svn commit: r996991 - /tuscany/sca-java-1.x/branches/sca-java-1.6.1/distribution/src/main/release/src/BUILDING

Author: nash
Date: Tue Sep 14 17:05:18 2010
New Revision: 996991

URL: http://svn.apache.org/viewvc?rev=996991&view=rev
Log:
Move instructions for using Eclipse with the source distribution from the samples README to the BUILDING file (TUSCANY-3676)

Modified:
    tuscany/sca-java-1.x/branches/sca-java-1.6.1/distribution/src/main/release/src/BUILDING

Modified: tuscany/sca-java-1.x/branches/sca-java-1.6.1/distribution/src/main/release/src/BUILDING
URL: http://svn.apache.org/viewvc/tuscany/sca-java-1.x/branches/sca-java-1.6.1/distribution/src/main/release/src/BUILDING?rev=996991&r1=996990&r2=996991&view=diff
==============================================================================
--- tuscany/sca-java-1.x/branches/sca-java-1.6.1/distribution/src/main/release/src/BUILDING (original)
+++ tuscany/sca-java-1.x/branches/sca-java-1.6.1/distribution/src/main/release/src/BUILDING Tue Sep 14 17:05:18 2010
@@ -57,3 +57,35 @@ Building the distributions
    This will build the binary and source distributions with .zip and .gz 
    formats in the distribution/target directory.
 
+
+Using an IDE
+------------
+
+The easiest way to work with Apache Tuscany SCA in an IDE is to use Maven to
+generate all of the IDE project files for you automatically. This works best
+if you generate IDE projects for all of the Apache Tuscany modules. You can
+then include the ones you are interested in working with in your IDE. 
+
+To build IDE project files for all of the modules in Apache Tuscany SCA;
+
+cd <sca-dir>
+
+where <sca-dir> is the top-level directory containing the all the
+Apache Tuscany SCA source code.  
+
+If you are an Eclipse user do the following
+
+mvn -Dnotice.dir=src/main/resources eclipse:eclipse
+mvn -Declipse.workspace=<path-to-eclipse-workspace> eclipse:add-maven-repo
+
+If you are an IDEA user do the following 
+
+mvn idea:idea
+
+These commands generate project files for each module in Apache Tuscany SCA. 
+The modules you are interested in can now be included in your IDE.
+
+For example, in Eclipse, if you create a new Java project and use the option
+to "create a new project from existing source" you can specify an SCA module
+directory, which includes the generated project files, and Eclipse will treat
+it like any other Java project.