Update maven profile names
authorAlexandre Montplaisir <alexmonthy@voxpopuli.im>
Tue, 28 Oct 2014 12:49:51 +0000 (08:49 -0400)
committerAlexandre Montplaisir <alexmonthy@voxpopuli.im>
Tue, 28 Oct 2014 22:31:19 +0000 (18:31 -0400)
"tracingRcp" was used back in Linux Tools to differentiate between
the different RCPs in the tree. Now we can simply call the profile
"build rcp".

There doesn't seem to be any guidelines for profile names... but I
find names-with-dashes more readable than camelCaseNames.

Change-Id: Ie18af97adf162d1f2dd6af1845ba9f5869afbbea
Signed-off-by: Alexandre Montplaisir <alexmonthy@voxpopuli.im>
Reviewed-on: https://git.eclipse.org/r/35585
Tested-by: Hudson CI
Reviewed-by: Genevieve Bastien <gbastien+lttng@versatic.net>
README
org.eclipse.tracecompass.releng-site/pom.xml
pom.xml

diff --git a/README b/README
index 625ab39441ce4f1a7146ea13bdfa9dd2abe277d6..0ae082f2f1f762033b7685ffad73e77cebb7e8f6 100644 (file)
--- a/README
+++ b/README
@@ -30,22 +30,22 @@ take some time, to skip them you can append "-Dmaven.test.skip=true" to the
 $ mvn clean install -Dmaven.test.skip=true
 
 
-The RCP is not built by default, to build it you need to add "-PtracingRcp" to
+The RCP is not built by default, to build it you need to add "-Pbuild-rcp" to
 the 'mvn' command:
-$ mvn clean install -PtracingRcp -Dmaven.test.skip=true
+$ mvn clean install -Pbuild-rcp -Dmaven.test.skip=true
 
 This will build the RCP for all supported architectures. The resulting archives
 will be placed in org.eclipse.linuxtools.tracing.rcp.product/target/products
 
 
 To build a local p2 update site
-$ mvn clean install -PbuildUpdateSite
+$ mvn clean install -Pbuild-update-site
 
 This will place the p2 update site under the default location
 /var/www/tools/tracecompass/nightly/
 
 To change the package location, use:
-$ mvn clean install -PbuildUpdateSite "-DsiteDestination=<package destination>"
+$ mvn clean install -Pbuild-update-site "-DsiteDestination=<package destination>"
 
 where <package destination> is the absolute path to destination directory on
 your disk.
index 6c00b850a6dea8805bd7d620ed061a8b06ca3351..6a816229ad0d03fd56a9e48e076e73285faf58f7 100644 (file)
@@ -29,7 +29,7 @@
 
 <profiles>
   <profile>
-    <id>buildUpdateSite</id>
+    <id>build-update-site</id>
     <properties>
       <siteDestination>/var/www/tools/tracecompass/nightly/</siteDestination>
     </properties>
diff --git a/pom.xml b/pom.xml
index 0876449eeed5a57abb809a87924088b8ab2e5939..260e6d2bd0d44768080047dcd3147cf98f2cfdb1 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -62,7 +62,7 @@
 
 <profiles>
   <profile>
-    <id>tracingRcp</id>
+    <id>build-rcp</id>
       <modules>
         <module>org.eclipse.tracecompass.rcp.product</module>
       </modules>
This page took 0.027273 seconds and 5 git commands to generate.