[jbosstools-commits] JBoss Tools SVN: r24228 - in trunk/deltacloud: features and 5 other directories.

jbosstools-commits at lists.jboss.org jbosstools-commits at lists.jboss.org
Tue Aug 17 18:37:57 EDT 2010


Author: dgolovin
Date: 2010-08-17 18:37:56 -0400 (Tue, 17 Aug 2010)
New Revision: 24228

Added:
   trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/feature.properties
   trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/license.html
   trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/pom.xml
   trunk/deltacloud/features/pom.xml
   trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/about.html
   trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/pom.xml
   trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/pom.xml
   trunk/deltacloud/plugins/pom.xml
   trunk/deltacloud/pom.xml
   trunk/deltacloud/site/
   trunk/deltacloud/site/pom.xml
   trunk/deltacloud/site/site.xml
Modified:
   trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/
   trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/build.properties
   trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/feature.xml
   trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/
   trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/build.properties
   trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/
   trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/build.properties
Log:
https://jira.jboss.org/browse/JBIDE-6837 Include deltacloud component in JBT build and update site
fix contines:
- Licence.htnl, copyright  and about.html files for feature and plugins
- pom files to include it in build
- svn:ignore with tatget folder created during maven build




Property changes on: trunk/deltacloud/features/org.jboss.tools.deltacloud-feature
___________________________________________________________________
Name: svn:ignore
   + target


Modified: trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/build.properties
===================================================================
--- trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/build.properties	2010-08-17 20:43:15 UTC (rev 24227)
+++ trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/build.properties	2010-08-17 22:37:56 UTC (rev 24228)
@@ -1 +1,3 @@
-bin.includes = feature.xml
+bin.includes = feature.xml,\
+               license.html,\
+               feature.properties

Added: trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/feature.properties
===================================================================
--- trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/feature.properties	                        (rev 0)
+++ trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/feature.properties	2010-08-17 22:37:56 UTC (rev 24228)
@@ -0,0 +1,49 @@
+###############################################################################
+# Copyright (c) 2010 JBoss by Red Hat and others.
+# All rights reserved. This program and the accompanying materials 
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+# 
+# Contributors:
+#     JBoss by Red Hat - Initial implementation.
+##############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=Deltacloud Development Tools
+
+# "providerName" property - name of the company that provides the feature
+providerName=JBoss by Red Hat
+
+# "updateSiteName" property - label for the update site
+updateSiteName=JBossTools Update Site
+
+# "description" property - description of the feature
+description=Deltacloud Development Tools
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=Copyright (c) 2010 JBoss by Red Hat and others.\nAll rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\nwhich accompanies this distribution, and is available at\nhttp\://www.eclipse.org/legal/epl-v10.html\n\nContributors\:\nJBoss by Red Hat - Initial implementation.
+ ############### end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# START NON-TRANSLATABLE
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=Red Hat, Inc. licenses these features and plugins to you under \
+certain open source licenses (or aggregations of such licenses), which \
+in a particular case may include the Eclipse Public License, the GNU \
+Lesser General Public License, and/or certain other open source \
+licenses. For precise licensing details, consult the corresponding \
+source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive, \
+Raleigh NC 27606 USA.
+# END NON-TRANSLATABLE
+########### end of license property ##########################################

Modified: trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/feature.xml
===================================================================
--- trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/feature.xml	2010-08-17 20:43:15 UTC (rev 24227)
+++ trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/feature.xml	2010-08-17 22:37:56 UTC (rev 24228)
@@ -1,19 +1,20 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <feature
       id="org.jboss.tools.deltacloud"
-      label="Deltacloud_feature"
-      version="0.0.1.qualifier">
+      label="%featureName"
+      version="1.0.0.qualifier"
+      provider-name="%providerName">
 
-   <description url="http://www.example.com/description">
-      [Enter Feature Description here.]
+   <description>
+      %description
    </description>
 
-   <copyright url="http://www.example.com/copyright">
-      [Enter Copyright Description here.]
+   <copyright>
+      %copyright
    </copyright>
 
-   <license url="http://www.example.com/license">
-      [Enter License Description here.]
+   <license url="%licenseURL">
+      %license
    </license>
 
    <requires>

Added: trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/license.html
===================================================================
--- trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/license.html	                        (rev 0)
+++ trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/license.html	2010-08-17 22:37:56 UTC (rev 24228)
@@ -0,0 +1,14 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
+<html>
+
+<body>
+<p>Red Hat, Inc. licenses these features and plugins to you under
+certain open source licenses (or aggregations of such licenses), which
+in a particular case may include the Eclipse Public License, the GNU
+Lesser General Public License, and/or certain other open source
+licenses. For precise licensing details, consult the corresponding
+source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive,
+Raleigh NC 27606 USA.
+</p>
+</body>
+</html>
\ No newline at end of file


Property changes on: trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/license.html
___________________________________________________________________
Name: svn:executable
   + *

Added: trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/pom.xml
===================================================================
--- trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/pom.xml	                        (rev 0)
+++ trunk/deltacloud/features/org.jboss.tools.deltacloud-feature/pom.xml	2010-08-17 22:37:56 UTC (rev 24228)
@@ -0,0 +1,13 @@
+<project
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+	<modelVersion>4.0.0</modelVersion> 
+	<parent>
+	  <groupId>org.jboss.tools</groupId>
+	  <artifactId>org.jboss.tools.parent.pom</artifactId>
+	  <version>0.0.1-SNAPSHOT</version>
+	</parent>
+	<groupId>org.jboss.tools.deltacloud.features</groupId>
+	<artifactId>org.jboss.tools.deltacloud</artifactId> 
+	<version>1.0.0-SNAPSHOT</version>
+	<packaging>eclipse-feature</packaging>
+</project>

Added: trunk/deltacloud/features/pom.xml
===================================================================
--- trunk/deltacloud/features/pom.xml	                        (rev 0)
+++ trunk/deltacloud/features/pom.xml	2010-08-17 22:37:56 UTC (rev 24228)
@@ -0,0 +1,13 @@
+<project
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+	<modelVersion>4.0.0</modelVersion>
+	<groupId>org.jboss.tools.deltacloud</groupId>
+	<artifactId>features</artifactId>
+	<version>0.0.1-SNAPSHOT</version>
+	<name>deltacloud.features</name>
+	<packaging>pom</packaging>
+	<modules>
+		<module>org.jboss.tools.deltacloud-feature</module>
+	</modules>
+</project>
+	


Property changes on: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core
___________________________________________________________________
Name: svn:ignore
   + target


Added: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/about.html
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/about.html	                        (rev 0)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/about.html	2010-08-17 22:37:56 UTC (rev 24228)
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>Cloud Development Tools</title>
+<style type="text/css" media="screen">
+<!--
+  body {
+    font-family: Sans-serif, Arial, Helvetica;
+  }
+
+-->
+</style>
+</head>
+<body>
+<h1>Cloud Development Tools</h1>
+
+<p>
+This plugin is part of the JBoss Tools developed by the <a href="http://www.jboss.com">JBoss Inc.</a>
+</p>
+
+<p>Information about this plugin is available at <a href="http://www.jboss.org/tools">JBoss Tools project page</a></p>
+
+<p>
+This software is distributed under the terms of the Eclipse Public License - v 1.0
+(see <a href="www.eclipse.org/legal/epl-v10.html">Eclipse Public License - Version 1.0</a>).
+</p>
+</body>
+</html>
\ No newline at end of file

Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/build.properties
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/build.properties	2010-08-17 20:43:15 UTC (rev 24227)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/build.properties	2010-08-17 22:37:56 UTC (rev 24228)
@@ -12,4 +12,5 @@
                lib/httpcore-4.0.1.jar,\
                lib/httpcore-nio-4.0.1.jar,\
                lib/httpmime-4.0.1.jar,\
-               lib/log4j-1.2.14.jar
+               lib/log4j-1.2.14.jar,\
+               about.html

Added: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/pom.xml
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/pom.xml	                        (rev 0)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/pom.xml	2010-08-17 22:37:56 UTC (rev 24228)
@@ -0,0 +1,13 @@
+<project
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+	<modelVersion>4.0.0</modelVersion> 
+	<parent>
+	  <groupId>org.jboss.tools</groupId>
+	  <artifactId>org.jboss.tools.parent.pom</artifactId>
+	  <version>0.0.1-SNAPSHOT</version>
+	</parent>
+	<groupId>org.jboss.tools.deltacloud.plugins</groupId>
+	<artifactId>org.jboss.tools.deltacloud.core</artifactId> 
+	<version>1.0.0-SNAPSHOT</version>
+	<packaging>eclipse-plugin</packaging>
+</project>


Property changes on: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui
___________________________________________________________________
Name: svn:ignore
   + target


Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/build.properties
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/build.properties	2010-08-17 20:43:15 UTC (rev 24227)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/build.properties	2010-08-17 22:37:56 UTC (rev 24228)
@@ -5,4 +5,5 @@
                .,\
                icons/,\
                contexts.xml,\
-               plugin.properties
+               plugin.properties,\
+               about.html

Added: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/pom.xml
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/pom.xml	                        (rev 0)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/pom.xml	2010-08-17 22:37:56 UTC (rev 24228)
@@ -0,0 +1,13 @@
+<project
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+	<modelVersion>4.0.0</modelVersion> 
+	<parent>
+	  <groupId>org.jboss.tools</groupId>
+	  <artifactId>org.jboss.tools.parent.pom</artifactId>
+	  <version>0.0.1-SNAPSHOT</version>
+	</parent>
+	<groupId>org.jboss.tools.deltacloud.plugins</groupId>
+	<artifactId>org.jboss.tools.deltacloud.ui</artifactId> 
+	<version>1.0.0-SNAPSHOT</version>
+	<packaging>eclipse-plugin</packaging>
+</project>

Added: trunk/deltacloud/plugins/pom.xml
===================================================================
--- trunk/deltacloud/plugins/pom.xml	                        (rev 0)
+++ trunk/deltacloud/plugins/pom.xml	2010-08-17 22:37:56 UTC (rev 24228)
@@ -0,0 +1,13 @@
+<project
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+	<modelVersion>4.0.0</modelVersion>
+	<groupId>org.jboss.tools.deltacloud</groupId>
+	<artifactId>plugins</artifactId>
+	<version>0.0.1-SNAPSHOT</version>
+	<name>deltacloud.plugins</name>
+	<packaging>pom</packaging>
+	<modules>
+		<module>org.jboss.tools.deltacloud.ui</module>
+		<module>org.jboss.tools.deltacloud.core</module>
+	</modules>
+</project>

Added: trunk/deltacloud/pom.xml
===================================================================
--- trunk/deltacloud/pom.xml	                        (rev 0)
+++ trunk/deltacloud/pom.xml	2010-08-17 22:37:56 UTC (rev 24228)
@@ -0,0 +1,14 @@
+<project
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+	<modelVersion>4.0.0</modelVersion>
+	<groupId>org.jboss.tools</groupId>
+	<artifactId>deltacloud</artifactId>
+	<name>deltacloud.all</name>
+	<version>0.0.1-SNAPSHOT</version>
+	<packaging>pom</packaging>
+	<modules>
+		<module>features</module>
+		<module>plugins</module>
+		<module>site</module>
+	</modules>
+</project>

Added: trunk/deltacloud/site/pom.xml
===================================================================
--- trunk/deltacloud/site/pom.xml	                        (rev 0)
+++ trunk/deltacloud/site/pom.xml	2010-08-17 22:37:56 UTC (rev 24228)
@@ -0,0 +1,14 @@
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+	<modelVersion>4.0.0</modelVersion> 
+	<parent>
+		<relativePath>../../parent-pom.xml</relativePath>
+		<groupId>org.jboss.tools</groupId>
+		<artifactId>org.jboss.tools.parent.pom</artifactId>
+		<version>0.0.1-SNAPSHOT</version>
+	</parent>
+	<groupId>org.jboss.tools.deltacloud</groupId>
+	<artifactId>site</artifactId> 
+	<name>deltacloud.site</name>
+	<version>0.0.1-SNAPSHOT</version>
+	<packaging>eclipse-update-site</packaging>
+</project>

Added: trunk/deltacloud/site/site.xml
===================================================================
--- trunk/deltacloud/site/site.xml	                        (rev 0)
+++ trunk/deltacloud/site/site.xml	2010-08-17 22:37:56 UTC (rev 24228)
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<site>
+	<description>To install these features, point Eclipse at this site.</description>
+	<!-- JBoss Tools as Nightly Build Update Site -->
+	<category-def label="JBoss Tools Deltacloud Nightly Build Update Site" name="JBoss Tools Deltacloud Nightly Build Update Site">
+		<description>JBoss Tools Deltacloud Nightly Build Update Site: contains all features in this build.</description>
+	</category-def>
+	<feature url="features/org.jboss.tools.deltacloud_0.0.0.jar" id="org.jboss.tools.deltacloud" version="0.0.0">
+		<category name="JBoss Tools Deltacloud Nightly Build Update Site"/>
+	</feature>
+
+</site>



More information about the jbosstools-commits mailing list