Author: dgolovin
Date: 2010-08-17 21:12:08 -0400 (Tue, 17 Aug 2010)
New Revision: 24244
Added:
trunk/usage/features/
trunk/usage/features/org.jboss.tools.usage.test/
trunk/usage/features/org.jboss.tools.usage.test/.project
trunk/usage/features/org.jboss.tools.usage.test/build.properties
trunk/usage/features/org.jboss.tools.usage.test/feature.properties
trunk/usage/features/org.jboss.tools.usage.test/feature.xml
trunk/usage/features/org.jboss.tools.usage.test/pom.xml
trunk/usage/features/org.jboss.tools.usage/
trunk/usage/features/org.jboss.tools.usage/.project
trunk/usage/features/org.jboss.tools.usage/build.properties
trunk/usage/features/org.jboss.tools.usage/feature.properties
trunk/usage/features/org.jboss.tools.usage/feature.xml
trunk/usage/features/org.jboss.tools.usage/license.html
trunk/usage/features/org.jboss.tools.usage/pom.xml
trunk/usage/features/pom.xml
trunk/usage/plugins/org.jboss.tools.usage/plugin.properties
trunk/usage/plugins/org.jboss.tools.usage/pom.xml
trunk/usage/plugins/pom.xml
trunk/usage/pom.xml
trunk/usage/tests/org.jboss.tools.usage.test/pom.xml
Modified:
trunk/usage/plugins/org.jboss.tools.usage/META-INF/MANIFEST.MF
trunk/usage/site/site.xml
Log:
https://jira.jboss.org/browse/JBIDE-6857 Include Usage component into JBT build
pom.xml files for maven build added
missing features added just in case
update site for nightly builds is created
Added: trunk/usage/features/org.jboss.tools.usage/.project
===================================================================
--- trunk/usage/features/org.jboss.tools.usage/.project (rev 0)
+++ trunk/usage/features/org.jboss.tools.usage/.project 2010-08-18 01:12:08 UTC (rev
24244)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.jboss.tools.usage.feature</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.pde.FeatureBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.pde.FeatureNature</nature>
+ </natures>
+</projectDescription>
Added: trunk/usage/features/org.jboss.tools.usage/build.properties
===================================================================
--- trunk/usage/features/org.jboss.tools.usage/build.properties
(rev 0)
+++ trunk/usage/features/org.jboss.tools.usage/build.properties 2010-08-18 01:12:08 UTC
(rev 24244)
@@ -0,0 +1,3 @@
+bin.includes = feature.xml,\
+ license.html,\
+ feature.properties
Added: trunk/usage/features/org.jboss.tools.usage/feature.properties
===================================================================
--- trunk/usage/features/org.jboss.tools.usage/feature.properties
(rev 0)
+++ trunk/usage/features/org.jboss.tools.usage/feature.properties 2010-08-18 01:12:08 UTC
(rev 24244)
@@ -0,0 +1,54 @@
+###############################################################################
+# Copyright (c) 2008-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=JBoss Tools Usage Reporting
+
+# "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=JBoss Tools Usage Reporting
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=Copyright (c) 2008-2010 JBoss by Red Hat and others.\n\
+All rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\n\
+which accompanies this distribution, and is available at\n\
+http\://www.eclipse.org/legal/epl-v10.html\n\n\
+Contributors\:\n\
+JBoss 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 ##########################################
Added: trunk/usage/features/org.jboss.tools.usage/feature.xml
===================================================================
--- trunk/usage/features/org.jboss.tools.usage/feature.xml (rev
0)
+++ trunk/usage/features/org.jboss.tools.usage/feature.xml 2010-08-18 01:12:08 UTC (rev
24244)
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+ id="org.jboss.tools.usage"
+ label="%featureName"
+ version="1.0.0.qualifier"
+ provider-name="%providerName">
+
+ <description>
+ %description
+ </description>
+
+ <copyright>
+ %copyright
+ </copyright>
+
+ <license url="%licenseURL">
+ %license
+ </license>
+
+ <plugin
+ id="org.jboss.tools.usage"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+</feature>
Added: trunk/usage/features/org.jboss.tools.usage/license.html
===================================================================
--- trunk/usage/features/org.jboss.tools.usage/license.html (rev
0)
+++ trunk/usage/features/org.jboss.tools.usage/license.html 2010-08-18 01:12:08 UTC (rev
24244)
@@ -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/usage/features/org.jboss.tools.usage/license.html
___________________________________________________________________
Name: svn:executable
+ *
Added: trunk/usage/features/org.jboss.tools.usage/pom.xml
===================================================================
--- trunk/usage/features/org.jboss.tools.usage/pom.xml (rev 0)
+++ trunk/usage/features/org.jboss.tools.usage/pom.xml 2010-08-18 01:12:08 UTC (rev
24244)
@@ -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>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.parent.pom</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools.usage.features</groupId>
+ <artifactId>org.jboss.tools.usage</artifactId>
+ <name>org.jboss.tools.usage.feature</name>
+ <version>1.0.0-SNAPSHOT</version>
+ <packaging>eclipse-feature</packaging>
+</project>
Added: trunk/usage/features/org.jboss.tools.usage.test/.project
===================================================================
--- trunk/usage/features/org.jboss.tools.usage.test/.project (rev
0)
+++ trunk/usage/features/org.jboss.tools.usage.test/.project 2010-08-18 01:12:08 UTC (rev
24244)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.jboss.tools.usage.test.feature</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.pde.FeatureBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.pde.FeatureNature</nature>
+ </natures>
+</projectDescription>
Added: trunk/usage/features/org.jboss.tools.usage.test/build.properties
===================================================================
--- trunk/usage/features/org.jboss.tools.usage.test/build.properties
(rev 0)
+++ trunk/usage/features/org.jboss.tools.usage.test/build.properties 2010-08-18 01:12:08
UTC (rev 24244)
@@ -0,0 +1 @@
+bin.includes = feature.xml
Added: trunk/usage/features/org.jboss.tools.usage.test/feature.properties
===================================================================
--- trunk/usage/features/org.jboss.tools.usage.test/feature.properties
(rev 0)
+++ trunk/usage/features/org.jboss.tools.usage.test/feature.properties 2010-08-18 01:12:08
UTC (rev 24244)
@@ -0,0 +1,54 @@
+###############################################################################
+# Copyright (c) 2008-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=TPTP Profile On JBoss Server
+
+# "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=TPTP Profile On JBoss Server
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=Copyright (c) 2008-2010 JBoss by Red Hat and others.\n\
+All rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\n\
+which accompanies this distribution, and is available at\n\
+http\://www.eclipse.org/legal/epl-v10.html\n\n\
+Contributors\:\n\
+JBoss 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 ##########################################
Added: trunk/usage/features/org.jboss.tools.usage.test/feature.xml
===================================================================
--- trunk/usage/features/org.jboss.tools.usage.test/feature.xml
(rev 0)
+++ trunk/usage/features/org.jboss.tools.usage.test/feature.xml 2010-08-18 01:12:08 UTC
(rev 24244)
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+ id="org.jboss.tools.usage.test"
+ label="JBoss Tools Usage Reporting Test Feature"
+ version="1.0.0.qualifier">
+
+ <description
url="http://www.example.com/description">
+ [Enter Feature Description here.]
+ </description>
+
+ <copyright
url="http://www.example.com/copyright">
+ [Enter Copyright Description here.]
+ </copyright>
+
+ <license
url="http://www.example.com/license">
+ [Enter License Description here.]
+ </license>
+
+ <plugin
+ id="org.jboss.tools.usage.test"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+</feature>
Added: trunk/usage/features/org.jboss.tools.usage.test/pom.xml
===================================================================
--- trunk/usage/features/org.jboss.tools.usage.test/pom.xml (rev
0)
+++ trunk/usage/features/org.jboss.tools.usage.test/pom.xml 2010-08-18 01:12:08 UTC (rev
24244)
@@ -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>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.parent.pom</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools.usage.features</groupId>
+ <artifactId>org.jboss.tools.usage.test</artifactId>
+ <name>org.jboss.tools.usage.test.feature</name>
+ <version>1.0.0-SNAPSHOT</version>
+ <packaging>eclipse-feature</packaging>
+</project>
Added: trunk/usage/features/pom.xml
===================================================================
--- trunk/usage/features/pom.xml (rev 0)
+++ trunk/usage/features/pom.xml 2010-08-18 01:12:08 UTC (rev 24244)
@@ -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.usage</groupId>
+ <artifactId>features</artifactId>
+ <name>usage.features</name>
+ <version>0.0.1-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <modules>
+ <module>org.jboss.tools.usage</module>
+ <module>org.jboss.tools.usage.test</module>
+ </modules>
+</project>
+
Modified: trunk/usage/plugins/org.jboss.tools.usage/META-INF/MANIFEST.MF
===================================================================
--- trunk/usage/plugins/org.jboss.tools.usage/META-INF/MANIFEST.MF 2010-08-18 00:38:18 UTC
(rev 24243)
+++ trunk/usage/plugins/org.jboss.tools.usage/META-INF/MANIFEST.MF 2010-08-18 01:12:08 UTC
(rev 24244)
@@ -1,9 +1,9 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
-Bundle-Name: JBoss Tools Usage Reporting
+Bundle-Name: %BundleName
Bundle-SymbolicName: org.jboss.tools.usage;singleton:=true
Bundle-Version: 1.0.0.qualifier
-Bundle-RequiredExecutionEnvironment: J2SE-1.5
+Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Export-Package: org.jboss.tools.usage,
org.jboss.tools.usage.googleanalytics,
org.jboss.tools.usage.internal;x-friends:="org.jboss.tools.usage.test",
@@ -14,3 +14,4 @@
org.eclipse.ui;bundle-version="3.5.0"
Bundle-ActivationPolicy: lazy
Bundle-Activator: org.jboss.tools.usage.internal.JBossToolsUsageActivator
+Bundle-Vendor: %BundleVendor
Added: trunk/usage/plugins/org.jboss.tools.usage/plugin.properties
===================================================================
--- trunk/usage/plugins/org.jboss.tools.usage/plugin.properties
(rev 0)
+++ trunk/usage/plugins/org.jboss.tools.usage/plugin.properties 2010-08-18 01:12:08 UTC
(rev 24244)
@@ -0,0 +1,2 @@
+BundleName=JBoss Tools Usage Reporting
+BundleVendor=JBoss by Red Hat
\ No newline at end of file
Property changes on: trunk/usage/plugins/org.jboss.tools.usage/plugin.properties
___________________________________________________________________
Name: svn:executable
+ *
Added: trunk/usage/plugins/org.jboss.tools.usage/pom.xml
===================================================================
--- trunk/usage/plugins/org.jboss.tools.usage/pom.xml (rev 0)
+++ trunk/usage/plugins/org.jboss.tools.usage/pom.xml 2010-08-18 01:12:08 UTC (rev 24244)
@@ -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.usage.plugins</groupId>
+ <artifactId>org.jboss.tools.usage</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>
Added: trunk/usage/plugins/pom.xml
===================================================================
--- trunk/usage/plugins/pom.xml (rev 0)
+++ trunk/usage/plugins/pom.xml 2010-08-18 01:12:08 UTC (rev 24244)
@@ -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.usage</groupId>
+ <artifactId>plugins</artifactId>
+ <name>usage.plugins</name>
+ <version>0.0.1-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <modules>
+ <module>org.jboss.tools.usage</module>
+ </modules>
+</project>
+
Added: trunk/usage/pom.xml
===================================================================
--- trunk/usage/pom.xml (rev 0)
+++ trunk/usage/pom.xml 2010-08-18 01:12:08 UTC (rev 24244)
@@ -0,0 +1,16 @@
+<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>usage</artifactId>
+ <name>usage.all</name>
+ <version>0.0.1-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <modules>
+ <module>features</module>
+ <module>plugins</module>
+ <module>site</module>
+ <module>tests</module>
+ </modules>
+</project>
+
Modified: trunk/usage/site/site.xml
===================================================================
--- trunk/usage/site/site.xml 2010-08-18 00:38:18 UTC (rev 24243)
+++ trunk/usage/site/site.xml 2010-08-18 01:12:08 UTC (rev 24244)
@@ -1,12 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<site>
<description>To install these features, point Eclipse at this
site.</description>
- <!-- JBoss Tools Usage Tracking Nightly Build Update Site -->
- <category-def label="JBoss Tools Usage Tracking Nightly Build Update Site"
name="JBoss Tools Usage Tracking Nightly Build Update Site">
- <description>JBoss Tools Usage Tracking Nightly Build Update Site: contains all
features in this build.</description>
+ <!-- JBoss Tools JBoss Tools Usage Reporting Nightly Build Update Site -->
+ <category-def label="JBoss Tools JBoss Tools Usage Reporting Nightly Build
Update Site" name="JBoss Tools JBoss Tools Usage Reporting Nightly Build Update
Site">
+ <description>JBoss Tools JBoss Tools Usage Reporting Nightly Build Update Site:
contains all features in this build.</description>
</category-def>
<feature url="features/org.jboss.tools.usage_0.0.0.jar"
id="org.jboss.tools.usage" version="0.0.0">
- <category name="JBoss Tools Usage Tracking Nightly Build Update
Site"/>
+ <category name="JBoss Tools JBoss Tools Usage Reporting Nightly Build Update
Site"/>
</feature>
</site>
Added: trunk/usage/tests/org.jboss.tools.usage.test/pom.xml
===================================================================
--- trunk/usage/tests/org.jboss.tools.usage.test/pom.xml (rev 0)
+++ trunk/usage/tests/org.jboss.tools.usage.test/pom.xml 2010-08-18 01:12:08 UTC (rev
24244)
@@ -0,0 +1,17 @@
+<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.usage.tests</groupId>
+ <artifactId>org.jboss.tools.usage.test</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+ <properties>
+ <emma.filter/>
+ <emma.instrument.bundles/>
+ </properties>
+</project>