JBoss Tools SVN: r31842 - trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/xpl.
by jbosstools-commits@lists.jboss.org
Author: adietish
Date: 2011-06-06 05:40:57 -0400 (Mon, 06 Jun 2011)
New Revision: 31842
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/xpl/PublishCopyUtil.java
Log:
[JBIDE-9054] added generics to list creations, removed unnecessary warnings
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/xpl/PublishCopyUtil.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/xpl/PublishCopyUtil.java 2011-06-06 03:18:51 UTC (rev 31841)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/xpl/PublishCopyUtil.java 2011-06-06 09:40:57 UTC (rev 31842)
@@ -332,7 +332,7 @@
if (!dir.exists() || !dir.isDirectory())
return new IStatus[] { new Status(IStatus.ERROR, ServerPlugin.PLUGIN_ID, 0, NLS.bind(Messages.errorNotADirectory, dir.getAbsolutePath()), null) };
- List status = new ArrayList(2);
+ List<IStatus> status = new ArrayList<IStatus>(2);
try {
File[] files = dir.listFiles();
@@ -368,9 +368,7 @@
status.add(new Status(IStatus.ERROR, ServerPlugin.PLUGIN_ID, 0, e.getLocalizedMessage(), null));
}
- IStatus[] stat = new IStatus[status.size()];
- status.toArray(stat);
- return stat;
+ return status.toArray(new IStatus[status.size()]);
}
/**
@@ -446,16 +444,14 @@
monitor = ProgressUtil.getMonitorFor(monitor);
- List status = new ArrayList(2);
+ List<IStatus> status = new ArrayList<IStatus>(2);
int size2 = delta.length;
for (int i = 0; i < size2; i++) {
IStatus[] stat = publishDelta(delta[i], new Path("/"), monitor); //$NON-NLS-1$
addArrayToList(status, stat);
}
- IStatus[] stat = new IStatus[status.size()];
- status.toArray(stat);
- return stat;
+ return status.toArray(new IStatus[status.size()]);
}
/**
@@ -468,7 +464,7 @@
* @return a possibly-empty array of error and warning status
*/
public IStatus[] publishDelta(IModuleResourceDelta delta, IPath path, IProgressMonitor monitor) throws CoreException {
- List status = new ArrayList(2);
+ List<IStatus> status = new ArrayList<IStatus>(2);
if( monitor.isCanceled())
return canceledStatus();
@@ -486,9 +482,7 @@
handler.makeDirectoryIfRequired(path2.removeLastSegments(1), monitor);
handler.copyFile(file, path2, monitor);
}
- IStatus[] stat = new IStatus[status.size()];
- status.toArray(stat);
- return stat;
+ return status.toArray(new IStatus[status.size()]);
}
if (kind2 == IModuleResourceDelta.ADDED) {
@@ -548,7 +542,7 @@
protected IStatus[] publishFull(IModuleResource[] resources, IPath relative, IProgressMonitor monitor) throws CoreException {
if (resources == null)
return EMPTY_STATUS;
- List status = new ArrayList(2);
+ List<IStatus> status = new ArrayList<IStatus>(2);
int size = resources.length;
for (int i = 0; i < size; i++) {
if( monitor.isCanceled())
@@ -556,15 +550,13 @@
IStatus[] stat = copy(resources[i], relative, monitor);
addArrayToList(status, stat);
}
- IStatus[] stat = new IStatus[status.size()];
- status.toArray(stat);
- return stat;
+ return status.toArray(new IStatus[status.size()]);
}
private IStatus[] copy(IModuleResource resource, IPath path, IProgressMonitor monitor) throws CoreException {
String name = resource.getName();
//Trace.trace(Trace.PUBLISHING, "Copying: " + name + " to " + path.toString());
- List status = new ArrayList(2);
+ List<IStatus> status = new ArrayList<IStatus>(2);
if (resource instanceof IModuleFolder) {
IModuleFolder folder = (IModuleFolder) resource;
IModuleResource[] children = folder.members();
@@ -585,12 +577,10 @@
addArrayToList(status, handler.copyFile(mf, path,
AbstractServerToolsPublisher.getSubMon(monitor, 100)));
}
- IStatus[] stat = new IStatus[status.size()];
- status.toArray(stat);
- return stat;
+ return status.toArray(new IStatus[status.size()]);
}
- public static void addArrayToList(List list, IStatus[] a) {
+ public static void addArrayToList(List<IStatus> list, IStatus[] a) {
if (list == null || a == null || a.length == 0)
return;
14 years, 10 months
JBoss Tools SVN: r31841 - in trunk/bpel/docs/reference/en-US: images/reference and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2011-06-05 23:18:51 -0400 (Sun, 05 Jun 2011)
New Revision: 31841
Added:
trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_06.png
trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_07.png
trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_08.png
trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_09.png
trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_10.png
trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_11.png
trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_12.png
trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_13.png
trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_14.png
trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_15.png
trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_16.png
trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_17.png
trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_18.png
trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_19.png
trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_20.png
trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_21.png
trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_22.png
trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_23.png
trunk/bpel/docs/reference/en-US/images/reference/Fault_Activities_01.png
trunk/bpel/docs/reference/en-US/images/reference/Fault_Activities_02.png
trunk/bpel/docs/reference/en-US/images/reference/Fault_Activities_03.png
trunk/bpel/docs/reference/en-US/images/reference/Fault_Activities_04.png
trunk/bpel/docs/reference/en-US/images/reference/Fault_Activities_05.png
trunk/bpel/docs/reference/en-US/images/reference/Handlers_01.png
trunk/bpel/docs/reference/en-US/images/reference/Handlers_02.png
trunk/bpel/docs/reference/en-US/images/reference/Handlers_03.png
trunk/bpel/docs/reference/en-US/images/reference/Handlers_04.png
trunk/bpel/docs/reference/en-US/images/reference/Handlers_05.png
trunk/bpel/docs/reference/en-US/images/reference/Handlers_06.png
trunk/bpel/docs/reference/en-US/images/reference/Handlers_07.png
trunk/bpel/docs/reference/en-US/images/reference/Handlers_08.png
trunk/bpel/docs/reference/en-US/images/reference/Handlers_09.png
Modified:
trunk/bpel/docs/reference/en-US/reference.xml
Log:
updated with new content in references chapter
Added: trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_06.png
===================================================================
(Binary files differ)
Property changes on: trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_06.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_07.png
===================================================================
(Binary files differ)
Property changes on: trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_07.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_08.png
===================================================================
(Binary files differ)
Property changes on: trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_08.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_09.png
===================================================================
(Binary files differ)
Property changes on: trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_09.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_10.png
===================================================================
(Binary files differ)
Property changes on: trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_10.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_11.png
===================================================================
(Binary files differ)
Property changes on: trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_11.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_12.png
===================================================================
(Binary files differ)
Property changes on: trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_12.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_13.png
===================================================================
(Binary files differ)
Property changes on: trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_13.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_14.png
===================================================================
(Binary files differ)
Property changes on: trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_14.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_15.png
===================================================================
(Binary files differ)
Property changes on: trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_15.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_16.png
===================================================================
(Binary files differ)
Property changes on: trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_16.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_17.png
===================================================================
(Binary files differ)
Property changes on: trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_17.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_18.png
===================================================================
(Binary files differ)
Property changes on: trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_18.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_19.png
===================================================================
(Binary files differ)
Property changes on: trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_19.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_20.png
===================================================================
(Binary files differ)
Property changes on: trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_20.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_21.png
===================================================================
(Binary files differ)
Property changes on: trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_21.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_22.png
===================================================================
(Binary files differ)
Property changes on: trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_22.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_23.png
===================================================================
(Binary files differ)
Property changes on: trunk/bpel/docs/reference/en-US/images/reference/BPEL_Designer_23.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/bpel/docs/reference/en-US/images/reference/Fault_Activities_01.png
===================================================================
(Binary files differ)
Property changes on: trunk/bpel/docs/reference/en-US/images/reference/Fault_Activities_01.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/bpel/docs/reference/en-US/images/reference/Fault_Activities_02.png
===================================================================
(Binary files differ)
Property changes on: trunk/bpel/docs/reference/en-US/images/reference/Fault_Activities_02.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/bpel/docs/reference/en-US/images/reference/Fault_Activities_03.png
===================================================================
(Binary files differ)
Property changes on: trunk/bpel/docs/reference/en-US/images/reference/Fault_Activities_03.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/bpel/docs/reference/en-US/images/reference/Fault_Activities_04.png
===================================================================
(Binary files differ)
Property changes on: trunk/bpel/docs/reference/en-US/images/reference/Fault_Activities_04.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/bpel/docs/reference/en-US/images/reference/Fault_Activities_05.png
===================================================================
(Binary files differ)
Property changes on: trunk/bpel/docs/reference/en-US/images/reference/Fault_Activities_05.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/bpel/docs/reference/en-US/images/reference/Handlers_01.png
===================================================================
(Binary files differ)
Property changes on: trunk/bpel/docs/reference/en-US/images/reference/Handlers_01.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/bpel/docs/reference/en-US/images/reference/Handlers_02.png
===================================================================
(Binary files differ)
Property changes on: trunk/bpel/docs/reference/en-US/images/reference/Handlers_02.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/bpel/docs/reference/en-US/images/reference/Handlers_03.png
===================================================================
(Binary files differ)
Property changes on: trunk/bpel/docs/reference/en-US/images/reference/Handlers_03.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/bpel/docs/reference/en-US/images/reference/Handlers_04.png
===================================================================
(Binary files differ)
Property changes on: trunk/bpel/docs/reference/en-US/images/reference/Handlers_04.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/bpel/docs/reference/en-US/images/reference/Handlers_05.png
===================================================================
(Binary files differ)
Property changes on: trunk/bpel/docs/reference/en-US/images/reference/Handlers_05.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/bpel/docs/reference/en-US/images/reference/Handlers_06.png
===================================================================
(Binary files differ)
Property changes on: trunk/bpel/docs/reference/en-US/images/reference/Handlers_06.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/bpel/docs/reference/en-US/images/reference/Handlers_07.png
===================================================================
(Binary files differ)
Property changes on: trunk/bpel/docs/reference/en-US/images/reference/Handlers_07.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/bpel/docs/reference/en-US/images/reference/Handlers_08.png
===================================================================
(Binary files differ)
Property changes on: trunk/bpel/docs/reference/en-US/images/reference/Handlers_08.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/bpel/docs/reference/en-US/images/reference/Handlers_09.png
===================================================================
(Binary files differ)
Property changes on: trunk/bpel/docs/reference/en-US/images/reference/Handlers_09.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Modified: trunk/bpel/docs/reference/en-US/reference.xml
===================================================================
--- trunk/bpel/docs/reference/en-US/reference.xml 2011-06-04 22:49:28 UTC (rev 31840)
+++ trunk/bpel/docs/reference/en-US/reference.xml 2011-06-06 03:18:51 UTC (rev 31841)
@@ -579,7 +579,7 @@
The <guilabel>Details</guilabel> tab allows you to select one of four basic actions: <property>Invoke</property>, <property>Receive</property>, <property>Reply</property> and <property>Assign</property>. Hovering the mouse over one of the selection buttons displays a brief description of that activity.
</para>
</section>
- <section>
+ <section id="Reference-Details_tab-Invoke">
<title>Invoke</title>
<figure>
<title>Invoke</title>
@@ -596,7 +596,7 @@
The checkbox labeled <guilabel>Use WSDL Message Parts Mapping</guilabel> provides an alternative to using variables for the request message.
</para>
</section>
- <section>
+ <section id="Reference-Details_tab-Receive">
<title>Receive</title>
<figure>
<title>Receive</title>
@@ -613,7 +613,7 @@
The <guilabel>Create a new Process Instance</guilabel> checkbox, when enabled, will cause the BPEL engine to start a new process. This will start a new conversation with a client.
</para>
</section>
- <section>
+ <section id="Reference-Details_tab-Reply">
<title>Reply</title>
<figure>
<title>Reply</title>
@@ -641,7 +641,7 @@
</mediaobject>
</figure>
</section>
- <section>
+ <section id="Reference-Details_tab-Assign">
<title>Assign</title>
<para>
The <property>Assign</property> section is probably one of the more complex pages in the BPEL Designer, due to the nature of the BPEL <property>Assign</property> activity. The figure below shows the detail tab of an empty <property>Assign</property> activity with callouts describing each component:
@@ -804,7 +804,7 @@
</tgroup>
</table>
</section>
- <section>
+ <section id="Reference-Details_tab-Validate">
<title>Validate</title>
<figure>
<title>Validate</title>
@@ -860,7 +860,7 @@
The <property>Pick</property> details tab allows you to specify whether the event will create a new process instance. <!-- See also the discussion of the Pick Activity. -->
</para>
</section>
- <section>
+ <section id="Reference-Details_tab-OnMessage">
<title>OnMessage</title>
<figure>
<title>OnMessage</title>
@@ -877,7 +877,7 @@
The <guilabel>Details</guilabel> tab allows you to specify the <property>Partner Link</property>, <property>Operation</property> and <property>Message Type</property> expected by the activity, and the process variable that will contain the received message data.
</para>
</section>
- <section>
+ <section id="Reference-Details_tab-OnAlarm">
<title>OnAlarm</title>
<figure>
<title>OnAlarm</title>
@@ -941,7 +941,7 @@
The optional <guilabel>Completion</guilabel> tab allows you to specify the early termination condition for the loop.
</para>
</section>
- <section>
+ <section id="Reference-Details_tab-Wait">
<title>Wait</title>
<figure>
<title>Wait</title>
@@ -1089,11 +1089,532 @@
<imageobject>
<imagedata fileref="images/reference/BPEL_Designer_05.png"/>
</imageobject>
- </inlinemediaobject> activities. These do not correspond to actual BPEL elements however, and are simply placeholders for visualizing the beginning and end of the process flow:
+ </inlinemediaobject> activities. These do not correspond to actual BPEL elements however, and are simply placeholders for visualizing the beginning and end of the process flow.
</para>
</section>
+ <section>
+ <title>Assign</title>
+ <figure>
+ <title>Assign activity</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/reference/BPEL_Designer_06.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ The <property>Assign</property> activity allows you to manipulate variables and message contents that are defined in the process. See <xref linkend="Reference-Details_tab-Assign" /> for more information.
+ </para>
+ </section>
+ <section>
+ <title>Invoke</title>
+ <figure>
+ <title>Invoke activity</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/reference/BPEL_Designer_07.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ The <property>Invoke</property> activity is used to send a message to an external service (one-way invocation), and optionally wait for a response (request and response). An <property>Invoke</property> can also define a compensation handler and a fault handler to handle exception conditions. See <xref linkend="Reference-Details_tab-Invoke" /> for more information.
+ </para>
+ </section>
+ <section>
+ <title>Receive</title>
+ <figure>
+ <title>Receive activity</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/reference/BPEL_Designer_08.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ The <property>Receive</property> activity will wait for a specific message type from a service client. See <xref linkend="Reference-Details_tab-Receive" /> for more information.
+ </para>
+ </section>
+ <section>
+ <title>Reply</title>
+ <figure>
+ <title>Reply activity</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/reference/BPEL_Designer_09.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ The <property>Reply</property> activity is used to respond to clients with a specific message type, or fault message (if defined for the process interface). See <xref linkend="Reference-Details_tab-Reply" /> for more information.
+ </para>
+ </section>
+ <section>
+ <title>Validate</title>
+ <figure>
+ <title>Validate Input activity</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/reference/BPEL_Designer_10.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ The <property>Validate</property> activity is used to validate the values of variables against their XML Schema and WSDL data definitions. This includes the variable’s data type as well as structure. If validation fails, the BPEL standard fault invalidVariables is thrown.
+ </para>
+ <para>
+ Validation is typically performed just before sending messages to a partner or client, or after receiving a message to ensure the message contains all required data and that the data is as expected. See <xref linkend="Reference-Details_tab-Validate" /> for more information.
+ </para>
+ </section>
+ <section>
+ <title>Wait</title>
+ <figure>
+ <title>Wait activity</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/reference/BPEL_Designer_11.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ A <property>Wait</property> activity will delay process execution for a certain amount of time, or until a given date and time; this is typically used to invoke an operation at a certain time. For example to update process state hourly or daily, or to collect some information from another service at a certain time of day. See <xref linkend="Reference-Details_tab-Wait" /> for more information.
+ </para>
+ </section>
</section>
- </section>
+ <section>
+ <title>Structured activities</title>
+ <para>
+ Structured activities can be thought of as containers that can hold one or more activities. The <guilabel>Controls</guilabel> section of the <guilabel>Palette</guilabel> contains all of the <emphasis>structured activities</emphasis>. When you drag and drop one of these onto the drawing canvas, the BPEL Designer will create a basic skeleton of the activity, and assign default properties.
+ </para>
+ <para>
+ All structured activities will require some additional configuration before they are considered valid. For example, BPEL does not allow an empty <property>Sequence</property> activity. Invalid structured activities will be decorated with an error icon similar to basic activities.
+ </para>
+ <para>
+ Structured activities can be expanded and collapsed on the drawing canvas by clicking the plus and minus buttons at the bottom of the figure. Illustrated below is a collapsed and expanded <property>Sequence</property>:
+ </para>
+ <figure>
+ <title>Collapsed Sequence</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/reference/BPEL_Designer_12.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <figure>
+ <title>Expanded Sequence</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/reference/BPEL_Designer_13.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ The following sections describe the structured activities and how each must be configured to be considered vaid for BPEL.
+ </para>
+ <section>
+ <title>If</title>
+ <figure>
+ <title>If, ElseIf and Else</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/reference/BPEL_Designer_14.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ The <property>If</property> activity allows conditional execution of one or more sequences of activities. It consists of a sequence of one or more conditional branches defined by <property>If</property> and optional <property>ElseIf</property> elements. The elements are evaluated in left-to-right order (or top-to-bottom if you have selected horizontal layout). An optional <property>Else</property> branch will be executed if none of the other conditions are true.
+ </para>
+ <para>
+ An <property>If</property> activity must define a condition (expressed as an XPath) and an activity which is executed if the condition evaluates true. To insert additional <property>ElseIf</property> and <property>Else</property> elements, right-click the <property>If</property> figure and select the desired element from the context menu. The figure above shows a complete <property>If</property> activity with optional <property>ElseIf</property> and <property>Else</property> elements.
+ </para>
+ </section>
+ <section>
+ <title>Pick</title>
+ <figure>
+ <title>Pick</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/reference/BPEL_Designer_15.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ The <property>Pick</property> activity will cause the process to wait for one of any number of messages to be received. An optional timer can be set to limit the time to wait for receipt of these messages. Activities to handle receipt of messages and timer expiration are defined in the <property>Pick</property>. Message receipts are handled by <property>OnMessage</property> activities (<xref linkend="Reference-Details_tab-OnMessage" />), and timer expiration is handled by the <property>OnAlaram</property> activity (<xref linkend="Reference-Details_tab-OnAlarm" />).
+ </para>
+ </section>
+ <section>
+ <title>While</title>
+ <figure>
+ <title>While</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/reference/BPEL_Designer_16.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ The <property>While</property> activity repeatedly executes the contained activity as long as a condition evaluates true at the beginning of each iteration. A <property>While</property> activity must define a condition and must contain an activity.
+ </para>
+ </section>
+ <section>
+ <title>ForEach</title>
+ <figure>
+ <title>ForEach</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/reference/BPEL_Designer_17.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ <property>ForEach</property> is a looping activity that executes the activities contained in its <property>Scope</property> a specified number of times. A counter variable, defined in the <property>ForEach</property> property detail tab, is used to keep track of the iterations. The <property>ForEach</property> properties must be configured with starting and ending value expressions for this counter variable. The counter is initially set to the starting value and activities in the <property>Scope</property> are executed until the counter exceeds the ending value.
+ </para>
+ <para>
+ This activity can also be configured to execute all iterations in parallel, meaning the enclosed <property>Scope</property> activity behaves as if multiple <property>Scopes</property> are enclosed in a <property>Flow</property> activity.
+ </para>
+ <para>
+ An optional early termination value can be defined, which will cause the loop to complete before the counter has reached its ending value. The <property>ForEach</property> will complete when the counter is equal to this early termination value for the sequential execution case. For the parallel execution case, the early termination value is the number of completed iterations. For example, the <property>ForEach</property> completes when at least <emphasis>some number</emphasis> of <emphasis>some action</emphasis> have finished.
+ </para>
+ </section>
+ <section>
+ <title>RepeatUntil</title>
+ <figure>
+ <title>RepeatUntil</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/reference/BPEL_Designer_18.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ The <property>RepeatUntil</property> activity repeatedly executes the contained activity as long as a condition evaluates true at the end of each iteration. A condition must be defined for a <property>RepeatUntil</property>, and it must contain an activity.
+ </para>
+ </section>
+ <section>
+ <title>Sequence</title>
+ <para>
+ A <property>Sequence</property> is a container for one or more other activities, which are executed in sequential order and (unlike <property>Scope</property> and <property>Flow</property> activities), has no other special characteristics. Because the conditional activities (<property>If</property>, <property>While</property>, <property>RepeatUntil</property> and <property>ForEach</property>) can have only one activity as the target of their execution, a <property>Sequence</property> is typically used to execute multiple activities.
+ </para>
+ <para>
+ For example, the <property>If</property> shown below contains only a single Assign activity:
+ </para>
+ <figure>
+ <title>Sequence</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/reference/BPEL_Designer_19.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ If it were necessary to perform an assignment and then invoke another web service, the <property>Assign</property> and <property>Invoke</property> could be contained within a <property>Sequence</property>. The <property>Sequence</property> would then become the target of the <property>If</property>:
+ </para>
+ <figure>
+ <title>Sequence</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/reference/BPEL_Designer_20.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <note>
+ <para>
+ The BPEL Designer will automatically create a <property>Sequence</property> if you drag-drop a second activity into any of the conditional activities.
+ </para>
+ </note>
+ </section>
+ <section>
+ <title>Scope</title>
+ <figure>
+ <title>Scope</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/reference/BPEL_Designer_21.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ A <property>Scope</property> provides a context for its enclosed activity. This context includes variables, partner links, message exchanges, correlation sets, event handlers, fault handlers, a compensation handler and a termination handler. These <property>Scope</property> contexts can be nested hierarchically where the root context is provided by the process itself.
+ </para>
+ <para>
+ A <property>Scope</property> can be thought of as a compartmentalized sub-process. If the <property>Scope</property> is declared as being <emphasis>isolated</emphasis>, then the variables and partner links shared with the process are locked to prevent other concurrent <property>Scopes</property> from altering them while a <property>Scope</property> is executing. <property>Scope</property> may also be nested to any depth and all variables, partner links and others defined in a <property>Scope</property>, are inherited by its children. Refer to <xref linkend="Reference-BPEL_Designer-Structured_Activities-Flow" /> for a discussion of concurrent execution.
+ </para>
+ <para>
+ To be valid, a <property>Scope</property> must have a single activity. The typical use of a Scope activity is to invoke a service and wait for a response message or timeout. In the above figure, the <property>Scope</property> has defined a message variable and a partner link used to interact with the invoked service.
+ </para>
+ </section>
+ <section id="Reference-BPEL_Designer-Structured_Activities-Flow">
+ <title>Flow</title>
+ <para>
+ The <property>Flow</property> activity allows multiple activities to be executed in parallel. All activities or <property>Sequences</property> of activities that are contained in a <property>Flow</property>, are executed (or begun) at the same time by the BPEL engine. A <property>Flow</property> completes when all of its enclosed activities have completed.
+ </para>
+ <para>
+ Parallel processing is typically used to save time by doing more than one thing at a time and as a result, speed up the process. However, in many situations several tasks can be started at the same time, but one or more tasks may depend on the successful completion of other tasks. This task dependency sequencing is called <emphasis>synchronization</emphasis> and is achieved using <property>Links</property>.
+ </para>
+ <para>
+ For example, a process that handles purchase orders for material goods needs to:
+ </para>
+ <orderedlist>
+ <listitem>
+ <para>
+ Calculate the total order price
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Calculate shipping costs for the order
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Send a customer invoice
+ </para>
+ </listitem>
+ </orderedlist>
+ <para>
+ All of these activities can be started at the same time, however the shipping cost must be finalized before the total order price can be determined, and the invoice can be sent.
+ </para>
+ <para>
+ To create a <property>Link</property>, right-click on the activity that must be completed first (the activity that is the <emphasis>source</emphasis> of the dependency) and select <guimenuitem>Add Link</guimenuitem> from the context menu. Next, move the mouse to the activity in the <property>Flow</property> that depends on this one (the <emphasis>target</emphasis>) and click the left mouse button to create the link.
+ </para>
+ <para>
+ A <property>Link</property> is identified by a name that must be unique within the <property>Flow</property>. The BPEL Designer generates a reasonable default name, but you can change this in its properties. You can also add a test to the <property>Link</property> that defines the conditions for considering an activity to be complete. For example an activity in a <property>Flow</property> may require two pieces of information, provided by other services, in order to continue. Consider the process <property>Flow</property> shown below:
+ </para>
+ <figure>
+ <title>Flow example</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/reference/BPEL_Designer_22.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ In this example, the <emphasis>Billing</emphasis> department can begin preparation of a customer invoice, but it needs to know if sufficient stock is on hand to fulfill the order and if an outside vendor needs to provide the additional quantities ordered. The following condition would enable the <property>Link</property> so that execution can continue for the price calculation and customer invoicing:
+ </para>
+ <figure>
+ <title>Link example</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/reference/BPEL_Designer_23.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ This process is only partially complete though as it does not consider the number of outside vendors, or if the total quantity being ordered can ever be filled.
+ </para>
+ </section>
+ </section>
+ <section>
+ <title>Fault Activities</title>
+ <para>
+ Fault activities cause the normal process execution flow to jump to a specialized handler, similar to exceptions in modern programming languages. There are five different types of fault activities, described in this section.
+ </para>
+ <section>
+ <title>Exit</title>
+ <figure>
+ <title>Exit</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/reference/Fault_Activities_01.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ The <property>Exit</property> activity causes the process to immediately terminate.
+ </para>
+ </section>
+ <section>
+ <title>Throw</title>
+ <figure>
+ <title>Throw</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/reference/Fault_Activities_02.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ The <property>Throw</property> activity propagates a specified fault to its ancestor <property>Scope</property>, or the process itself.
+ </para>
+ </section>
+ <section>
+ <title>Rethrow</title>
+ <figure>
+ <title>Rethrow</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/reference/Fault_Activities_03.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ A <property>Rethrow</property> activity can only be used inside a fault handler. It is used to propagate the fault that was caught by the handler, using the original fault data.
+ </para>
+ </section>
+ <section>
+ <title>Compensate</title>
+ <figure>
+ <title>Compensate</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/reference/Fault_Activities_04.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ The <property>Compensate</property> activity is used to invoke a compensation handler. This activity can only be used within a fault handler, compensation handler or termination handler.
+ </para>
+ </section>
+ <section>
+ <title>CompensateScope</title>
+ <figure>
+ <title>CompensateScope</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/reference/Fault_Activities_05.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ The <property>CompensateScope</property> activity is used to invoke a compensation handler in the enclosing <property>Scope</property>. This activity can only be used within a fault handler, compensation handler or termination handler.
+ </para>
+ </section>
+ </section>
+ <section>
+ <title>Faulot, compensation, termination and event handlers</title>
+ <para>
+ Handlers allow a BPEL process to recover from exception conditions. Exception conditions include: a timeout waiting for a response from a partner service, invalid or missing message data, a fault condition returned by a service. There are four types of handlers:
+ </para>
+ <itemizedlist>
+ <listitem>
+ <para>
+ Fault handler <inlinemediaobject>
+ <imageobject>
+ <imagedata fileref="images/reference/Handlers_01.png"/>
+ </imageobject>
+ </inlinemediaobject>: Executed when a fauly is thrown by an activity.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Compensation handler <inlinemediaobject>
+ <imageobject>
+ <imagedata fileref="images/reference/Handlers_02.png"/>
+ </imageobject>
+ </inlinemediaobject>: Executed when the BPEL process encounters a <property>Compensate</property> or <property>CompensateScope</property> activity.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Temination handler <inlinemediaobject>
+ <imageobject>
+ <imagedata fileref="images/reference/Handlers_03.png"/>
+ </imageobject>
+ </inlinemediaobject>: Executed if a <property>Scope</property> is forced to terminate early.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Event handler <inlinemediaobject>
+ <imageobject>
+ <imagedata fileref="images/reference/Handlers_04.png"/>
+ </imageobject>
+ </inlinemediaobject>: Executed for events include the receipt of a message and a timer expiration.
+ </para>
+ </listitem>
+ </itemizedlist>
+ <para>
+ Handlers are defined for the process or for certain activities. To create a new handler right-click an activity and select the desired handler from its context menu. The BPEL Designer will generate a skeleton of the handler within a collapsible window that is attached to the activity. The figure below illustrates all of the different types of handlers in their fully expanded view. The handler windows can be collapsed and expanded by clicking on their respective icon.
+ </para>
+ <figure>
+ <title>Handlers overview</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/reference/Handlers_05.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ The behavior of handlers and the order of exception processing is complex and beyond the scope of this document. Refer to the OASIS WS-BPEL 2.0 specification at <ulink url="http://docs.oasis-open.org/wsbpel/2.0/wsbpel-v2.0.html">http://docs.oasis-open.org/wsbpel/2.0/wsbpel-v2.0.html</ulink> for more information.
+ </para>
+ <section>
+ <title>Process-level Handlers</title>
+ <figure>
+ <title>Start activity with handlers</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/reference/Handlers_06.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ Fault and event handlers can be defined for the process by right-clicking the <property>Start</property> activity and selecting the desired handler from the context menu.
+ </para>
+ </section>
+ <section>
+ <title>Scope-level handlers</title>
+ <para>
+ A <property>Scope</property> may have any handler. Since <property>Scopes</property> can be nested, each level can define its own set of handlers. Events that are not caught and processed by a handler in an inner <property>Scope</property>, will be propagated to its ancestors.
+ </para>
+ </section>
+ <section>
+ <title>Activity-level handlers</title>
+ <para>
+ Only the <property>Invoke</property> activity can define handlers. The handlers available to it are the fault and compensation handlers.
+ </para>
+ </section>
+ </section>
+ <section>
+ <title>Correlation Sets</title>
+ <para>
+ Correlation sets are used to identify ongoing conversations between a client and the BPEL process. Typically, a correlation is an element in a message that uniquely identifies the conversation between client and service; for example, an Order ID or Social Security Number. This also identifies a specific process instance being managed by the BPEL engine.
+ </para>
+ <para>
+ In many cases a single element of a message is not enough to make it unique, so correlations can be defined as composites of several fields. Since a conversation can involve many different types of messages. Different correlations will need to be defined for each message type.
+ </para>
+ <para>
+ To create a correlation for a messaging activity (for example: <property>Invoke</property>, <property>Receive</property>, <property>Reply</property>), select the activity and then click <guibutton>Add</guibutton> on the <guilabel>Correlation Detail</guilabel> property tab. This will display the <guilabel>Select a Property</guilabel> dialog.
+ </para>
+ <figure>
+ <title>Select a Property</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/reference/Handlers_07.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ You canselect an existing property defined in the WSDL or click <guibutton>New</guibutton> to create a new WSDL property, which will display the <guilabel>Create Message Property</guilabel> dialog.
+ </para>
+ <figure>
+ <title>Create Message Property</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/reference/Handlers_08.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ Enter a name for the new WSDL property and its type. Either an XSD simple type or an XML Schema element.
+ </para>
+ <para>
+ Next, click the <guibutton>Browse”</guibutton> button to select a type. This will display the <guilabel>Type Selection</guilabel> dialog.
+ </para>
+ <para>
+ Click <guilabel>New</guilabel> in the <guilabel>Aliases</guilabel> section to create a new WSDL property alias.
+ </para>
+ <figure>
+ <title>Create Property Alias</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/reference/Handlers_09.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ Select either the <guilabel>Message Type</guilabel>, XSD <guilabel>Simple Type</guilabel> or XML scheme <guilabel>Element</guilabel> radio button and click <guibutton>Browse</guibutton> to select its type. Then click <guibutton>OK</guibutton>.
+ </para>
+ </section>
+ </section>
</section>
</chapter>
14 years, 10 months
JBoss Tools SVN: r31840 - workspace/snjeza/seam-examples.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2011-06-04 18:49:28 -0400 (Sat, 04 Jun 2011)
New Revision: 31840
Modified:
workspace/snjeza/seam-examples/numberguess.zip
Log:
JBIDE-9055 Make sure all the JBoss Tools project examples have the correct order of CDI, Seam, KB, Validation builders.
Modified: workspace/snjeza/seam-examples/numberguess.zip
===================================================================
(Binary files differ)
14 years, 10 months
JBoss Tools SVN: r31839 - in trunk: as/features/org.jboss.ide.eclipse.as.archives.integration.feature and 123 other directories.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-06-04 18:21:44 -0400 (Sat, 04 Jun 2011)
New Revision: 31839
Modified:
trunk/archives/features/org.jboss.ide.eclipse.archives.feature/feature.properties
trunk/as/features/org.jboss.ide.eclipse.as.archives.integration.feature/feature.properties
trunk/as/features/org.jboss.ide.eclipse.as.feature/feature.properties
trunk/as/features/org.jboss.ide.eclipse.as.jmx.integration.feature/feature.properties
trunk/as/features/org.jboss.ide.eclipse.as.server.rse.integration.feature/feature.properties
trunk/as/features/org.jboss.ide.eclipse.as.serverAdapter.wtp.feature/feature.properties
trunk/as/features/org.jboss.ide.eclipse.as.test.feature/feature.xml
trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/actions/ExploreAction.java
trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/actions/ExploreActionDelegate.java
trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/actions/ExploreUtils.java
trunk/as/plugins/org.jboss.ide.eclipse.as.wtp.ui/src/org/jboss/ide/eclipse/as/wtp/ui/commands/FullPublishCommandHandler.java
trunk/birt/features/org.jboss.tools.birt.feature/feature.properties
trunk/birt/plugins/org.jboss.tools.birt.oda/src/org/jboss/tools/birt/oda/IOdaFactory.java
trunk/birt/plugins/org.jboss.tools.birt.oda/src/org/jboss/tools/birt/oda/impl/ConsoleConfigurationOdaFactory.java
trunk/bpel/features/org.jboss.tools.bpel.feature/feature.properties
trunk/bpel/features/org.jboss.tools.bpel.feature/sourceTemplateFeature/feature.properties
trunk/bpel/features/org.jboss.tools.bpel.sdk.feature/feature.xml
trunk/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.model/plugin.properties
trunk/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.ui/plugin.properties
trunk/bpel/plugins/org.eclipse.bpel.common.model/plugin.properties
trunk/bpel/plugins/org.eclipse.bpel.common.ui/plugin.properties
trunk/bpel/plugins/org.eclipse.bpel.model/plugin.properties
trunk/bpel/plugins/org.eclipse.bpel.ui/plugin.properties
trunk/bpel/plugins/org.eclipse.bpel.validator/plugin.properties
trunk/bpel/plugins/org.eclipse.bpel.wsil.model/plugin.properties
trunk/bpel/plugins/org.eclipse.bpel.xpath10/plugin.properties
trunk/bpel/plugins/org.jboss.tools.bpel.cheatsheet/plugin.properties
trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/plugin.properties
trunk/cdi/features/org.jboss.tools.cdi.feature/feature.xml
trunk/cdi/features/org.jboss.tools.cdi.seam.feature/feature.xml
trunk/cdi/tests/org.jboss.tools.cdi.core.test/src/org/jboss/tools/cdi/core/test/tck/validation/BuilderOrderValidationTest.java
trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/marker/CDIMarkerResolutionTest.java
trunk/common/features/org.jboss.tools.common.all.feature/feature.xml
trunk/common/features/org.jboss.tools.common.all.sdk.feature/feature.xml
trunk/common/features/org.jboss.tools.common.core.feature/feature.properties
trunk/common/features/org.jboss.tools.common.feature/feature.properties
trunk/common/features/org.jboss.tools.common.text.ext.feature/feature.properties
trunk/common/features/org.jboss.tools.common.ui.feature/feature.properties
trunk/common/features/org.jboss.tools.common.verification.feature/feature.properties
trunk/common/plugins/org.jboss.tools.common.verification.ui/src/org/jboss/tools/common/verification/ui/actions/ExcludeResourceHandler.java
trunk/common/plugins/org.jboss.tools.common.verification.ui/src/org/jboss/tools/common/verification/ui/actions/IncludeResourceHandler.java
trunk/common/plugins/org.jboss.tools.common.verification.ui/src/org/jboss/tools/common/verification/ui/actions/ResourceExcludedExpressionFactoryTester.java
trunk/deltacloud/features/org.jboss.tools.deltacloud.feature/feature.properties
trunk/deltacloud/features/org.jboss.tools.deltacloud.test.feature/feature.properties
trunk/esb/features/org.jboss.tools.esb.feature/feature.properties
trunk/examples/features/org.jboss.tools.community.project.examples.feature/feature.properties
trunk/examples/features/org.jboss.tools.project.examples.feature/feature.properties
trunk/examples/features/org.jboss.tools.project.examples.test.feature/feature.properties
trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/Messages.java
trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/ProjectExamplesActivator.java
trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/actions/ProjectExamplesHandler.java
trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/dialog/FixDialog.java
trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/dialog/MarkerContentProvider.java
trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/dialog/MarkerDialog.java
trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/dialog/MarkerLabelProvider.java
trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/fixes/PluginFix.java
trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/fixes/ProjectExamplesFix.java
trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/fixes/SeamRuntimeFix.java
trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/fixes/WTPRuntimeFix.java
trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/AbstractImportProjectExample.java
trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/ArchetypeModel.java
trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/Category.java
trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/IImportProjectExample.java
trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/Project.java
trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/ProjectFix.java
trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/ProjectModelElement.java
trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/ProjectUtil.java
trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/SiteCategory.java
trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/preferences/ProjectExamplesPreferencePage.java
trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/preferences/ProjectExamplesPreferencesInitializer.java
trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/preferences/SiteDialog.java
trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/preferences/Sites.java
trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/wizard/NewProjectExamplesWizard.java
trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/wizard/NewProjectExamplesWizardPage.java
trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/wizard/ProjectExamplesPatternFilter.java
trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/wizard/SiteFilter.java
trunk/examples/tests/org.jboss.tools.project.examples.test/src/org/jboss/tools/project/examples/test/ProjectExamplesAllTests.java
trunk/examples/tests/org.jboss.tools.project.examples.test/src/org/jboss/tools/project/examples/test/ProjectExamplesUtil.java
trunk/examples/tests/org.jboss.tools.project.examples.test/src/org/jboss/tools/project/examples/test/ProjectTest.java
trunk/examples/tests/org.jboss.tools.project.examples.test/src/org/jboss/tools/project/examples/test/SiteTest.java
trunk/freemarker/features/org.jboss.ide.eclipse.freemarker.feature/feature.properties
trunk/freemarker/features/org.jboss.ide.eclipse.freemarker.feature/sourceTemplateFeature/feature.properties
trunk/freemarker/features/org.jboss.ide.eclipse.freemarker.sdk.feature/feature.properties
trunk/gwt/features/org.jboss.tools.gwt.feature/feature.properties
trunk/hibernatetools/features/org.hibernate.eclipse.feature/feature.properties
trunk/hibernatetools/features/org.hibernate.eclipse.sdk.feature/feature.properties
trunk/jbpm/features/org.jboss.tools.jbpm.convert.feature/feature.properties
trunk/jmx/features/org.jboss.tools.jmx.feature/feature.xml
trunk/jmx/features/org.jboss.tools.jmx.sdk.feature/feature.xml
trunk/jsf/features/org.jboss.tools.jsf.feature/feature.properties
trunk/jsf/features/org.jboss.tools.richfaces.feature/feature.properties
trunk/jst/features/org.jboss.tools.jst.feature/feature.properties
trunk/jst/features/org.jboss.tools.jst.web.tiles.feature/feature.properties
trunk/jst/tests/org.jboss.tools.jst.web.kb.test/src/org/jboss/tools/jst/web/kb/test/validation/BuilderOrderMarkerResolutionTest.java
trunk/maven/features/org.jboss.tools.maven.cdi.feature/feature.properties
trunk/maven/features/org.jboss.tools.maven.feature/feature.properties
trunk/maven/features/org.jboss.tools.maven.feature/sourceTemplateFeature/feature.properties
trunk/maven/features/org.jboss.tools.maven.hibernate.feature/feature.properties
trunk/maven/features/org.jboss.tools.maven.jsf.feature/feature.properties
trunk/maven/features/org.jboss.tools.maven.portlet.feature/feature.properties
trunk/maven/features/org.jboss.tools.maven.project.examples.feature/feature.properties
trunk/maven/features/org.jboss.tools.maven.sdk.feature/feature.properties
trunk/maven/features/org.jboss.tools.maven.seam.feature/feature.properties
trunk/maven/features/org.jboss.tools.maven.seam.feature/sourceTemplateFeature/feature.properties
trunk/maven/plugins/org.jboss.tools.maven.cdi/src/org/jboss/tools/maven/cdi/MavenCDIActivator.java
trunk/maven/plugins/org.jboss.tools.maven.cdi/src/org/jboss/tools/maven/cdi/Messages.java
trunk/maven/plugins/org.jboss.tools.maven.cdi/src/org/jboss/tools/maven/cdi/configurators/CDIProjectConfigurator.java
trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/IJBossMavenConstants.java
trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/MavenCoreActivator.java
trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/Messages.java
trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/PluginUpdater.java
trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/ProjectFacetsFactoryTester.java
trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/internal/project/facet/MavenFacetInstallDataModelProvider.java
trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/internal/project/facet/MavenFacetInstallDelegate.java
trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/libprov/MavenLibraryProviderInstallOperation.java
trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/libprov/MavenLibraryProviderInstallOperationConfig.java
trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/libprov/MavenLibraryProviderUninstallOperation.java
trunk/maven/plugins/org.jboss.tools.maven.hibernate/src/org/jboss/tools/maven/hibernate/MavenHibernateActivator.java
trunk/maven/plugins/org.jboss.tools.maven.hibernate/src/org/jboss/tools/maven/hibernate/configurators/HibernateProjectConfigurator.java
trunk/maven/plugins/org.jboss.tools.maven.project.examples/src/org/jboss/tools/maven/project/examples/ImportMavenArchetypeProjectExample.java
trunk/maven/plugins/org.jboss.tools.maven.project.examples/src/org/jboss/tools/maven/project/examples/ImportMavenProjectExample.java
trunk/maven/plugins/org.jboss.tools.maven.project.examples/src/org/jboss/tools/maven/project/examples/wizard/ArchetypeExamplesWizard.java
trunk/maven/plugins/org.jboss.tools.maven.project.examples/src/org/jboss/tools/maven/project/examples/wizard/ArchetypeExamplesWizardPage.java
trunk/maven/plugins/org.jboss.tools.maven.seam/src/org/jboss/tools/maven/seam/MavenSeamActivator.java
trunk/maven/plugins/org.jboss.tools.maven.seam/src/org/jboss/tools/maven/seam/ParentAdder.java
trunk/maven/plugins/org.jboss.tools.maven.seam/src/org/jboss/tools/maven/seam/configurators/FixClasspathConfigurator.java
trunk/maven/plugins/org.jboss.tools.maven.seam/src/org/jboss/tools/maven/seam/configurators/SeamProjectConfigurator.java
trunk/maven/plugins/org.jboss.tools.maven.ui/src/org/jboss/tools/maven/ui/Activator.java
trunk/maven/plugins/org.jboss.tools.maven.ui/src/org/jboss/tools/maven/ui/Messages.java
trunk/maven/plugins/org.jboss.tools.maven.ui/src/org/jboss/tools/maven/ui/internal/libprov/DependencyEditingSupport.java
trunk/maven/plugins/org.jboss.tools.maven.ui/src/org/jboss/tools/maven/ui/internal/libprov/ExclusionEditingSupport.java
trunk/maven/plugins/org.jboss.tools.maven.ui/src/org/jboss/tools/maven/ui/internal/libprov/MavenUserLibraryProviderInstallPanel.java
trunk/maven/plugins/org.jboss.tools.maven.ui/src/org/jboss/tools/maven/ui/internal/project/facet/MavenFacetInstallPage.java
trunk/maven/plugins/org.jboss.tools.maven.ui/src/org/jboss/tools/maven/ui/preferences/ConfiguratorPreferencePage.java
trunk/maven/plugins/org.jboss.tools.maven.ui/src/org/jboss/tools/maven/ui/preferences/ConfiguratorPreferencesInitializer.java
trunk/maven/tests/org.jboss.tools.maven.ui.bot.test/src/org/jboss/tools/maven/ui/bot/test/CreateMavenizedSeamProjectTest.java
trunk/portlet/features/org.jboss.tools.portlet.feature/feature.properties
trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/IPortletConstants.java
trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/JSFPortlet10LibrariesContainerInitializer.java
trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/Portlet20LibrariesContainerInitializer.java
trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/PortletRuntimeLibrariesContainerInitializer.java
trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/JSFPortletFacetInstallDataModelProvider.java
trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/JSFPortletFacetInstallDelegate.java
trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/JSFPortletFacetUninstallDelegate.java
trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/PortletFacetInstallDataModelProvider.java
trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/PortletFacetInstallDelegate.java
trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/PortletFacetUninstallDelegate.java
trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/SeamPortletFacetInstallDataModelProvider.java
trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/SeamPortletFacetInstallDelegate.java
trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/SeamPortletFacetUninstallDelegate.java
trunk/profiler/features/org.jboss.tools.profiler.feature/feature.properties
trunk/runtime/features/org.jboss.tools.runtime.as.detector.feature/feature.properties
trunk/runtime/features/org.jboss.tools.runtime.core.feature/feature.properties
trunk/runtime/features/org.jboss.tools.runtime.drools.detector.feature/feature.properties
trunk/runtime/features/org.jboss.tools.runtime.feature/feature.properties
trunk/runtime/features/org.jboss.tools.runtime.jbpm.detector.feature/feature.properties
trunk/runtime/features/org.jboss.tools.runtime.seam.detector.feature/feature.properties
trunk/runtime/features/org.jboss.tools.runtime.test.feature/feature.properties
trunk/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/RuntimeCoreActivator.java
trunk/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/model/AbstractRuntimeDetector.java
trunk/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/model/IRuntimeDetector.java
trunk/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/model/InvalidRuntimeDetector.java
trunk/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/model/RuntimePath.java
trunk/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/model/ServerDefinition.java
trunk/runtime/plugins/org.jboss.tools.runtime.jbpm.detector/src/org/jboss/tools/runtime/handlers/JbpmHandler.java
trunk/runtime/plugins/org.jboss.tools.runtime.seam.detector/src/org/jboss/tools/runtime/handlers/SeamHandler.java
trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/RuntimeContentProvider.java
trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/RuntimeLabelProvider.java
trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/RuntimeScanner.java
trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/RuntimeUIActivator.java
trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/AutoResizeTableLayout.java
trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/EditRuntimePathDialog.java
trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/RuntimePathEditingSupport.java
trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/SearchRuntimePathDialog.java
trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/preferences/JBossRuntimePreferencesInitializer.java
trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/preferences/RuntimePreferencePage.java
trunk/runtime/plugins/org.jboss.tools.runtime/src/org/jboss/tools/runtime/preferences/JBossRuntimePreferencesInitializer.java
trunk/runtime/tests/org.jboss.tools.runtime.test/src/org/jboss/tools/runtime/test/IRuntimeDetectionConstants.java
trunk/runtime/tests/org.jboss.tools.runtime.test/src/org/jboss/tools/runtime/test/RuntimeDetectionAllTests.java
trunk/runtime/tests/org.jboss.tools.runtime.test/src/org/jboss/tools/runtime/test/RuntimeDetectionTest.java
trunk/seam/features/org.jboss.tools.seam.feature/feature.properties
trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/dialog/SeamFacetVersionChangeDialog.java
trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/jbide/JBide3989Test.java
trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/marker/SeamMarkerResolutionTest.java
trunk/smooks/features/org.jboss.tools.smooks.feature/feature.properties
trunk/struts/features/org.jboss.tools.struts.feature/feature.properties
trunk/tptp/features/org.jboss.tools.tptp.feature/feature.properties
trunk/usage/features/org.jboss.tools.usage.feature/feature.properties
trunk/usage/features/org.jboss.tools.usage.test.feature/feature.properties
trunk/vpe/features/org.jboss.tools.vpe.feature/feature.properties
trunk/ws/features/org.jboss.tools.ws.feature/feature.properties
trunk/ws/features/org.jboss.tools.ws.jaxrs.feature/feature.properties
Log:
https://issues.jboss.org/browse/JBDS-1636 fix copyright statements to include 2011 upper bound and use Red Hat, Inc. instead of JBoss by Red Hat
Modified: trunk/archives/features/org.jboss.ide.eclipse.archives.feature/feature.properties
===================================================================
--- trunk/archives/features/org.jboss.ide.eclipse.archives.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/archives/features/org.jboss.ide.eclipse.archives.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/as/features/org.jboss.ide.eclipse.as.archives.integration.feature/feature.properties
===================================================================
--- trunk/as/features/org.jboss.ide.eclipse.as.archives.integration.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/as/features/org.jboss.ide.eclipse.as.archives.integration.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/as/features/org.jboss.ide.eclipse.as.feature/feature.properties
===================================================================
--- trunk/as/features/org.jboss.ide.eclipse.as.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/as/features/org.jboss.ide.eclipse.as.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/as/features/org.jboss.ide.eclipse.as.jmx.integration.feature/feature.properties
===================================================================
--- trunk/as/features/org.jboss.ide.eclipse.as.jmx.integration.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/as/features/org.jboss.ide.eclipse.as.jmx.integration.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/as/features/org.jboss.ide.eclipse.as.server.rse.integration.feature/feature.properties
===================================================================
--- trunk/as/features/org.jboss.ide.eclipse.as.server.rse.integration.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/as/features/org.jboss.ide.eclipse.as.server.rse.integration.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/as/features/org.jboss.ide.eclipse.as.serverAdapter.wtp.feature/feature.properties
===================================================================
--- trunk/as/features/org.jboss.ide.eclipse.as.serverAdapter.wtp.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/as/features/org.jboss.ide.eclipse.as.serverAdapter.wtp.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/as/features/org.jboss.ide.eclipse.as.test.feature/feature.xml
===================================================================
--- trunk/as/features/org.jboss.ide.eclipse.as.test.feature/feature.xml 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/as/features/org.jboss.ide.eclipse.as.test.feature/feature.xml 2011-06-04 22:21:44 UTC (rev 31839)
@@ -11,7 +11,7 @@
<copyright>
JBoss, Home of Professional Open Source
-Copyright 2006-2010, JBoss by Red Hat, and individual contributors as indicated
+Copyright (c) 2006-2011 Red Hat, Inc., and individual contributors as indicated
by the @authors tag. See the copyright.txt in the distribution
for a full listing of individual contributors.
</copyright>
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/actions/ExploreAction.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/actions/ExploreAction.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/actions/ExploreAction.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/actions/ExploreActionDelegate.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/actions/ExploreActionDelegate.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/actions/ExploreActionDelegate.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/actions/ExploreUtils.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/actions/ExploreUtils.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/actions/ExploreUtils.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.wtp.ui/src/org/jboss/ide/eclipse/as/wtp/ui/commands/FullPublishCommandHandler.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.wtp.ui/src/org/jboss/ide/eclipse/as/wtp/ui/commands/FullPublishCommandHandler.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.wtp.ui/src/org/jboss/ide/eclipse/as/wtp/ui/commands/FullPublishCommandHandler.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/birt/features/org.jboss.tools.birt.feature/feature.properties
===================================================================
--- trunk/birt/features/org.jboss.tools.birt.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/birt/features/org.jboss.tools.birt.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2008-2010 JBoss by Red Hat and others.
+# Copyright (c) 2008-2011 Red Hat, Inc. 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
@@ -27,7 +27,7 @@
description=JBoss BIRT Integration
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2008-2010 JBoss by Red Hat and others.\n\
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. 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\
Modified: trunk/birt/plugins/org.jboss.tools.birt.oda/src/org/jboss/tools/birt/oda/IOdaFactory.java
===================================================================
--- trunk/birt/plugins/org.jboss.tools.birt.oda/src/org/jboss/tools/birt/oda/IOdaFactory.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/birt/plugins/org.jboss.tools.birt.oda/src/org/jboss/tools/birt/oda/IOdaFactory.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/birt/plugins/org.jboss.tools.birt.oda/src/org/jboss/tools/birt/oda/impl/ConsoleConfigurationOdaFactory.java
===================================================================
--- trunk/birt/plugins/org.jboss.tools.birt.oda/src/org/jboss/tools/birt/oda/impl/ConsoleConfigurationOdaFactory.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/birt/plugins/org.jboss.tools.birt.oda/src/org/jboss/tools/birt/oda/impl/ConsoleConfigurationOdaFactory.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/bpel/features/org.jboss.tools.bpel.feature/feature.properties
===================================================================
--- trunk/bpel/features/org.jboss.tools.bpel.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/bpel/features/org.jboss.tools.bpel.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-2011 Red Hat, Inc. 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
@@ -28,7 +28,7 @@
description=JBoss BPEL Editor
# "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 \
+copyright=Copyright (c) 2010-2011 Red Hat, Inc. 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.\n
############### end of copyright property ####################################
Modified: trunk/bpel/features/org.jboss.tools.bpel.feature/sourceTemplateFeature/feature.properties
===================================================================
--- trunk/bpel/features/org.jboss.tools.bpel.feature/sourceTemplateFeature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/bpel/features/org.jboss.tools.bpel.feature/sourceTemplateFeature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -11,7 +11,7 @@
# do not translate value - just change to point to a locale-specific HTML page
licenseURL=license.html
-copyright=Copyright (c) 2010 JBoss by Red Hat and others.\n\
+copyright=Copyright (c) 2010-2011 Red Hat, Inc. 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\
Modified: trunk/bpel/features/org.jboss.tools.bpel.sdk.feature/feature.xml
===================================================================
--- trunk/bpel/features/org.jboss.tools.bpel.sdk.feature/feature.xml 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/bpel/features/org.jboss.tools.bpel.sdk.feature/feature.xml 2011-06-04 22:21:44 UTC (rev 31839)
@@ -11,7 +11,7 @@
<copyright>
JBoss, Home of Professional Open Source
-Copyright 2006-2010, JBoss by Red Hat, and individual contributors as indicated
+Copyright (c) 2006-2011 Red Hat, Inc., and individual contributors as indicated
by the @authors tag. See the copyright.txt in the distribution
for a full listing of individual contributors.
</copyright>
Modified: trunk/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.model/plugin.properties
===================================================================
--- trunk/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.model/plugin.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.model/plugin.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.ui/plugin.properties
===================================================================
--- trunk/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.ui/plugin.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.ui/plugin.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/bpel/plugins/org.eclipse.bpel.common.model/plugin.properties
===================================================================
--- trunk/bpel/plugins/org.eclipse.bpel.common.model/plugin.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/bpel/plugins/org.eclipse.bpel.common.model/plugin.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat, and others.
+# Copyright (c) 2010-2011 Red Hat, Inc., 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
Modified: trunk/bpel/plugins/org.eclipse.bpel.common.ui/plugin.properties
===================================================================
--- trunk/bpel/plugins/org.eclipse.bpel.common.ui/plugin.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/bpel/plugins/org.eclipse.bpel.common.ui/plugin.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat, and others.
+# Copyright (c) 2010-2011 Red Hat, Inc., 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
Modified: trunk/bpel/plugins/org.eclipse.bpel.model/plugin.properties
===================================================================
--- trunk/bpel/plugins/org.eclipse.bpel.model/plugin.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/bpel/plugins/org.eclipse.bpel.model/plugin.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/bpel/plugins/org.eclipse.bpel.ui/plugin.properties
===================================================================
--- trunk/bpel/plugins/org.eclipse.bpel.ui/plugin.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/bpel/plugins/org.eclipse.bpel.ui/plugin.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/bpel/plugins/org.eclipse.bpel.validator/plugin.properties
===================================================================
--- trunk/bpel/plugins/org.eclipse.bpel.validator/plugin.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/bpel/plugins/org.eclipse.bpel.validator/plugin.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/bpel/plugins/org.eclipse.bpel.wsil.model/plugin.properties
===================================================================
--- trunk/bpel/plugins/org.eclipse.bpel.wsil.model/plugin.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/bpel/plugins/org.eclipse.bpel.wsil.model/plugin.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/bpel/plugins/org.eclipse.bpel.xpath10/plugin.properties
===================================================================
--- trunk/bpel/plugins/org.eclipse.bpel.xpath10/plugin.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/bpel/plugins/org.eclipse.bpel.xpath10/plugin.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/bpel/plugins/org.jboss.tools.bpel.cheatsheet/plugin.properties
===================================================================
--- trunk/bpel/plugins/org.jboss.tools.bpel.cheatsheet/plugin.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/bpel/plugins/org.jboss.tools.bpel.cheatsheet/plugin.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/plugin.properties
===================================================================
--- trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/plugin.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/plugin.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/cdi/features/org.jboss.tools.cdi.feature/feature.xml
===================================================================
--- trunk/cdi/features/org.jboss.tools.cdi.feature/feature.xml 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/cdi/features/org.jboss.tools.cdi.feature/feature.xml 2011-06-04 22:21:44 UTC (rev 31839)
@@ -11,7 +11,7 @@
<copyright>
JBoss, Home of Professional Open Source
-Copyright 2006-2010, JBoss by Red Hat, and individual contributors
+Copyright (c) 2006-2011 Red Hat, Inc., and individual contributors
as indicated
by the @authors tag. See the copyright.txt in the distribution
for a full listing of individual contributors.
Modified: trunk/cdi/features/org.jboss.tools.cdi.seam.feature/feature.xml
===================================================================
--- trunk/cdi/features/org.jboss.tools.cdi.seam.feature/feature.xml 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/cdi/features/org.jboss.tools.cdi.seam.feature/feature.xml 2011-06-04 22:21:44 UTC (rev 31839)
@@ -11,7 +11,7 @@
<copyright>
JBoss, Home of Professional Open Source
-Copyright 2006-2011, JBoss by Red Hat, and individual contributors
+Copyright (c) 2006-2011 Red Hat, Inc., and individual contributors
as indicated
by the @authors tag. See the copyright.txt in the distribution
for a full listing of individual contributors.
Modified: trunk/cdi/tests/org.jboss.tools.cdi.core.test/src/org/jboss/tools/cdi/core/test/tck/validation/BuilderOrderValidationTest.java
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.core.test/src/org/jboss/tools/cdi/core/test/tck/validation/BuilderOrderValidationTest.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/cdi/tests/org.jboss.tools.cdi.core.test/src/org/jboss/tools/cdi/core/test/tck/validation/BuilderOrderValidationTest.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2011 JBoss by Red Hat and others.
+ * Copyright (c) 2011 Red Hat, Inc. 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
Modified: trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/marker/CDIMarkerResolutionTest.java
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/marker/CDIMarkerResolutionTest.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/marker/CDIMarkerResolutionTest.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/common/features/org.jboss.tools.common.all.feature/feature.xml
===================================================================
--- trunk/common/features/org.jboss.tools.common.all.feature/feature.xml 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/common/features/org.jboss.tools.common.all.feature/feature.xml 2011-06-04 22:21:44 UTC (rev 31839)
@@ -11,7 +11,7 @@
<copyright>
JBoss, Home of Professional Open Source
-Copyright 2006-2010, JBoss by Red Hat, and individual contributors as indicated
+Copyright (c) 2006-2011 Red Hat, Inc., and individual contributors as indicated
by the @authors tag. See the copyright.txt in the distribution
for a full listing of individual contributors.
</copyright>
Modified: trunk/common/features/org.jboss.tools.common.all.sdk.feature/feature.xml
===================================================================
--- trunk/common/features/org.jboss.tools.common.all.sdk.feature/feature.xml 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/common/features/org.jboss.tools.common.all.sdk.feature/feature.xml 2011-06-04 22:21:44 UTC (rev 31839)
@@ -11,7 +11,7 @@
<copyright>
JBoss, Home of Professional Open Source
-Copyright 2006-2010, JBoss by Red Hat, and individual contributors as indicated
+Copyright (c) 2006-2011 Red Hat, Inc., and individual contributors as indicated
by the @authors tag. See the copyright.txt in the distribution
for a full listing of individual contributors.
</copyright>
Modified: trunk/common/features/org.jboss.tools.common.core.feature/feature.properties
===================================================================
--- trunk/common/features/org.jboss.tools.common.core.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/common/features/org.jboss.tools.common.core.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/common/features/org.jboss.tools.common.feature/feature.properties
===================================================================
--- trunk/common/features/org.jboss.tools.common.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/common/features/org.jboss.tools.common.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/common/features/org.jboss.tools.common.text.ext.feature/feature.properties
===================================================================
--- trunk/common/features/org.jboss.tools.common.text.ext.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/common/features/org.jboss.tools.common.text.ext.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/common/features/org.jboss.tools.common.ui.feature/feature.properties
===================================================================
--- trunk/common/features/org.jboss.tools.common.ui.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/common/features/org.jboss.tools.common.ui.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/common/features/org.jboss.tools.common.verification.feature/feature.properties
===================================================================
--- trunk/common/features/org.jboss.tools.common.verification.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/common/features/org.jboss.tools.common.verification.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/common/plugins/org.jboss.tools.common.verification.ui/src/org/jboss/tools/common/verification/ui/actions/ExcludeResourceHandler.java
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.verification.ui/src/org/jboss/tools/common/verification/ui/actions/ExcludeResourceHandler.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/common/plugins/org.jboss.tools.common.verification.ui/src/org/jboss/tools/common/verification/ui/actions/ExcludeResourceHandler.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/common/plugins/org.jboss.tools.common.verification.ui/src/org/jboss/tools/common/verification/ui/actions/IncludeResourceHandler.java
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.verification.ui/src/org/jboss/tools/common/verification/ui/actions/IncludeResourceHandler.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/common/plugins/org.jboss.tools.common.verification.ui/src/org/jboss/tools/common/verification/ui/actions/IncludeResourceHandler.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/common/plugins/org.jboss.tools.common.verification.ui/src/org/jboss/tools/common/verification/ui/actions/ResourceExcludedExpressionFactoryTester.java
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.verification.ui/src/org/jboss/tools/common/verification/ui/actions/ResourceExcludedExpressionFactoryTester.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/common/plugins/org.jboss.tools.common.verification.ui/src/org/jboss/tools/common/verification/ui/actions/ResourceExcludedExpressionFactoryTester.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/deltacloud/features/org.jboss.tools.deltacloud.feature/feature.properties
===================================================================
--- trunk/deltacloud/features/org.jboss.tools.deltacloud.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/deltacloud/features/org.jboss.tools.deltacloud.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-2011 Red Hat, Inc. 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
@@ -27,7 +27,7 @@
description=Deltacloud Development Tools (Experimental)
# "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\
+copyright=Copyright (c) 2010-2011 Red Hat, Inc. 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 ####################################
Modified: trunk/deltacloud/features/org.jboss.tools.deltacloud.test.feature/feature.properties
===================================================================
--- trunk/deltacloud/features/org.jboss.tools.deltacloud.test.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/deltacloud/features/org.jboss.tools.deltacloud.test.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2008-2010 JBoss by Red Hat and others.
+# Copyright (c) 2008-2011 Red Hat, Inc. 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
@@ -27,7 +27,7 @@
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\
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. 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\
Modified: trunk/esb/features/org.jboss.tools.esb.feature/feature.properties
===================================================================
--- trunk/esb/features/org.jboss.tools.esb.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/esb/features/org.jboss.tools.esb.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2008-2010 JBoss by Red Hat and others.
+# Copyright (c) 2008-2011 Red Hat, Inc. 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
@@ -27,7 +27,7 @@
description=JBoss ESB Tools
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2008-2010 JBoss by Red Hat and others.\nAll rights reserved. This program and the accompanying materials\n\
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. 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 ####################################
Modified: trunk/examples/features/org.jboss.tools.community.project.examples.feature/feature.properties
===================================================================
--- trunk/examples/features/org.jboss.tools.community.project.examples.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/examples/features/org.jboss.tools.community.project.examples.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2008-2010 JBoss by Red Hat and others.
+# Copyright (c) 2008-2011 Red Hat, Inc. 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
@@ -27,7 +27,7 @@
description=JBoss Tools Community Project Examples
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2008-2010 JBoss by Red Hat and others.\nAll rights reserved. This program and the accompanying materials\n
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. 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\n\
which accompanies this distribution, and is available at\n\
http\://www.eclipse.org/legal/epl-v10.html\n\
Modified: trunk/examples/features/org.jboss.tools.project.examples.feature/feature.properties
===================================================================
--- trunk/examples/features/org.jboss.tools.project.examples.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/examples/features/org.jboss.tools.project.examples.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2008-2010 JBoss by Red Hat and others.
+# Copyright (c) 2008-2011 Red Hat, Inc. 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
@@ -27,7 +27,7 @@
description=Project Examples
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2008-2010 JBoss by Red Hat and others.\nAll rights reserved. This program and the accompanying materials\n
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. 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\n\
which accompanies this distribution, and is available at\n\
http\://www.eclipse.org/legal/epl-v10.html\n\
Modified: trunk/examples/features/org.jboss.tools.project.examples.test.feature/feature.properties
===================================================================
--- trunk/examples/features/org.jboss.tools.project.examples.test.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/examples/features/org.jboss.tools.project.examples.test.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2008-2010 JBoss by Red Hat and others.
+# Copyright (c) 2008-2011 Red Hat, Inc. 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
@@ -27,7 +27,7 @@
description=Project Examples Test Suite
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2008-2011 JBoss by Red Hat and others.\nAll rights reserved. This program and the accompanying materials\n
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. 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\n\
which accompanies this distribution, and is available at\n\
http\://www.eclipse.org/legal/epl-v10.html\n\
Modified: trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/Messages.java
===================================================================
--- trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/Messages.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/Messages.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/ProjectExamplesActivator.java
===================================================================
--- trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/ProjectExamplesActivator.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/ProjectExamplesActivator.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/actions/ProjectExamplesHandler.java
===================================================================
--- trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/actions/ProjectExamplesHandler.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/actions/ProjectExamplesHandler.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/dialog/FixDialog.java
===================================================================
--- trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/dialog/FixDialog.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/dialog/FixDialog.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/dialog/MarkerContentProvider.java
===================================================================
--- trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/dialog/MarkerContentProvider.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/dialog/MarkerContentProvider.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/dialog/MarkerDialog.java
===================================================================
--- trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/dialog/MarkerDialog.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/dialog/MarkerDialog.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/dialog/MarkerLabelProvider.java
===================================================================
--- trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/dialog/MarkerLabelProvider.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/dialog/MarkerLabelProvider.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/fixes/PluginFix.java
===================================================================
--- trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/fixes/PluginFix.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/fixes/PluginFix.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/fixes/ProjectExamplesFix.java
===================================================================
--- trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/fixes/ProjectExamplesFix.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/fixes/ProjectExamplesFix.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/fixes/SeamRuntimeFix.java
===================================================================
--- trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/fixes/SeamRuntimeFix.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/fixes/SeamRuntimeFix.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/fixes/WTPRuntimeFix.java
===================================================================
--- trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/fixes/WTPRuntimeFix.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/fixes/WTPRuntimeFix.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/AbstractImportProjectExample.java
===================================================================
--- trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/AbstractImportProjectExample.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/AbstractImportProjectExample.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2010 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/ArchetypeModel.java
===================================================================
--- trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/ArchetypeModel.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/ArchetypeModel.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/Category.java
===================================================================
--- trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/Category.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/Category.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/IImportProjectExample.java
===================================================================
--- trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/IImportProjectExample.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/IImportProjectExample.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2010 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/Project.java
===================================================================
--- trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/Project.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/Project.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/ProjectFix.java
===================================================================
--- trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/ProjectFix.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/ProjectFix.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/ProjectModelElement.java
===================================================================
--- trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/ProjectModelElement.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/ProjectModelElement.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/ProjectUtil.java
===================================================================
--- trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/ProjectUtil.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/ProjectUtil.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/SiteCategory.java
===================================================================
--- trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/SiteCategory.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/model/SiteCategory.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/preferences/ProjectExamplesPreferencePage.java
===================================================================
--- trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/preferences/ProjectExamplesPreferencePage.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/preferences/ProjectExamplesPreferencePage.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/preferences/ProjectExamplesPreferencesInitializer.java
===================================================================
--- trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/preferences/ProjectExamplesPreferencesInitializer.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/preferences/ProjectExamplesPreferencesInitializer.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/preferences/SiteDialog.java
===================================================================
--- trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/preferences/SiteDialog.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/preferences/SiteDialog.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/preferences/Sites.java
===================================================================
--- trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/preferences/Sites.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/preferences/Sites.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/wizard/NewProjectExamplesWizard.java
===================================================================
--- trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/wizard/NewProjectExamplesWizard.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/wizard/NewProjectExamplesWizard.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/wizard/NewProjectExamplesWizardPage.java
===================================================================
--- trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/wizard/NewProjectExamplesWizardPage.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/wizard/NewProjectExamplesWizardPage.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/wizard/ProjectExamplesPatternFilter.java
===================================================================
--- trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/wizard/ProjectExamplesPatternFilter.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/wizard/ProjectExamplesPatternFilter.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/wizard/SiteFilter.java
===================================================================
--- trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/wizard/SiteFilter.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/wizard/SiteFilter.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/examples/tests/org.jboss.tools.project.examples.test/src/org/jboss/tools/project/examples/test/ProjectExamplesAllTests.java
===================================================================
--- trunk/examples/tests/org.jboss.tools.project.examples.test/src/org/jboss/tools/project/examples/test/ProjectExamplesAllTests.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/examples/tests/org.jboss.tools.project.examples.test/src/org/jboss/tools/project/examples/test/ProjectExamplesAllTests.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2011 JBoss by Red Hat and others.
+ * Copyright (c) 2011 Red Hat, Inc. 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
Modified: trunk/examples/tests/org.jboss.tools.project.examples.test/src/org/jboss/tools/project/examples/test/ProjectExamplesUtil.java
===================================================================
--- trunk/examples/tests/org.jboss.tools.project.examples.test/src/org/jboss/tools/project/examples/test/ProjectExamplesUtil.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/examples/tests/org.jboss.tools.project.examples.test/src/org/jboss/tools/project/examples/test/ProjectExamplesUtil.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2011 JBoss by Red Hat and others.
+ * Copyright (c) 2011 Red Hat, Inc. 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
Modified: trunk/examples/tests/org.jboss.tools.project.examples.test/src/org/jboss/tools/project/examples/test/ProjectTest.java
===================================================================
--- trunk/examples/tests/org.jboss.tools.project.examples.test/src/org/jboss/tools/project/examples/test/ProjectTest.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/examples/tests/org.jboss.tools.project.examples.test/src/org/jboss/tools/project/examples/test/ProjectTest.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2011 JBoss by Red Hat and others.
+ * Copyright (c) 2011 Red Hat, Inc. 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
Modified: trunk/examples/tests/org.jboss.tools.project.examples.test/src/org/jboss/tools/project/examples/test/SiteTest.java
===================================================================
--- trunk/examples/tests/org.jboss.tools.project.examples.test/src/org/jboss/tools/project/examples/test/SiteTest.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/examples/tests/org.jboss.tools.project.examples.test/src/org/jboss/tools/project/examples/test/SiteTest.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2011 JBoss by Red Hat and others.
+ * Copyright (c) 2011 Red Hat, Inc. 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
Modified: trunk/freemarker/features/org.jboss.ide.eclipse.freemarker.feature/feature.properties
===================================================================
--- trunk/freemarker/features/org.jboss.ide.eclipse.freemarker.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/freemarker/features/org.jboss.ide.eclipse.freemarker.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2008-2010 JBoss by Red Hat and others.
+# Copyright (c) 2008-2011 Red Hat, Inc. 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
@@ -29,7 +29,7 @@
description=FreeMarkerIDE provides editor for FreeMarker templates
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2008-2010 JBoss by Red Hat and others.\nAll rights reserved. This program and the accompanying materials\n\
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. 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 ####################################
Modified: trunk/freemarker/features/org.jboss.ide.eclipse.freemarker.feature/sourceTemplateFeature/feature.properties
===================================================================
--- trunk/freemarker/features/org.jboss.ide.eclipse.freemarker.feature/sourceTemplateFeature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/freemarker/features/org.jboss.ide.eclipse.freemarker.feature/sourceTemplateFeature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -12,7 +12,7 @@
# do not translate value - just change to point to a locale-specific HTML page
licenseURL=license.html
-copyright=Copyright (c) 2008-2010 JBoss by Red Hat and others.\n\
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. 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\
Modified: trunk/freemarker/features/org.jboss.ide.eclipse.freemarker.sdk.feature/feature.properties
===================================================================
--- trunk/freemarker/features/org.jboss.ide.eclipse.freemarker.sdk.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/freemarker/features/org.jboss.ide.eclipse.freemarker.sdk.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -12,7 +12,7 @@
# do not translate value - just change to point to a locale-specific HTML page
licenseURL=license.html
-copyright=Copyright (c) 2008-2010 JBoss by Red Hat and others.\n\
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. 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\
Modified: trunk/gwt/features/org.jboss.tools.gwt.feature/feature.properties
===================================================================
--- trunk/gwt/features/org.jboss.tools.gwt.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/gwt/features/org.jboss.tools.gwt.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-2011 Red Hat, Inc. 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
@@ -27,7 +27,7 @@
description=JBoss GWT Integration (Experimental)
# "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\
+copyright=Copyright (c) 2010-2011 Red Hat, Inc. 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 ####################################
Modified: trunk/hibernatetools/features/org.hibernate.eclipse.feature/feature.properties
===================================================================
--- trunk/hibernatetools/features/org.hibernate.eclipse.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/hibernatetools/features/org.hibernate.eclipse.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/hibernatetools/features/org.hibernate.eclipse.sdk.feature/feature.properties
===================================================================
--- trunk/hibernatetools/features/org.hibernate.eclipse.sdk.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/hibernatetools/features/org.hibernate.eclipse.sdk.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/jbpm/features/org.jboss.tools.jbpm.convert.feature/feature.properties
===================================================================
--- trunk/jbpm/features/org.jboss.tools.jbpm.convert.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/jbpm/features/org.jboss.tools.jbpm.convert.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-2011 Red Hat, Inc. 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
@@ -27,7 +27,7 @@
description=Conversion of bpmn files to jBPM syntax.
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2010 JBoss by Red Hat and others.\n\
+copyright=Copyright (c) 2010-2011 Red Hat, Inc. 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\
Modified: trunk/jmx/features/org.jboss.tools.jmx.feature/feature.xml
===================================================================
--- trunk/jmx/features/org.jboss.tools.jmx.feature/feature.xml 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/jmx/features/org.jboss.tools.jmx.feature/feature.xml 2011-06-04 22:21:44 UTC (rev 31839)
@@ -12,7 +12,7 @@
<copyright>
JBoss, Home of Professional Open Source
-Copyright 2006-2010, JBoss by Red Hat, and individual contributors as indicated
+Copyright (c) 2006-2011 Red Hat, Inc., and individual contributors as indicated
by the @authors tag. See the copyright.txt in the distribution
for a full listing of individual contributors.
</copyright>
Modified: trunk/jmx/features/org.jboss.tools.jmx.sdk.feature/feature.xml
===================================================================
--- trunk/jmx/features/org.jboss.tools.jmx.sdk.feature/feature.xml 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/jmx/features/org.jboss.tools.jmx.sdk.feature/feature.xml 2011-06-04 22:21:44 UTC (rev 31839)
@@ -11,7 +11,7 @@
<copyright>
JBoss, Home of Professional Open Source
-Copyright 2006-2010, JBoss by Red Hat, and individual contributors as indicated
+Copyright (c) 2006-2011 Red Hat, Inc., and individual contributors as indicated
by the @authors tag. See the copyright.txt in the distribution
for a full listing of individual contributors.
</copyright>
Modified: trunk/jsf/features/org.jboss.tools.jsf.feature/feature.properties
===================================================================
--- trunk/jsf/features/org.jboss.tools.jsf.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/jsf/features/org.jboss.tools.jsf.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/jsf/features/org.jboss.tools.richfaces.feature/feature.properties
===================================================================
--- trunk/jsf/features/org.jboss.tools.richfaces.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/jsf/features/org.jboss.tools.richfaces.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/jst/features/org.jboss.tools.jst.feature/feature.properties
===================================================================
--- trunk/jst/features/org.jboss.tools.jst.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/jst/features/org.jboss.tools.jst.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/jst/features/org.jboss.tools.jst.web.tiles.feature/feature.properties
===================================================================
--- trunk/jst/features/org.jboss.tools.jst.web.tiles.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/jst/features/org.jboss.tools.jst.web.tiles.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/jst/tests/org.jboss.tools.jst.web.kb.test/src/org/jboss/tools/jst/web/kb/test/validation/BuilderOrderMarkerResolutionTest.java
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.web.kb.test/src/org/jboss/tools/jst/web/kb/test/validation/BuilderOrderMarkerResolutionTest.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/jst/tests/org.jboss.tools.jst.web.kb.test/src/org/jboss/tools/jst/web/kb/test/validation/BuilderOrderMarkerResolutionTest.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2011 JBoss by Red Hat and others.
+ * Copyright (c) 2011 Red Hat, Inc. 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
Modified: trunk/maven/features/org.jboss.tools.maven.cdi.feature/feature.properties
===================================================================
--- trunk/maven/features/org.jboss.tools.maven.cdi.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/maven/features/org.jboss.tools.maven.cdi.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-2011 Red Hat, Inc. 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
@@ -27,7 +27,7 @@
description=JBoss Maven Seam Integration
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2010 JBoss by Red Hat and others.\n\
+copyright=Copyright (c) 2010-2011 Red Hat, Inc. 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\
Modified: trunk/maven/features/org.jboss.tools.maven.feature/feature.properties
===================================================================
--- trunk/maven/features/org.jboss.tools.maven.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/maven/features/org.jboss.tools.maven.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-2011 Red Hat, Inc. 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
@@ -27,7 +27,7 @@
description=JBoss Maven Integration
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2010 JBoss by Red Hat and others.\n\
+copyright=Copyright (c) 2010-2011 Red Hat, Inc. 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\
Modified: trunk/maven/features/org.jboss.tools.maven.feature/sourceTemplateFeature/feature.properties
===================================================================
--- trunk/maven/features/org.jboss.tools.maven.feature/sourceTemplateFeature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/maven/features/org.jboss.tools.maven.feature/sourceTemplateFeature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -13,7 +13,7 @@
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2010 JBoss by Red Hat and others.\n\
+copyright=Copyright (c) 2010-2011 Red Hat, Inc. 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\
Modified: trunk/maven/features/org.jboss.tools.maven.hibernate.feature/feature.properties
===================================================================
--- trunk/maven/features/org.jboss.tools.maven.hibernate.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/maven/features/org.jboss.tools.maven.hibernate.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-2011 Red Hat, Inc. 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
@@ -27,7 +27,7 @@
description=JBoss Maven Seam Integration
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2010 JBoss by Red Hat and others.\n\
+copyright=Copyright (c) 2010-2011 Red Hat, Inc. 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\
Modified: trunk/maven/features/org.jboss.tools.maven.jsf.feature/feature.properties
===================================================================
--- trunk/maven/features/org.jboss.tools.maven.jsf.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/maven/features/org.jboss.tools.maven.jsf.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-2011 Red Hat, Inc. 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
@@ -27,7 +27,7 @@
description=JBoss Maven Seam Integration
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2010 JBoss by Red Hat and others.\n\
+copyright=Copyright (c) 2010-2011 Red Hat, Inc. 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\
Modified: trunk/maven/features/org.jboss.tools.maven.portlet.feature/feature.properties
===================================================================
--- trunk/maven/features/org.jboss.tools.maven.portlet.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/maven/features/org.jboss.tools.maven.portlet.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-2011 Red Hat, Inc. 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
@@ -27,7 +27,7 @@
description=JBoss Maven Portlet Integration
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2010 JBoss by Red Hat and others.\n\
+copyright=Copyright (c) 2010-2011 Red Hat, Inc. 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\
Modified: trunk/maven/features/org.jboss.tools.maven.project.examples.feature/feature.properties
===================================================================
--- trunk/maven/features/org.jboss.tools.maven.project.examples.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/maven/features/org.jboss.tools.maven.project.examples.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-2011 Red Hat, Inc. 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
@@ -27,7 +27,7 @@
description=JBoss Maven Project Examples
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2010 JBoss by Red Hat and others.\n\
+copyright=Copyright (c) 2010-2011 Red Hat, Inc. 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\
Modified: trunk/maven/features/org.jboss.tools.maven.sdk.feature/feature.properties
===================================================================
--- trunk/maven/features/org.jboss.tools.maven.sdk.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/maven/features/org.jboss.tools.maven.sdk.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-2011 Red Hat, Inc. 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
@@ -27,7 +27,7 @@
description=JBoss Maven Integration
# "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\
+copyright=Copyright (c) 2010-2011 Red Hat, Inc. 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 ####################################
Modified: trunk/maven/features/org.jboss.tools.maven.seam.feature/feature.properties
===================================================================
--- trunk/maven/features/org.jboss.tools.maven.seam.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/maven/features/org.jboss.tools.maven.seam.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-2011 Red Hat, Inc. 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
@@ -27,7 +27,7 @@
description=JBoss Maven Seam Integration
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2010 JBoss by Red Hat and others.\n\
+copyright=Copyright (c) 2010-2011 Red Hat, Inc. 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\
Modified: trunk/maven/features/org.jboss.tools.maven.seam.feature/sourceTemplateFeature/feature.properties
===================================================================
--- trunk/maven/features/org.jboss.tools.maven.seam.feature/sourceTemplateFeature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/maven/features/org.jboss.tools.maven.seam.feature/sourceTemplateFeature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -12,7 +12,7 @@
licenseURL=license.html
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2010 JBoss by Red Hat and others.\n\
+copyright=Copyright (c) 2010-2011 Red Hat, Inc. 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\
Modified: trunk/maven/plugins/org.jboss.tools.maven.cdi/src/org/jboss/tools/maven/cdi/MavenCDIActivator.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.cdi/src/org/jboss/tools/maven/cdi/MavenCDIActivator.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/maven/plugins/org.jboss.tools.maven.cdi/src/org/jboss/tools/maven/cdi/MavenCDIActivator.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/maven/plugins/org.jboss.tools.maven.cdi/src/org/jboss/tools/maven/cdi/Messages.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.cdi/src/org/jboss/tools/maven/cdi/Messages.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/maven/plugins/org.jboss.tools.maven.cdi/src/org/jboss/tools/maven/cdi/Messages.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/maven/plugins/org.jboss.tools.maven.cdi/src/org/jboss/tools/maven/cdi/configurators/CDIProjectConfigurator.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.cdi/src/org/jboss/tools/maven/cdi/configurators/CDIProjectConfigurator.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/maven/plugins/org.jboss.tools.maven.cdi/src/org/jboss/tools/maven/cdi/configurators/CDIProjectConfigurator.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/IJBossMavenConstants.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/IJBossMavenConstants.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/IJBossMavenConstants.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2009 JBoss by Red Hat and others.
+ * Copyright (c) 2009-2011 Red Hat, Inc. 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
Modified: trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/MavenCoreActivator.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/MavenCoreActivator.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/MavenCoreActivator.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/Messages.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/Messages.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/Messages.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/PluginUpdater.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/PluginUpdater.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/PluginUpdater.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/ProjectFacetsFactoryTester.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/ProjectFacetsFactoryTester.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/ProjectFacetsFactoryTester.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/internal/project/facet/MavenFacetInstallDataModelProvider.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/internal/project/facet/MavenFacetInstallDataModelProvider.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/internal/project/facet/MavenFacetInstallDataModelProvider.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2009-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2009-2011 Red Hat, Inc. 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
Modified: trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/internal/project/facet/MavenFacetInstallDelegate.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/internal/project/facet/MavenFacetInstallDelegate.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/internal/project/facet/MavenFacetInstallDelegate.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2009-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2009-2011 Red Hat, Inc. 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
Modified: trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/libprov/MavenLibraryProviderInstallOperation.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/libprov/MavenLibraryProviderInstallOperation.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/libprov/MavenLibraryProviderInstallOperation.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2009-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2009-2011 Red Hat, Inc. 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
Modified: trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/libprov/MavenLibraryProviderInstallOperationConfig.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/libprov/MavenLibraryProviderInstallOperationConfig.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/libprov/MavenLibraryProviderInstallOperationConfig.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2009-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2009-2011 Red Hat, Inc. 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
Modified: trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/libprov/MavenLibraryProviderUninstallOperation.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/libprov/MavenLibraryProviderUninstallOperation.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/maven/plugins/org.jboss.tools.maven.core/src/org/jboss/tools/maven/core/libprov/MavenLibraryProviderUninstallOperation.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2009-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2009-2011 Red Hat, Inc. 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
Modified: trunk/maven/plugins/org.jboss.tools.maven.hibernate/src/org/jboss/tools/maven/hibernate/MavenHibernateActivator.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.hibernate/src/org/jboss/tools/maven/hibernate/MavenHibernateActivator.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/maven/plugins/org.jboss.tools.maven.hibernate/src/org/jboss/tools/maven/hibernate/MavenHibernateActivator.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/maven/plugins/org.jboss.tools.maven.hibernate/src/org/jboss/tools/maven/hibernate/configurators/HibernateProjectConfigurator.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.hibernate/src/org/jboss/tools/maven/hibernate/configurators/HibernateProjectConfigurator.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/maven/plugins/org.jboss.tools.maven.hibernate/src/org/jboss/tools/maven/hibernate/configurators/HibernateProjectConfigurator.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/maven/plugins/org.jboss.tools.maven.project.examples/src/org/jboss/tools/maven/project/examples/ImportMavenArchetypeProjectExample.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.project.examples/src/org/jboss/tools/maven/project/examples/ImportMavenArchetypeProjectExample.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/maven/plugins/org.jboss.tools.maven.project.examples/src/org/jboss/tools/maven/project/examples/ImportMavenArchetypeProjectExample.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/maven/plugins/org.jboss.tools.maven.project.examples/src/org/jboss/tools/maven/project/examples/ImportMavenProjectExample.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.project.examples/src/org/jboss/tools/maven/project/examples/ImportMavenProjectExample.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/maven/plugins/org.jboss.tools.maven.project.examples/src/org/jboss/tools/maven/project/examples/ImportMavenProjectExample.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/maven/plugins/org.jboss.tools.maven.project.examples/src/org/jboss/tools/maven/project/examples/wizard/ArchetypeExamplesWizard.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.project.examples/src/org/jboss/tools/maven/project/examples/wizard/ArchetypeExamplesWizard.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/maven/plugins/org.jboss.tools.maven.project.examples/src/org/jboss/tools/maven/project/examples/wizard/ArchetypeExamplesWizard.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/maven/plugins/org.jboss.tools.maven.project.examples/src/org/jboss/tools/maven/project/examples/wizard/ArchetypeExamplesWizardPage.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.project.examples/src/org/jboss/tools/maven/project/examples/wizard/ArchetypeExamplesWizardPage.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/maven/plugins/org.jboss.tools.maven.project.examples/src/org/jboss/tools/maven/project/examples/wizard/ArchetypeExamplesWizardPage.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/maven/plugins/org.jboss.tools.maven.seam/src/org/jboss/tools/maven/seam/MavenSeamActivator.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.seam/src/org/jboss/tools/maven/seam/MavenSeamActivator.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/maven/plugins/org.jboss.tools.maven.seam/src/org/jboss/tools/maven/seam/MavenSeamActivator.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/maven/plugins/org.jboss.tools.maven.seam/src/org/jboss/tools/maven/seam/ParentAdder.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.seam/src/org/jboss/tools/maven/seam/ParentAdder.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/maven/plugins/org.jboss.tools.maven.seam/src/org/jboss/tools/maven/seam/ParentAdder.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/maven/plugins/org.jboss.tools.maven.seam/src/org/jboss/tools/maven/seam/configurators/FixClasspathConfigurator.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.seam/src/org/jboss/tools/maven/seam/configurators/FixClasspathConfigurator.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/maven/plugins/org.jboss.tools.maven.seam/src/org/jboss/tools/maven/seam/configurators/FixClasspathConfigurator.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/maven/plugins/org.jboss.tools.maven.seam/src/org/jboss/tools/maven/seam/configurators/SeamProjectConfigurator.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.seam/src/org/jboss/tools/maven/seam/configurators/SeamProjectConfigurator.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/maven/plugins/org.jboss.tools.maven.seam/src/org/jboss/tools/maven/seam/configurators/SeamProjectConfigurator.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/maven/plugins/org.jboss.tools.maven.ui/src/org/jboss/tools/maven/ui/Activator.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.ui/src/org/jboss/tools/maven/ui/Activator.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/maven/plugins/org.jboss.tools.maven.ui/src/org/jboss/tools/maven/ui/Activator.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2009-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2009-2011 Red Hat, Inc. 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
Modified: trunk/maven/plugins/org.jboss.tools.maven.ui/src/org/jboss/tools/maven/ui/Messages.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.ui/src/org/jboss/tools/maven/ui/Messages.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/maven/plugins/org.jboss.tools.maven.ui/src/org/jboss/tools/maven/ui/Messages.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2009-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2009-2011 Red Hat, Inc. 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
Modified: trunk/maven/plugins/org.jboss.tools.maven.ui/src/org/jboss/tools/maven/ui/internal/libprov/DependencyEditingSupport.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.ui/src/org/jboss/tools/maven/ui/internal/libprov/DependencyEditingSupport.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/maven/plugins/org.jboss.tools.maven.ui/src/org/jboss/tools/maven/ui/internal/libprov/DependencyEditingSupport.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2009-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2009-2011 Red Hat, Inc. 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
Modified: trunk/maven/plugins/org.jboss.tools.maven.ui/src/org/jboss/tools/maven/ui/internal/libprov/ExclusionEditingSupport.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.ui/src/org/jboss/tools/maven/ui/internal/libprov/ExclusionEditingSupport.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/maven/plugins/org.jboss.tools.maven.ui/src/org/jboss/tools/maven/ui/internal/libprov/ExclusionEditingSupport.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2009-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2009-2011 Red Hat, Inc. 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
Modified: trunk/maven/plugins/org.jboss.tools.maven.ui/src/org/jboss/tools/maven/ui/internal/libprov/MavenUserLibraryProviderInstallPanel.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.ui/src/org/jboss/tools/maven/ui/internal/libprov/MavenUserLibraryProviderInstallPanel.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/maven/plugins/org.jboss.tools.maven.ui/src/org/jboss/tools/maven/ui/internal/libprov/MavenUserLibraryProviderInstallPanel.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2009-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2009-2011 Red Hat, Inc. 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
Modified: trunk/maven/plugins/org.jboss.tools.maven.ui/src/org/jboss/tools/maven/ui/internal/project/facet/MavenFacetInstallPage.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.ui/src/org/jboss/tools/maven/ui/internal/project/facet/MavenFacetInstallPage.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/maven/plugins/org.jboss.tools.maven.ui/src/org/jboss/tools/maven/ui/internal/project/facet/MavenFacetInstallPage.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2009-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2009-2011 Red Hat, Inc. 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
Modified: trunk/maven/plugins/org.jboss.tools.maven.ui/src/org/jboss/tools/maven/ui/preferences/ConfiguratorPreferencePage.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.ui/src/org/jboss/tools/maven/ui/preferences/ConfiguratorPreferencePage.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/maven/plugins/org.jboss.tools.maven.ui/src/org/jboss/tools/maven/ui/preferences/ConfiguratorPreferencePage.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2009-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2009-2011 Red Hat, Inc. 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
Modified: trunk/maven/plugins/org.jboss.tools.maven.ui/src/org/jboss/tools/maven/ui/preferences/ConfiguratorPreferencesInitializer.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.ui/src/org/jboss/tools/maven/ui/preferences/ConfiguratorPreferencesInitializer.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/maven/plugins/org.jboss.tools.maven.ui/src/org/jboss/tools/maven/ui/preferences/ConfiguratorPreferencesInitializer.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2009-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2009-2011 Red Hat, Inc. 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
Modified: trunk/maven/tests/org.jboss.tools.maven.ui.bot.test/src/org/jboss/tools/maven/ui/bot/test/CreateMavenizedSeamProjectTest.java
===================================================================
--- trunk/maven/tests/org.jboss.tools.maven.ui.bot.test/src/org/jboss/tools/maven/ui/bot/test/CreateMavenizedSeamProjectTest.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/maven/tests/org.jboss.tools.maven.ui.bot.test/src/org/jboss/tools/maven/ui/bot/test/CreateMavenizedSeamProjectTest.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2011 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/portlet/features/org.jboss.tools.portlet.feature/feature.properties
===================================================================
--- trunk/portlet/features/org.jboss.tools.portlet.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/portlet/features/org.jboss.tools.portlet.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2008-2010 JBoss by Red Hat and others.
+# Copyright (c) 2008-2011 Red Hat, Inc. 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
@@ -27,7 +27,7 @@
description=JBoss Portlet
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2008-2010 JBoss by Red Hat and others.\nAll rights reserved. This program and the accompanying materials\n\
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. 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.\n
############### end of copyright property ####################################
Modified: trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/IPortletConstants.java
===================================================================
--- trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/IPortletConstants.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/IPortletConstants.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/JSFPortlet10LibrariesContainerInitializer.java
===================================================================
--- trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/JSFPortlet10LibrariesContainerInitializer.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/JSFPortlet10LibrariesContainerInitializer.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/Portlet20LibrariesContainerInitializer.java
===================================================================
--- trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/Portlet20LibrariesContainerInitializer.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/Portlet20LibrariesContainerInitializer.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/PortletRuntimeLibrariesContainerInitializer.java
===================================================================
--- trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/PortletRuntimeLibrariesContainerInitializer.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/PortletRuntimeLibrariesContainerInitializer.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/JSFPortletFacetInstallDataModelProvider.java
===================================================================
--- trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/JSFPortletFacetInstallDataModelProvider.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/JSFPortletFacetInstallDataModelProvider.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/JSFPortletFacetInstallDelegate.java
===================================================================
--- trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/JSFPortletFacetInstallDelegate.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/JSFPortletFacetInstallDelegate.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/JSFPortletFacetUninstallDelegate.java
===================================================================
--- trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/JSFPortletFacetUninstallDelegate.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/JSFPortletFacetUninstallDelegate.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/PortletFacetInstallDataModelProvider.java
===================================================================
--- trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/PortletFacetInstallDataModelProvider.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/PortletFacetInstallDataModelProvider.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/PortletFacetInstallDelegate.java
===================================================================
--- trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/PortletFacetInstallDelegate.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/PortletFacetInstallDelegate.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/PortletFacetUninstallDelegate.java
===================================================================
--- trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/PortletFacetUninstallDelegate.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/PortletFacetUninstallDelegate.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/SeamPortletFacetInstallDataModelProvider.java
===================================================================
--- trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/SeamPortletFacetInstallDataModelProvider.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/SeamPortletFacetInstallDataModelProvider.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/SeamPortletFacetInstallDelegate.java
===================================================================
--- trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/SeamPortletFacetInstallDelegate.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/SeamPortletFacetInstallDelegate.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/SeamPortletFacetUninstallDelegate.java
===================================================================
--- trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/SeamPortletFacetUninstallDelegate.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/SeamPortletFacetUninstallDelegate.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/profiler/features/org.jboss.tools.profiler.feature/feature.properties
===================================================================
--- trunk/profiler/features/org.jboss.tools.profiler.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/profiler/features/org.jboss.tools.profiler.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2009-2010 JBoss by Red Hat and others.
+# Copyright (c) 2009-2011 Red Hat, Inc. 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
Modified: trunk/runtime/features/org.jboss.tools.runtime.as.detector.feature/feature.properties
===================================================================
--- trunk/runtime/features/org.jboss.tools.runtime.as.detector.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/runtime/features/org.jboss.tools.runtime.as.detector.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2009-2010 JBoss by Red Hat and others.
+# Copyright (c) 2009-2011 Red Hat, Inc. 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
@@ -28,7 +28,7 @@
description=JBoss Runtime AS Detector
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2008-2011 JBoss by Red Hat and others.\nAll rights reserved. This program and the accompanying materials\n
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. 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\n\
which accompanies this distribution, and is available at\n\
http\://www.eclipse.org/legal/epl-v10.html\n\
Modified: trunk/runtime/features/org.jboss.tools.runtime.core.feature/feature.properties
===================================================================
--- trunk/runtime/features/org.jboss.tools.runtime.core.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/runtime/features/org.jboss.tools.runtime.core.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2009-2010 JBoss by Red Hat and others.
+# Copyright (c) 2009-2011 Red Hat, Inc. 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
@@ -28,7 +28,7 @@
description=JBoss Runtime Detection Core
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2008-2010 JBoss by Red Hat and others.\nAll rights reserved. This program and the accompanying materials\n
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. 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\n\
which accompanies this distribution, and is available at\n\
http\://www.eclipse.org/legal/epl-v10.html\n\
Modified: trunk/runtime/features/org.jboss.tools.runtime.drools.detector.feature/feature.properties
===================================================================
--- trunk/runtime/features/org.jboss.tools.runtime.drools.detector.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/runtime/features/org.jboss.tools.runtime.drools.detector.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2009-2010 JBoss by Red Hat and others.
+# Copyright (c) 2009-2011 Red Hat, Inc. 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
@@ -28,7 +28,7 @@
description=JBoss Runtime Drools Detector
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2008-2011 JBoss by Red Hat and others.\nAll rights reserved. This program and the accompanying materials\n
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. 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\n\
which accompanies this distribution, and is available at\n\
http\://www.eclipse.org/legal/epl-v10.html\n\
Modified: trunk/runtime/features/org.jboss.tools.runtime.feature/feature.properties
===================================================================
--- trunk/runtime/features/org.jboss.tools.runtime.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/runtime/features/org.jboss.tools.runtime.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2009-2010 JBoss by Red Hat and others.
+# Copyright (c) 2009-2011 Red Hat, Inc. 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
@@ -28,7 +28,7 @@
description=This feature provides runtime initialization
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2008-2010 JBoss by Red Hat and others.\nAll rights reserved. This program and the accompanying materials\n
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. 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\n\
which accompanies this distribution, and is available at\n\
http\://www.eclipse.org/legal/epl-v10.html\n\
Modified: trunk/runtime/features/org.jboss.tools.runtime.jbpm.detector.feature/feature.properties
===================================================================
--- trunk/runtime/features/org.jboss.tools.runtime.jbpm.detector.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/runtime/features/org.jboss.tools.runtime.jbpm.detector.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2009-2010 JBoss by Red Hat and others.
+# Copyright (c) 2009-2011 Red Hat, Inc. 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
@@ -28,7 +28,7 @@
description=JBoss Runtime jBPM Detector
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2008-2011 JBoss by Red Hat and others.\nAll rights reserved. This program and the accompanying materials\n
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. 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\n\
which accompanies this distribution, and is available at\n\
http\://www.eclipse.org/legal/epl-v10.html\n\
Modified: trunk/runtime/features/org.jboss.tools.runtime.seam.detector.feature/feature.properties
===================================================================
--- trunk/runtime/features/org.jboss.tools.runtime.seam.detector.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/runtime/features/org.jboss.tools.runtime.seam.detector.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2009-2010 JBoss by Red Hat and others.
+# Copyright (c) 2009-2011 Red Hat, Inc. 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
@@ -28,7 +28,7 @@
description=JBoss Runtime Seam Detector
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2008-2011 JBoss by Red Hat and others.\nAll rights reserved. This program and the accompanying materials\n
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. 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\n\
which accompanies this distribution, and is available at\n\
http\://www.eclipse.org/legal/epl-v10.html\n\
Modified: trunk/runtime/features/org.jboss.tools.runtime.test.feature/feature.properties
===================================================================
--- trunk/runtime/features/org.jboss.tools.runtime.test.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/runtime/features/org.jboss.tools.runtime.test.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2008-2010 JBoss by Red Hat and others.
+# Copyright (c) 2008-2011 Red Hat, Inc. 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
@@ -27,7 +27,7 @@
description=JBoss Runtime Detection Test Suite
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2008-2011 JBoss by Red Hat and others.\nAll rights reserved. This program and the accompanying materials\n
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. 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\n\
which accompanies this distribution, and is available at\n\
http\://www.eclipse.org/legal/epl-v10.html\n\
Modified: trunk/runtime/plugins/org.jboss.tools.runtime/src/org/jboss/tools/runtime/preferences/JBossRuntimePreferencesInitializer.java
===================================================================
--- trunk/runtime/plugins/org.jboss.tools.runtime/src/org/jboss/tools/runtime/preferences/JBossRuntimePreferencesInitializer.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/runtime/plugins/org.jboss.tools.runtime/src/org/jboss/tools/runtime/preferences/JBossRuntimePreferencesInitializer.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/RuntimeCoreActivator.java
===================================================================
--- trunk/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/RuntimeCoreActivator.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/RuntimeCoreActivator.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2010 JBoss by Red Hat and others.
+ * Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/model/AbstractRuntimeDetector.java
===================================================================
--- trunk/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/model/AbstractRuntimeDetector.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/model/AbstractRuntimeDetector.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2010 JBoss by Red Hat and others.
+ * Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/model/IRuntimeDetector.java
===================================================================
--- trunk/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/model/IRuntimeDetector.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/model/IRuntimeDetector.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2010 JBoss by Red Hat and others.
+ * Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/model/InvalidRuntimeDetector.java
===================================================================
--- trunk/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/model/InvalidRuntimeDetector.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/model/InvalidRuntimeDetector.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2011 JBoss by Red Hat and others.
+ * Copyright (c) 2011 Red Hat, Inc. 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
Modified: trunk/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/model/RuntimePath.java
===================================================================
--- trunk/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/model/RuntimePath.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/model/RuntimePath.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2010 JBoss by Red Hat and others.
+ * Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/model/ServerDefinition.java
===================================================================
--- trunk/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/model/ServerDefinition.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/runtime/plugins/org.jboss.tools.runtime.core/src/org/jboss/tools/runtime/core/model/ServerDefinition.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2010 JBoss by Red Hat and others.
+ * Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/runtime/plugins/org.jboss.tools.runtime.jbpm.detector/src/org/jboss/tools/runtime/handlers/JbpmHandler.java
===================================================================
--- trunk/runtime/plugins/org.jboss.tools.runtime.jbpm.detector/src/org/jboss/tools/runtime/handlers/JbpmHandler.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/runtime/plugins/org.jboss.tools.runtime.jbpm.detector/src/org/jboss/tools/runtime/handlers/JbpmHandler.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2010 JBoss by Red Hat and others.
+ * Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/runtime/plugins/org.jboss.tools.runtime.seam.detector/src/org/jboss/tools/runtime/handlers/SeamHandler.java
===================================================================
--- trunk/runtime/plugins/org.jboss.tools.runtime.seam.detector/src/org/jboss/tools/runtime/handlers/SeamHandler.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/runtime/plugins/org.jboss.tools.runtime.seam.detector/src/org/jboss/tools/runtime/handlers/SeamHandler.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2010 JBoss by Red Hat and others.
+ * Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/RuntimeContentProvider.java
===================================================================
--- trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/RuntimeContentProvider.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/RuntimeContentProvider.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2010 JBoss by Red Hat and others.
+ * Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/RuntimeLabelProvider.java
===================================================================
--- trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/RuntimeLabelProvider.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/RuntimeLabelProvider.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2010 JBoss by Red Hat and others.
+ * Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/RuntimeScanner.java
===================================================================
--- trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/RuntimeScanner.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/RuntimeScanner.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2010 JBoss by Red Hat and others.
+ * Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/RuntimeUIActivator.java
===================================================================
--- trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/RuntimeUIActivator.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/RuntimeUIActivator.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2010 JBoss by Red Hat and others.
+ * Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/AutoResizeTableLayout.java
===================================================================
--- trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/AutoResizeTableLayout.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/AutoResizeTableLayout.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2010 JBoss by Red Hat and others.
+ * Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/EditRuntimePathDialog.java
===================================================================
--- trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/EditRuntimePathDialog.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/EditRuntimePathDialog.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2010 JBoss by Red Hat and others.
+ * Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/RuntimePathEditingSupport.java
===================================================================
--- trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/RuntimePathEditingSupport.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/RuntimePathEditingSupport.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2010 JBoss by Red Hat and others.
+ * Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/SearchRuntimePathDialog.java
===================================================================
--- trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/SearchRuntimePathDialog.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/dialogs/SearchRuntimePathDialog.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2010 JBoss by Red Hat and others.
+ * Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/preferences/JBossRuntimePreferencesInitializer.java
===================================================================
--- trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/preferences/JBossRuntimePreferencesInitializer.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/preferences/JBossRuntimePreferencesInitializer.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2010 JBoss by Red Hat and others.
+ * Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/preferences/RuntimePreferencePage.java
===================================================================
--- trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/preferences/RuntimePreferencePage.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/preferences/RuntimePreferencePage.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2010 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/runtime/tests/org.jboss.tools.runtime.test/src/org/jboss/tools/runtime/test/IRuntimeDetectionConstants.java
===================================================================
--- trunk/runtime/tests/org.jboss.tools.runtime.test/src/org/jboss/tools/runtime/test/IRuntimeDetectionConstants.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/runtime/tests/org.jboss.tools.runtime.test/src/org/jboss/tools/runtime/test/IRuntimeDetectionConstants.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2011 JBoss by Red Hat and others.
+ * Copyright (c) 2011 Red Hat, Inc. 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
Modified: trunk/runtime/tests/org.jboss.tools.runtime.test/src/org/jboss/tools/runtime/test/RuntimeDetectionAllTests.java
===================================================================
--- trunk/runtime/tests/org.jboss.tools.runtime.test/src/org/jboss/tools/runtime/test/RuntimeDetectionAllTests.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/runtime/tests/org.jboss.tools.runtime.test/src/org/jboss/tools/runtime/test/RuntimeDetectionAllTests.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2011 JBoss by Red Hat and others.
+ * Copyright (c) 2011 Red Hat, Inc. 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
Modified: trunk/runtime/tests/org.jboss.tools.runtime.test/src/org/jboss/tools/runtime/test/RuntimeDetectionTest.java
===================================================================
--- trunk/runtime/tests/org.jboss.tools.runtime.test/src/org/jboss/tools/runtime/test/RuntimeDetectionTest.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/runtime/tests/org.jboss.tools.runtime.test/src/org/jboss/tools/runtime/test/RuntimeDetectionTest.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2011 JBoss by Red Hat and others.
+ * Copyright (c) 2011 Red Hat, Inc. 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
Modified: trunk/seam/features/org.jboss.tools.seam.feature/feature.properties
===================================================================
--- trunk/seam/features/org.jboss.tools.seam.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/seam/features/org.jboss.tools.seam.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/dialog/SeamFacetVersionChangeDialog.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/dialog/SeamFacetVersionChangeDialog.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/dialog/SeamFacetVersionChangeDialog.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/jbide/JBide3989Test.java
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/jbide/JBide3989Test.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/jbide/JBide3989Test.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/marker/SeamMarkerResolutionTest.java
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/marker/SeamMarkerResolutionTest.java 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/seam/tests/org.jboss.tools.seam.ui.test/src/org/jboss/tools/seam/ui/test/marker/SeamMarkerResolutionTest.java 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
/*************************************************************************************
- * Copyright (c) 2008-2009 JBoss by Red Hat and others.
+ * Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/smooks/features/org.jboss.tools.smooks.feature/feature.properties
===================================================================
--- trunk/smooks/features/org.jboss.tools.smooks.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/smooks/features/org.jboss.tools.smooks.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2008-2010 JBoss by Red Hat and others.
+# Copyright (c) 2008-2011 Red Hat, Inc. 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
@@ -27,7 +27,7 @@
description=Smooks Tools
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2008-2010 JBoss by Red Hat and others.\nAll rights reserved. This program and the accompanying materials\n\
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. 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.\n
############### end of copyright property ####################################
Modified: trunk/struts/features/org.jboss.tools.struts.feature/feature.properties
===================================================================
--- trunk/struts/features/org.jboss.tools.struts.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/struts/features/org.jboss.tools.struts.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2008-2010 JBoss by Red Hat and others.
+# Copyright (c) 2008-2011 Red Hat, Inc. 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
Modified: trunk/tptp/features/org.jboss.tools.tptp.feature/feature.properties
===================================================================
--- trunk/tptp/features/org.jboss.tools.tptp.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/tptp/features/org.jboss.tools.tptp.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2008-2010 JBoss by Red Hat and others.
+# Copyright (c) 2008-2011 Red Hat, Inc. 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
@@ -27,7 +27,7 @@
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\
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. 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\
Modified: trunk/usage/features/org.jboss.tools.usage.feature/feature.properties
===================================================================
--- trunk/usage/features/org.jboss.tools.usage.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/usage/features/org.jboss.tools.usage.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2008-2010 JBoss by Red Hat and others.
+# Copyright (c) 2008-2011 Red Hat, Inc. 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
@@ -27,7 +27,7 @@
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\
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. 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\
Modified: trunk/usage/features/org.jboss.tools.usage.test.feature/feature.properties
===================================================================
--- trunk/usage/features/org.jboss.tools.usage.test.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/usage/features/org.jboss.tools.usage.test.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2008-2010 JBoss by Red Hat and others.
+# Copyright (c) 2008-2011 Red Hat, Inc. 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
@@ -27,7 +27,7 @@
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\
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. 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\
Modified: trunk/vpe/features/org.jboss.tools.vpe.feature/feature.properties
===================================================================
--- trunk/vpe/features/org.jboss.tools.vpe.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/vpe/features/org.jboss.tools.vpe.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat and others.
+# Copyright (c) 2010-2011 Red Hat, Inc. 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
Modified: trunk/ws/features/org.jboss.tools.ws.feature/feature.properties
===================================================================
--- trunk/ws/features/org.jboss.tools.ws.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/ws/features/org.jboss.tools.ws.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2008-2010 JBoss by Red Hat and others.
+# Copyright (c) 2008-2011 Red Hat, Inc. 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
@@ -28,7 +28,7 @@
description=JBoss WebServices Tools
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2008-2010 JBoss by Red Hat and others.\n\
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. 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\
Modified: trunk/ws/features/org.jboss.tools.ws.jaxrs.feature/feature.properties
===================================================================
--- trunk/ws/features/org.jboss.tools.ws.jaxrs.feature/feature.properties 2011-06-04 22:13:25 UTC (rev 31838)
+++ trunk/ws/features/org.jboss.tools.ws.jaxrs.feature/feature.properties 2011-06-04 22:21:44 UTC (rev 31839)
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2008-2010 JBoss by Red Hat and others.
+# Copyright (c) 2008-2011 Red Hat, Inc. 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
@@ -28,7 +28,7 @@
description=JBoss JAX-RS Tools
# "copyright" property - text of the "Feature Update Copyright"
-copyright=Copyright (c) 2008-2010 JBoss by Red Hat and others.\n\
+copyright=Copyright (c) 2008-2011 Red Hat, Inc. 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\
14 years, 10 months
JBoss Tools SVN: r31838 - in trunk: bot.tests/features and 9 other directories.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-06-04 18:13:25 -0400 (Sat, 04 Jun 2011)
New Revision: 31838
Added:
trunk/build/aggregate/bottests-site/
trunk/build/aggregate/bottests-site/.gitignore
trunk/build/aggregate/bottests-site/features/
trunk/build/aggregate/bottests-site/features/.gitignore
trunk/build/aggregate/bottests-site/features/org.jboss.tools.bot.test.feature/
trunk/build/aggregate/bottests-site/features/org.jboss.tools.bot.test.feature/.gitignore
trunk/build/aggregate/bottests-site/features/org.jboss.tools.bot.test.feature/build.properties
trunk/build/aggregate/bottests-site/features/org.jboss.tools.bot.test.feature/epl-v10.html
trunk/build/aggregate/bottests-site/features/org.jboss.tools.bot.test.feature/feature.xml
trunk/build/aggregate/bottests-site/features/org.jboss.tools.bot.test.feature/pom.xml
trunk/build/aggregate/bottests-site/features/pom.xml
trunk/build/aggregate/bottests-site/plugins/
trunk/build/aggregate/bottests-site/plugins/.gitignore
trunk/build/aggregate/bottests-site/plugins/pom.xml
trunk/build/aggregate/bottests-site/pom.xml
trunk/build/aggregate/bottests-site/site/
trunk/build/aggregate/bottests-site/site/.gitignore
trunk/build/aggregate/bottests-site/site/pom.xml
trunk/build/aggregate/bottests-site/site/site.xml
Removed:
trunk/bot.tests/.gitignore
trunk/bot.tests/features/.gitignore
trunk/bot.tests/features/org.jboss.tools.bot.test.feature/.gitignore
trunk/bot.tests/features/org.jboss.tools.bot.test.feature/build.properties
trunk/bot.tests/features/org.jboss.tools.bot.test.feature/epl-v10.html
trunk/bot.tests/features/org.jboss.tools.bot.test.feature/feature.xml
trunk/bot.tests/features/org.jboss.tools.bot.test.feature/pom.xml
trunk/bot.tests/features/pom.xml
trunk/bot.tests/plugins/.gitignore
trunk/bot.tests/plugins/pom.xml
trunk/bot.tests/pom.xml
trunk/bot.tests/site/.gitignore
trunk/bot.tests/site/pom.xml
trunk/bot.tests/site/site.xml
Log:
move from root into aggregate/ folder, as this will be an aggregation of stuff built upstream
Deleted: trunk/bot.tests/.gitignore
===================================================================
--- trunk/bot.tests/.gitignore 2011-06-04 22:00:35 UTC (rev 31837)
+++ trunk/bot.tests/.gitignore 2011-06-04 22:13:25 UTC (rev 31838)
@@ -1,2 +0,0 @@
-.project
-.settings/
Deleted: trunk/bot.tests/features/.gitignore
===================================================================
--- trunk/bot.tests/features/.gitignore 2011-06-04 22:00:35 UTC (rev 31837)
+++ trunk/bot.tests/features/.gitignore 2011-06-04 22:13:25 UTC (rev 31838)
@@ -1,2 +0,0 @@
-.settings/
-.project
Deleted: trunk/bot.tests/features/org.jboss.tools.bot.test.feature/.gitignore
===================================================================
--- trunk/bot.tests/features/org.jboss.tools.bot.test.feature/.gitignore 2011-06-04 22:00:35 UTC (rev 31837)
+++ trunk/bot.tests/features/org.jboss.tools.bot.test.feature/.gitignore 2011-06-04 22:13:25 UTC (rev 31838)
@@ -1 +0,0 @@
-target/
Deleted: trunk/bot.tests/features/org.jboss.tools.bot.test.feature/build.properties
===================================================================
--- trunk/bot.tests/features/org.jboss.tools.bot.test.feature/build.properties 2011-06-04 22:00:35 UTC (rev 31837)
+++ trunk/bot.tests/features/org.jboss.tools.bot.test.feature/build.properties 2011-06-04 22:13:25 UTC (rev 31838)
@@ -1,3 +0,0 @@
-bin.includes = feature.xml
-src.includes = feature.xml,\
- build.properties
Deleted: trunk/bot.tests/features/org.jboss.tools.bot.test.feature/epl-v10.html
===================================================================
--- trunk/bot.tests/features/org.jboss.tools.bot.test.feature/epl-v10.html 2011-06-04 22:00:35 UTC (rev 31837)
+++ trunk/bot.tests/features/org.jboss.tools.bot.test.feature/epl-v10.html 2011-06-04 22:13:25 UTC (rev 31838)
@@ -1,261 +0,0 @@
-<?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>Eclipse Public License - Version 1.0</title>
-<style type="text/css">
- body {
- size: 8.5in 11.0in;
- margin: 0.25in 0.5in 0.25in 0.5in;
- tab-interval: 0.5in;
- }
- p {
- margin-left: auto;
- margin-top: 0.5em;
- margin-bottom: 0.5em;
- }
- p.list {
- margin-left: 0.5in;
- margin-top: 0.05em;
- margin-bottom: 0.05em;
- }
- </style>
-
-</head>
-
-<body lang="EN-US">
-
-<p align=center><b>Eclipse Public License - v 1.0</b></p>
-
-<p>THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
-PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR
-DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS
-AGREEMENT.</p>
-
-<p><b>1. DEFINITIONS</b></p>
-
-<p>"Contribution" means:</p>
-
-<p class="list">a) in the case of the initial Contributor, the initial
-code and documentation distributed under this Agreement, and</p>
-<p class="list">b) in the case of each subsequent Contributor:</p>
-<p class="list">i) changes to the Program, and</p>
-<p class="list">ii) additions to the Program;</p>
-<p class="list">where such changes and/or additions to the Program
-originate from and are distributed by that particular Contributor. A
-Contribution 'originates' from a Contributor if it was added to the
-Program by such Contributor itself or anyone acting on such
-Contributor's behalf. Contributions do not include additions to the
-Program which: (i) are separate modules of software distributed in
-conjunction with the Program under their own license agreement, and (ii)
-are not derivative works of the Program.</p>
-
-<p>"Contributor" means any person or entity that distributes
-the Program.</p>
-
-<p>"Licensed Patents" mean patent claims licensable by a
-Contributor which are necessarily infringed by the use or sale of its
-Contribution alone or when combined with the Program.</p>
-
-<p>"Program" means the Contributions distributed in accordance
-with this Agreement.</p>
-
-<p>"Recipient" means anyone who receives the Program under
-this Agreement, including all Contributors.</p>
-
-<p><b>2. GRANT OF RIGHTS</b></p>
-
-<p class="list">a) Subject to the terms of this Agreement, each
-Contributor hereby grants Recipient a non-exclusive, worldwide,
-royalty-free copyright license to reproduce, prepare derivative works
-of, publicly display, publicly perform, distribute and sublicense the
-Contribution of such Contributor, if any, and such derivative works, in
-source code and object code form.</p>
-
-<p class="list">b) Subject to the terms of this Agreement, each
-Contributor hereby grants Recipient a non-exclusive, worldwide,
-royalty-free patent license under Licensed Patents to make, use, sell,
-offer to sell, import and otherwise transfer the Contribution of such
-Contributor, if any, in source code and object code form. This patent
-license shall apply to the combination of the Contribution and the
-Program if, at the time the Contribution is added by the Contributor,
-such addition of the Contribution causes such combination to be covered
-by the Licensed Patents. The patent license shall not apply to any other
-combinations which include the Contribution. No hardware per se is
-licensed hereunder.</p>
-
-<p class="list">c) Recipient understands that although each Contributor
-grants the licenses to its Contributions set forth herein, no assurances
-are provided by any Contributor that the Program does not infringe the
-patent or other intellectual property rights of any other entity. Each
-Contributor disclaims any liability to Recipient for claims brought by
-any other entity based on infringement of intellectual property rights
-or otherwise. As a condition to exercising the rights and licenses
-granted hereunder, each Recipient hereby assumes sole responsibility to
-secure any other intellectual property rights needed, if any. For
-example, if a third party patent license is required to allow Recipient
-to distribute the Program, it is Recipient's responsibility to acquire
-that license before distributing the Program.</p>
-
-<p class="list">d) Each Contributor represents that to its knowledge it
-has sufficient copyright rights in its Contribution, if any, to grant
-the copyright license set forth in this Agreement.</p>
-
-<p><b>3. REQUIREMENTS</b></p>
-
-<p>A Contributor may choose to distribute the Program in object code
-form under its own license agreement, provided that:</p>
-
-<p class="list">a) it complies with the terms and conditions of this
-Agreement; and</p>
-
-<p class="list">b) its license agreement:</p>
-
-<p class="list">i) effectively disclaims on behalf of all Contributors
-all warranties and conditions, express and implied, including warranties
-or conditions of title and non-infringement, and implied warranties or
-conditions of merchantability and fitness for a particular purpose;</p>
-
-<p class="list">ii) effectively excludes on behalf of all Contributors
-all liability for damages, including direct, indirect, special,
-incidental and consequential damages, such as lost profits;</p>
-
-<p class="list">iii) states that any provisions which differ from this
-Agreement are offered by that Contributor alone and not by any other
-party; and</p>
-
-<p class="list">iv) states that source code for the Program is available
-from such Contributor, and informs licensees how to obtain it in a
-reasonable manner on or through a medium customarily used for software
-exchange.</p>
-
-<p>When the Program is made available in source code form:</p>
-
-<p class="list">a) it must be made available under this Agreement; and</p>
-
-<p class="list">b) a copy of this Agreement must be included with each
-copy of the Program.</p>
-
-<p>Contributors may not remove or alter any copyright notices contained
-within the Program.</p>
-
-<p>Each Contributor must identify itself as the originator of its
-Contribution, if any, in a manner that reasonably allows subsequent
-Recipients to identify the originator of the Contribution.</p>
-
-<p><b>4. COMMERCIAL DISTRIBUTION</b></p>
-
-<p>Commercial distributors of software may accept certain
-responsibilities with respect to end users, business partners and the
-like. While this license is intended to facilitate the commercial use of
-the Program, the Contributor who includes the Program in a commercial
-product offering should do so in a manner which does not create
-potential liability for other Contributors. Therefore, if a Contributor
-includes the Program in a commercial product offering, such Contributor
-("Commercial Contributor") hereby agrees to defend and
-indemnify every other Contributor ("Indemnified Contributor")
-against any losses, damages and costs (collectively "Losses")
-arising from claims, lawsuits and other legal actions brought by a third
-party against the Indemnified Contributor to the extent caused by the
-acts or omissions of such Commercial Contributor in connection with its
-distribution of the Program in a commercial product offering. The
-obligations in this section do not apply to any claims or Losses
-relating to any actual or alleged intellectual property infringement. In
-order to qualify, an Indemnified Contributor must: a) promptly notify
-the Commercial Contributor in writing of such claim, and b) allow the
-Commercial Contributor to control, and cooperate with the Commercial
-Contributor in, the defense and any related settlement negotiations. The
-Indemnified Contributor may participate in any such claim at its own
-expense.</p>
-
-<p>For example, a Contributor might include the Program in a commercial
-product offering, Product X. That Contributor is then a Commercial
-Contributor. If that Commercial Contributor then makes performance
-claims, or offers warranties related to Product X, those performance
-claims and warranties are such Commercial Contributor's responsibility
-alone. Under this section, the Commercial Contributor would have to
-defend claims against the other Contributors related to those
-performance claims and warranties, and if a court requires any other
-Contributor to pay any damages as a result, the Commercial Contributor
-must pay those damages.</p>
-
-<p><b>5. NO WARRANTY</b></p>
-
-<p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS
-PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
-OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION,
-ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY
-OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
-responsible for determining the appropriateness of using and
-distributing the Program and assumes all risks associated with its
-exercise of rights under this Agreement , including but not limited to
-the risks and costs of program errors, compliance with applicable laws,
-damage to or loss of data, programs or equipment, and unavailability or
-interruption of operations.</p>
-
-<p><b>6. DISCLAIMER OF LIABILITY</b></p>
-
-<p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT
-NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,
-INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING
-WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF
-LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
-NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR
-DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
-HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.</p>
-
-<p><b>7. GENERAL</b></p>
-
-<p>If any provision of this Agreement is invalid or unenforceable under
-applicable law, it shall not affect the validity or enforceability of
-the remainder of the terms of this Agreement, and without further action
-by the parties hereto, such provision shall be reformed to the minimum
-extent necessary to make such provision valid and enforceable.</p>
-
-<p>If Recipient institutes patent litigation against any entity
-(including a cross-claim or counterclaim in a lawsuit) alleging that the
-Program itself (excluding combinations of the Program with other
-software or hardware) infringes such Recipient's patent(s), then such
-Recipient's rights granted under Section 2(b) shall terminate as of the
-date such litigation is filed.</p>
-
-<p>All Recipient's rights under this Agreement shall terminate if it
-fails to comply with any of the material terms or conditions of this
-Agreement and does not cure such failure in a reasonable period of time
-after becoming aware of such noncompliance. If all Recipient's rights
-under this Agreement terminate, Recipient agrees to cease use and
-distribution of the Program as soon as reasonably practicable. However,
-Recipient's obligations under this Agreement and any licenses granted by
-Recipient relating to the Program shall continue and survive.</p>
-
-<p>Everyone is permitted to copy and distribute copies of this
-Agreement, but in order to avoid inconsistency the Agreement is
-copyrighted and may only be modified in the following manner. The
-Agreement Steward reserves the right to publish new versions (including
-revisions) of this Agreement from time to time. No one other than the
-Agreement Steward has the right to modify this Agreement. The Eclipse
-Foundation is the initial Agreement Steward. The Eclipse Foundation may
-assign the responsibility to serve as the Agreement Steward to a
-suitable separate entity. Each new version of the Agreement will be
-given a distinguishing version number. The Program (including
-Contributions) may always be distributed subject to the version of the
-Agreement under which it was received. In addition, after a new version
-of the Agreement is published, Contributor may elect to distribute the
-Program (including its Contributions) under the new version. Except as
-expressly stated in Sections 2(a) and 2(b) above, Recipient receives no
-rights or licenses to the intellectual property of any Contributor under
-this Agreement, whether expressly, by implication, estoppel or
-otherwise. All rights in the Program not expressly granted under this
-Agreement are reserved.</p>
-
-<p>This Agreement is governed by the laws of the State of New York and
-the intellectual property laws of the United States of America. No party
-to this Agreement will bring a legal action under this Agreement more
-than one year after the cause of action arose. Each party waives its
-rights to a jury trial in any resulting litigation.</p>
-
-</body>
-
-</html>
Deleted: trunk/bot.tests/features/org.jboss.tools.bot.test.feature/feature.xml
===================================================================
--- trunk/bot.tests/features/org.jboss.tools.bot.test.feature/feature.xml 2011-06-04 22:00:35 UTC (rev 31837)
+++ trunk/bot.tests/features/org.jboss.tools.bot.test.feature/feature.xml 2011-06-04 22:13:25 UTC (rev 31838)
@@ -1,56 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<feature id="org.jboss.tools.bot.test.feature" label="Tools Bot Tests" version="3.1.0.qualifier">
-
- <description url="http://www.jboss.org/tools">
- JBossTools unit tests feature
- </description>
-
- <copyright>
- Copyright (c) 2011 JBoss by Red Hat and Exadel, Inc.
-Distributed under license by JBoss by Red Hat. All rights reserved.
-This program is 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 and Exadel, Inc. - initial API and implementation
- </copyright>
-
- <license>
- JBoss by Red Hat 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.
- </license>
-
- <!-- depends on upstream components being built,
- including tests, common, bpel, cdi, deltacloud, etc. -->
- <requires>
- <import plugin="org.jboss.tools.tests" />
- <import plugin="org.jboss.tools.ui.bot.ext" />
- <import plugin="org.jboss.tools.ui.bot.ext.test" />
- </requires>
-
- <!-- bpmn is not yet being built so this can't be available upstream -->
- <plugin id="org.jboss.tools.bpmn.ui.bot.test" download-size="0" install-size="0" version="0.0.0" />
-
- <plugin id="org.jboss.tools.bpel.ui.bot.test" download-size="0" install-size="0" version="0.0.0" />
- <plugin id="org.jboss.tools.cdi.bot.test" download-size="0" install-size="0" version="0.0.0" />
- <plugin id="org.jboss.tools.deltacloud.ui.bot.test" download-size="0" install-size="0" version="0.0.0" />
- <plugin id="org.jboss.tools.drools.ui.bot.test" download-size="0" install-size="0" version="0.0.0" />
- <plugin id="org.jboss.tools.esb.ui.bot.test" download-size="0" install-size="0" version="0.0.0" />
- <plugin id="org.jboss.tools.hibernate.ui.bot.test" download-size="0" install-size="0" version="0.0.0" />
- <plugin id="org.jboss.tools.jbpm.ui.bot.test" download-size="0" install-size="0" version="0.0.0" />
- <plugin id="org.jboss.tools.jsf.ui.bot.test" download-size="0" install-size="0" version="0.0.0" />
- <plugin id="org.jboss.tools.jst.ui.bot.test" download-size="0" install-size="0" version="0.0.0" />
- <plugin id="org.jboss.tools.maven.ui.bot.test" download-size="0" install-size="0" version="0.0.0" />
- <plugin id="org.jboss.tools.modeshape.rest.ui.bot.test" download-size="0" install-size="0" version="0.0.0" />
- <plugin id="org.jboss.tools.seam.ui.bot.test" download-size="0" install-size="0" version="0.0.0" />
- <plugin id="org.jboss.tools.smooks.ui.bot.test" download-size="0" install-size="0" version="0.0.0" />
- <plugin id="org.jboss.tools.struts.ui.bot.test" download-size="0" install-size="0" version="0.0.0" />
- <plugin id="org.jboss.tools.vpe.ui.bot.test" download-size="0" install-size="0" version="0.0.0" />
- <plugin id="org.jboss.tools.ws.ui.bot.test" download-size="0" install-size="0" version="0.0.0" />
-
-</feature>
Deleted: trunk/bot.tests/features/org.jboss.tools.bot.test.feature/pom.xml
===================================================================
--- trunk/bot.tests/features/org.jboss.tools.bot.test.feature/pom.xml 2011-06-04 22:00:35 UTC (rev 31837)
+++ trunk/bot.tests/features/org.jboss.tools.bot.test.feature/pom.xml 2011-06-04 22:13:25 UTC (rev 31838)
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>org.jboss.tools.bottests</groupId>
- <artifactId>features</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>org.jboss.tools.bot.test.feature</artifactId>
- <version>3.1.0-SNAPSHOT</version>
- <packaging>eclipse-feature</packaging>
-</project>
\ No newline at end of file
Deleted: trunk/bot.tests/features/pom.xml
===================================================================
--- trunk/bot.tests/features/pom.xml 2011-06-04 22:00:35 UTC (rev 31837)
+++ trunk/bot.tests/features/pom.xml 2011-06-04 22:13:25 UTC (rev 31838)
@@ -1,17 +0,0 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>bottests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
- <groupId>org.jboss.tools.bottests</groupId>
- <artifactId>features</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <name>bottests.features</name>
- <packaging>pom</packaging>
- <modules>
- <module>org.jboss.tools.bot.test.feature</module>
- </modules>
-</project>
Deleted: trunk/bot.tests/plugins/.gitignore
===================================================================
--- trunk/bot.tests/plugins/.gitignore 2011-06-04 22:00:35 UTC (rev 31837)
+++ trunk/bot.tests/plugins/.gitignore 2011-06-04 22:13:25 UTC (rev 31838)
@@ -1,2 +0,0 @@
-.project
-.settings/
Deleted: trunk/bot.tests/plugins/pom.xml
===================================================================
--- trunk/bot.tests/plugins/pom.xml 2011-06-04 22:00:35 UTC (rev 31837)
+++ trunk/bot.tests/plugins/pom.xml 2011-06-04 22:13:25 UTC (rev 31838)
@@ -1,17 +0,0 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>bottests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>org.jboss.tools.tests.plugins</artifactId>
- <name>org.jboss.tools.tests.plugins</name>
- <version>0.0.1-SNAPSHOT</version>
- <packaging>pom</packaging>
- <modules>
- <!-- no plugins yet -->
- </modules>
-</project>
Deleted: trunk/bot.tests/pom.xml
===================================================================
--- trunk/bot.tests/pom.xml 2011-06-04 22:00:35 UTC (rev 31837)
+++ trunk/bot.tests/pom.xml 2011-06-04 22:13:25 UTC (rev 31838)
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>org.jboss.tools.parent.pom</artifactId>
- <version>0.0.2-SNAPSHOT</version>
- <relativePath>../build/parent/pom.xml</relativePath>
- </parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>bottests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <name>bot.tests.all</name>
- <packaging>pom</packaging>
- <modules>
- <module>plugins</module>
- <module>features</module>
- <module>site</module>
- </modules>
-</project>
Deleted: trunk/bot.tests/site/.gitignore
===================================================================
--- trunk/bot.tests/site/.gitignore 2011-06-04 22:00:35 UTC (rev 31837)
+++ trunk/bot.tests/site/.gitignore 2011-06-04 22:13:25 UTC (rev 31838)
@@ -1,4 +0,0 @@
-.settings/
-.project
-target/
-.classpath
Deleted: trunk/bot.tests/site/pom.xml
===================================================================
--- trunk/bot.tests/site/pom.xml 2011-06-04 22:00:35 UTC (rev 31837)
+++ trunk/bot.tests/site/pom.xml 2011-06-04 22:13:25 UTC (rev 31838)
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>bottests</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>bottests.site</artifactId>
- <name>bottests.site</name>
- <version>0.0.1-SNAPSHOT</version>
- <packaging>eclipse-update-site</packaging>
-</project>
Deleted: trunk/bot.tests/site/site.xml
===================================================================
--- trunk/bot.tests/site/site.xml 2011-06-04 22:00:35 UTC (rev 31837)
+++ trunk/bot.tests/site/site.xml 2011-06-04 22:13:25 UTC (rev 31838)
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<site>
- <description>To install these features, point Eclipse at this site.</description>
- <!-- JBoss Tools bot.tests Nightly Build Update Site -->
- <category-def label="JBoss Tools bot.tests Nightly Build Update Site" name="JBoss Tools tests Nightly Build Update Site">
- <description>JBoss Tools bot.tests Nightly Build Update Site: contains all features in this build.</description>
- </category-def>
- <feature url="features/org.jboss.tools.bot.test.feature_0.0.0.jar" id="org.jboss.tools.bot.test.feature" version="0.0.0">
- <category name="JBoss Tools bot.tests Nightly Build Update Site"/>
- </feature>
-
-</site>
Copied: trunk/build/aggregate/bottests-site/.gitignore (from rev 31837, trunk/bot.tests/.gitignore)
===================================================================
--- trunk/build/aggregate/bottests-site/.gitignore (rev 0)
+++ trunk/build/aggregate/bottests-site/.gitignore 2011-06-04 22:13:25 UTC (rev 31838)
@@ -0,0 +1,2 @@
+.project
+.settings/
Copied: trunk/build/aggregate/bottests-site/features/.gitignore (from rev 31837, trunk/bot.tests/features/.gitignore)
===================================================================
--- trunk/build/aggregate/bottests-site/features/.gitignore (rev 0)
+++ trunk/build/aggregate/bottests-site/features/.gitignore 2011-06-04 22:13:25 UTC (rev 31838)
@@ -0,0 +1,2 @@
+.settings/
+.project
Copied: trunk/build/aggregate/bottests-site/features/org.jboss.tools.bot.test.feature/.gitignore (from rev 31837, trunk/bot.tests/features/org.jboss.tools.bot.test.feature/.gitignore)
===================================================================
--- trunk/build/aggregate/bottests-site/features/org.jboss.tools.bot.test.feature/.gitignore (rev 0)
+++ trunk/build/aggregate/bottests-site/features/org.jboss.tools.bot.test.feature/.gitignore 2011-06-04 22:13:25 UTC (rev 31838)
@@ -0,0 +1 @@
+target/
Copied: trunk/build/aggregate/bottests-site/features/org.jboss.tools.bot.test.feature/build.properties (from rev 31837, trunk/bot.tests/features/org.jboss.tools.bot.test.feature/build.properties)
===================================================================
--- trunk/build/aggregate/bottests-site/features/org.jboss.tools.bot.test.feature/build.properties (rev 0)
+++ trunk/build/aggregate/bottests-site/features/org.jboss.tools.bot.test.feature/build.properties 2011-06-04 22:13:25 UTC (rev 31838)
@@ -0,0 +1,3 @@
+bin.includes = feature.xml
+src.includes = feature.xml,\
+ build.properties
Copied: trunk/build/aggregate/bottests-site/features/org.jboss.tools.bot.test.feature/epl-v10.html (from rev 31837, trunk/bot.tests/features/org.jboss.tools.bot.test.feature/epl-v10.html)
===================================================================
--- trunk/build/aggregate/bottests-site/features/org.jboss.tools.bot.test.feature/epl-v10.html (rev 0)
+++ trunk/build/aggregate/bottests-site/features/org.jboss.tools.bot.test.feature/epl-v10.html 2011-06-04 22:13:25 UTC (rev 31838)
@@ -0,0 +1,261 @@
+<?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>Eclipse Public License - Version 1.0</title>
+<style type="text/css">
+ body {
+ size: 8.5in 11.0in;
+ margin: 0.25in 0.5in 0.25in 0.5in;
+ tab-interval: 0.5in;
+ }
+ p {
+ margin-left: auto;
+ margin-top: 0.5em;
+ margin-bottom: 0.5em;
+ }
+ p.list {
+ margin-left: 0.5in;
+ margin-top: 0.05em;
+ margin-bottom: 0.05em;
+ }
+ </style>
+
+</head>
+
+<body lang="EN-US">
+
+<p align=center><b>Eclipse Public License - v 1.0</b></p>
+
+<p>THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
+PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR
+DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS
+AGREEMENT.</p>
+
+<p><b>1. DEFINITIONS</b></p>
+
+<p>"Contribution" means:</p>
+
+<p class="list">a) in the case of the initial Contributor, the initial
+code and documentation distributed under this Agreement, and</p>
+<p class="list">b) in the case of each subsequent Contributor:</p>
+<p class="list">i) changes to the Program, and</p>
+<p class="list">ii) additions to the Program;</p>
+<p class="list">where such changes and/or additions to the Program
+originate from and are distributed by that particular Contributor. A
+Contribution 'originates' from a Contributor if it was added to the
+Program by such Contributor itself or anyone acting on such
+Contributor's behalf. Contributions do not include additions to the
+Program which: (i) are separate modules of software distributed in
+conjunction with the Program under their own license agreement, and (ii)
+are not derivative works of the Program.</p>
+
+<p>"Contributor" means any person or entity that distributes
+the Program.</p>
+
+<p>"Licensed Patents" mean patent claims licensable by a
+Contributor which are necessarily infringed by the use or sale of its
+Contribution alone or when combined with the Program.</p>
+
+<p>"Program" means the Contributions distributed in accordance
+with this Agreement.</p>
+
+<p>"Recipient" means anyone who receives the Program under
+this Agreement, including all Contributors.</p>
+
+<p><b>2. GRANT OF RIGHTS</b></p>
+
+<p class="list">a) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free copyright license to reproduce, prepare derivative works
+of, publicly display, publicly perform, distribute and sublicense the
+Contribution of such Contributor, if any, and such derivative works, in
+source code and object code form.</p>
+
+<p class="list">b) Subject to the terms of this Agreement, each
+Contributor hereby grants Recipient a non-exclusive, worldwide,
+royalty-free patent license under Licensed Patents to make, use, sell,
+offer to sell, import and otherwise transfer the Contribution of such
+Contributor, if any, in source code and object code form. This patent
+license shall apply to the combination of the Contribution and the
+Program if, at the time the Contribution is added by the Contributor,
+such addition of the Contribution causes such combination to be covered
+by the Licensed Patents. The patent license shall not apply to any other
+combinations which include the Contribution. No hardware per se is
+licensed hereunder.</p>
+
+<p class="list">c) Recipient understands that although each Contributor
+grants the licenses to its Contributions set forth herein, no assurances
+are provided by any Contributor that the Program does not infringe the
+patent or other intellectual property rights of any other entity. Each
+Contributor disclaims any liability to Recipient for claims brought by
+any other entity based on infringement of intellectual property rights
+or otherwise. As a condition to exercising the rights and licenses
+granted hereunder, each Recipient hereby assumes sole responsibility to
+secure any other intellectual property rights needed, if any. For
+example, if a third party patent license is required to allow Recipient
+to distribute the Program, it is Recipient's responsibility to acquire
+that license before distributing the Program.</p>
+
+<p class="list">d) Each Contributor represents that to its knowledge it
+has sufficient copyright rights in its Contribution, if any, to grant
+the copyright license set forth in this Agreement.</p>
+
+<p><b>3. REQUIREMENTS</b></p>
+
+<p>A Contributor may choose to distribute the Program in object code
+form under its own license agreement, provided that:</p>
+
+<p class="list">a) it complies with the terms and conditions of this
+Agreement; and</p>
+
+<p class="list">b) its license agreement:</p>
+
+<p class="list">i) effectively disclaims on behalf of all Contributors
+all warranties and conditions, express and implied, including warranties
+or conditions of title and non-infringement, and implied warranties or
+conditions of merchantability and fitness for a particular purpose;</p>
+
+<p class="list">ii) effectively excludes on behalf of all Contributors
+all liability for damages, including direct, indirect, special,
+incidental and consequential damages, such as lost profits;</p>
+
+<p class="list">iii) states that any provisions which differ from this
+Agreement are offered by that Contributor alone and not by any other
+party; and</p>
+
+<p class="list">iv) states that source code for the Program is available
+from such Contributor, and informs licensees how to obtain it in a
+reasonable manner on or through a medium customarily used for software
+exchange.</p>
+
+<p>When the Program is made available in source code form:</p>
+
+<p class="list">a) it must be made available under this Agreement; and</p>
+
+<p class="list">b) a copy of this Agreement must be included with each
+copy of the Program.</p>
+
+<p>Contributors may not remove or alter any copyright notices contained
+within the Program.</p>
+
+<p>Each Contributor must identify itself as the originator of its
+Contribution, if any, in a manner that reasonably allows subsequent
+Recipients to identify the originator of the Contribution.</p>
+
+<p><b>4. COMMERCIAL DISTRIBUTION</b></p>
+
+<p>Commercial distributors of software may accept certain
+responsibilities with respect to end users, business partners and the
+like. While this license is intended to facilitate the commercial use of
+the Program, the Contributor who includes the Program in a commercial
+product offering should do so in a manner which does not create
+potential liability for other Contributors. Therefore, if a Contributor
+includes the Program in a commercial product offering, such Contributor
+("Commercial Contributor") hereby agrees to defend and
+indemnify every other Contributor ("Indemnified Contributor")
+against any losses, damages and costs (collectively "Losses")
+arising from claims, lawsuits and other legal actions brought by a third
+party against the Indemnified Contributor to the extent caused by the
+acts or omissions of such Commercial Contributor in connection with its
+distribution of the Program in a commercial product offering. The
+obligations in this section do not apply to any claims or Losses
+relating to any actual or alleged intellectual property infringement. In
+order to qualify, an Indemnified Contributor must: a) promptly notify
+the Commercial Contributor in writing of such claim, and b) allow the
+Commercial Contributor to control, and cooperate with the Commercial
+Contributor in, the defense and any related settlement negotiations. The
+Indemnified Contributor may participate in any such claim at its own
+expense.</p>
+
+<p>For example, a Contributor might include the Program in a commercial
+product offering, Product X. That Contributor is then a Commercial
+Contributor. If that Commercial Contributor then makes performance
+claims, or offers warranties related to Product X, those performance
+claims and warranties are such Commercial Contributor's responsibility
+alone. Under this section, the Commercial Contributor would have to
+defend claims against the other Contributors related to those
+performance claims and warranties, and if a court requires any other
+Contributor to pay any damages as a result, the Commercial Contributor
+must pay those damages.</p>
+
+<p><b>5. NO WARRANTY</b></p>
+
+<p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS
+PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
+OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION,
+ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY
+OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
+responsible for determining the appropriateness of using and
+distributing the Program and assumes all risks associated with its
+exercise of rights under this Agreement , including but not limited to
+the risks and costs of program errors, compliance with applicable laws,
+damage to or loss of data, programs or equipment, and unavailability or
+interruption of operations.</p>
+
+<p><b>6. DISCLAIMER OF LIABILITY</b></p>
+
+<p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT
+NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING
+WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF
+LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR
+DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
+HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.</p>
+
+<p><b>7. GENERAL</b></p>
+
+<p>If any provision of this Agreement is invalid or unenforceable under
+applicable law, it shall not affect the validity or enforceability of
+the remainder of the terms of this Agreement, and without further action
+by the parties hereto, such provision shall be reformed to the minimum
+extent necessary to make such provision valid and enforceable.</p>
+
+<p>If Recipient institutes patent litigation against any entity
+(including a cross-claim or counterclaim in a lawsuit) alleging that the
+Program itself (excluding combinations of the Program with other
+software or hardware) infringes such Recipient's patent(s), then such
+Recipient's rights granted under Section 2(b) shall terminate as of the
+date such litigation is filed.</p>
+
+<p>All Recipient's rights under this Agreement shall terminate if it
+fails to comply with any of the material terms or conditions of this
+Agreement and does not cure such failure in a reasonable period of time
+after becoming aware of such noncompliance. If all Recipient's rights
+under this Agreement terminate, Recipient agrees to cease use and
+distribution of the Program as soon as reasonably practicable. However,
+Recipient's obligations under this Agreement and any licenses granted by
+Recipient relating to the Program shall continue and survive.</p>
+
+<p>Everyone is permitted to copy and distribute copies of this
+Agreement, but in order to avoid inconsistency the Agreement is
+copyrighted and may only be modified in the following manner. The
+Agreement Steward reserves the right to publish new versions (including
+revisions) of this Agreement from time to time. No one other than the
+Agreement Steward has the right to modify this Agreement. The Eclipse
+Foundation is the initial Agreement Steward. The Eclipse Foundation may
+assign the responsibility to serve as the Agreement Steward to a
+suitable separate entity. Each new version of the Agreement will be
+given a distinguishing version number. The Program (including
+Contributions) may always be distributed subject to the version of the
+Agreement under which it was received. In addition, after a new version
+of the Agreement is published, Contributor may elect to distribute the
+Program (including its Contributions) under the new version. Except as
+expressly stated in Sections 2(a) and 2(b) above, Recipient receives no
+rights or licenses to the intellectual property of any Contributor under
+this Agreement, whether expressly, by implication, estoppel or
+otherwise. All rights in the Program not expressly granted under this
+Agreement are reserved.</p>
+
+<p>This Agreement is governed by the laws of the State of New York and
+the intellectual property laws of the United States of America. No party
+to this Agreement will bring a legal action under this Agreement more
+than one year after the cause of action arose. Each party waives its
+rights to a jury trial in any resulting litigation.</p>
+
+</body>
+
+</html>
Copied: trunk/build/aggregate/bottests-site/features/org.jboss.tools.bot.test.feature/feature.xml (from rev 31837, trunk/bot.tests/features/org.jboss.tools.bot.test.feature/feature.xml)
===================================================================
--- trunk/build/aggregate/bottests-site/features/org.jboss.tools.bot.test.feature/feature.xml (rev 0)
+++ trunk/build/aggregate/bottests-site/features/org.jboss.tools.bot.test.feature/feature.xml 2011-06-04 22:13:25 UTC (rev 31838)
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature id="org.jboss.tools.bot.test.feature" label="Tools Bot Tests" version="3.1.0.qualifier">
+
+ <description url="http://www.jboss.org/tools">
+ JBossTools unit tests feature
+ </description>
+
+ <copyright>
+ Copyright (c) 2011 JBoss by Red Hat and Exadel, Inc.
+Distributed under license by JBoss by Red Hat. All rights reserved.
+This program is 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 and Exadel, Inc. - initial API and implementation
+ </copyright>
+
+ <license>
+ JBoss by Red Hat 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.
+ </license>
+
+ <!-- depends on upstream components being built,
+ including tests, common, bpel, cdi, deltacloud, etc. -->
+ <requires>
+ <import plugin="org.jboss.tools.tests" />
+ <import plugin="org.jboss.tools.ui.bot.ext" />
+ <import plugin="org.jboss.tools.ui.bot.ext.test" />
+ </requires>
+
+ <!-- bpmn is not yet being built so this can't be available upstream -->
+ <plugin id="org.jboss.tools.bpmn.ui.bot.test" download-size="0" install-size="0" version="0.0.0" />
+
+ <plugin id="org.jboss.tools.bpel.ui.bot.test" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.cdi.bot.test" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.deltacloud.ui.bot.test" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.drools.ui.bot.test" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.esb.ui.bot.test" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.hibernate.ui.bot.test" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.jbpm.ui.bot.test" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.jsf.ui.bot.test" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.jst.ui.bot.test" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.maven.ui.bot.test" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.modeshape.rest.ui.bot.test" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.seam.ui.bot.test" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.smooks.ui.bot.test" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.struts.ui.bot.test" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.vpe.ui.bot.test" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.ws.ui.bot.test" download-size="0" install-size="0" version="0.0.0" />
+
+</feature>
Copied: trunk/build/aggregate/bottests-site/features/org.jboss.tools.bot.test.feature/pom.xml (from rev 31837, trunk/bot.tests/features/org.jboss.tools.bot.test.feature/pom.xml)
===================================================================
--- trunk/build/aggregate/bottests-site/features/org.jboss.tools.bot.test.feature/pom.xml (rev 0)
+++ trunk/build/aggregate/bottests-site/features/org.jboss.tools.bot.test.feature/pom.xml 2011-06-04 22:13:25 UTC (rev 31838)
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.jboss.tools.bottests</groupId>
+ <artifactId>features</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.bot.test.feature</artifactId>
+ <version>3.1.0-SNAPSHOT</version>
+ <packaging>eclipse-feature</packaging>
+</project>
\ No newline at end of file
Copied: trunk/build/aggregate/bottests-site/features/pom.xml (from rev 31837, trunk/bot.tests/features/pom.xml)
===================================================================
--- trunk/build/aggregate/bottests-site/features/pom.xml (rev 0)
+++ trunk/build/aggregate/bottests-site/features/pom.xml 2011-06-04 22:13:25 UTC (rev 31838)
@@ -0,0 +1,17 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>bottests</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools.bottests</groupId>
+ <artifactId>features</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ <name>bottests.features</name>
+ <packaging>pom</packaging>
+ <modules>
+ <module>org.jboss.tools.bot.test.feature</module>
+ </modules>
+</project>
Copied: trunk/build/aggregate/bottests-site/plugins/.gitignore (from rev 31837, trunk/bot.tests/plugins/.gitignore)
===================================================================
--- trunk/build/aggregate/bottests-site/plugins/.gitignore (rev 0)
+++ trunk/build/aggregate/bottests-site/plugins/.gitignore 2011-06-04 22:13:25 UTC (rev 31838)
@@ -0,0 +1,2 @@
+.project
+.settings/
Copied: trunk/build/aggregate/bottests-site/plugins/pom.xml (from rev 31837, trunk/bot.tests/plugins/pom.xml)
===================================================================
--- trunk/build/aggregate/bottests-site/plugins/pom.xml (rev 0)
+++ trunk/build/aggregate/bottests-site/plugins/pom.xml 2011-06-04 22:13:25 UTC (rev 31838)
@@ -0,0 +1,17 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>bottests</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.tests.plugins</artifactId>
+ <name>org.jboss.tools.tests.plugins</name>
+ <version>0.0.1-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <modules>
+ <!-- no plugins yet -->
+ </modules>
+</project>
Copied: trunk/build/aggregate/bottests-site/pom.xml (from rev 31837, trunk/bot.tests/pom.xml)
===================================================================
--- trunk/build/aggregate/bottests-site/pom.xml (rev 0)
+++ trunk/build/aggregate/bottests-site/pom.xml 2011-06-04 22:13:25 UTC (rev 31838)
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.parent.pom</artifactId>
+ <version>0.0.2-SNAPSHOT</version>
+ <relativePath>../build/parent/pom.xml</relativePath>
+ </parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>bottests</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ <name>bot.tests.all</name>
+ <packaging>pom</packaging>
+ <modules>
+ <module>plugins</module>
+ <module>features</module>
+ <module>site</module>
+ </modules>
+</project>
Copied: trunk/build/aggregate/bottests-site/site/.gitignore (from rev 31837, trunk/bot.tests/site/.gitignore)
===================================================================
--- trunk/build/aggregate/bottests-site/site/.gitignore (rev 0)
+++ trunk/build/aggregate/bottests-site/site/.gitignore 2011-06-04 22:13:25 UTC (rev 31838)
@@ -0,0 +1,4 @@
+.settings/
+.project
+target/
+.classpath
Copied: trunk/build/aggregate/bottests-site/site/pom.xml (from rev 31837, trunk/bot.tests/site/pom.xml)
===================================================================
--- trunk/build/aggregate/bottests-site/site/pom.xml (rev 0)
+++ trunk/build/aggregate/bottests-site/site/pom.xml 2011-06-04 22:13:25 UTC (rev 31838)
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>bottests</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>bottests.site</artifactId>
+ <name>bottests.site</name>
+ <version>0.0.1-SNAPSHOT</version>
+ <packaging>eclipse-update-site</packaging>
+</project>
Copied: trunk/build/aggregate/bottests-site/site/site.xml (from rev 31837, trunk/bot.tests/site/site.xml)
===================================================================
--- trunk/build/aggregate/bottests-site/site/site.xml (rev 0)
+++ trunk/build/aggregate/bottests-site/site/site.xml 2011-06-04 22:13:25 UTC (rev 31838)
@@ -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 bot.tests Nightly Build Update Site -->
+ <category-def label="JBoss Tools bot.tests Nightly Build Update Site" name="JBoss Tools tests Nightly Build Update Site">
+ <description>JBoss Tools bot.tests Nightly Build Update Site: contains all features in this build.</description>
+ </category-def>
+ <feature url="features/org.jboss.tools.bot.test.feature_0.0.0.jar" id="org.jboss.tools.bot.test.feature" version="0.0.0">
+ <category name="JBoss Tools bot.tests Nightly Build Update Site"/>
+ </feature>
+
+</site>
14 years, 10 months
JBoss Tools SVN: r31837 - in trunk: site and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2011-06-04 18:00:35 -0400 (Sat, 04 Jun 2011)
New Revision: 31837
Modified:
trunk/build/aggregate/site/site.xml
trunk/site/site.xml
Log:
JBIDE-9026 Separate specific runtime detection plugins from base core
Modified: trunk/build/aggregate/site/site.xml
===================================================================
--- trunk/build/aggregate/site/site.xml 2011-06-04 00:37:45 UTC (rev 31836)
+++ trunk/build/aggregate/site/site.xml 2011-06-04 22:00:35 UTC (rev 31837)
@@ -131,7 +131,23 @@
<feature url="features/org.jboss.tools.runtime.core.feature_0.0.0.jar" id="org.jboss.tools.runtime.core.feature" version="0.0.0">
<category name="AllTools" />
</feature>
+
+ <feature url="features/org.jboss.tools.runtime.as.detector.feature_0.0.0.jar" id="org.jboss.tools.runtime.as.detector.feature" version="0.0.0">
+ <category name="AllTools" />
+ </feature>
+
+ <feature url="features/org.jboss.tools.runtime.seam.detector.feature_0.0.0.jar" id="org.jboss.tools.runtime.seam.detector.feature" version="0.0.0">
+ <category name="AllTools" />
+ </feature>
+ <feature url="features/org.jboss.tools.runtime.drools.detector.feature_0.0.0.jar" id="org.jboss.tools.runtime.drools.detector.feature" version="0.0.0">
+ <category name="AllTools" />
+ </feature>
+
+ <feature url="features/org.jboss.tools.runtime.jbpm.detector.feature_0.0.0.jar" id="org.jboss.tools.runtime.jbpm.feature" version="0.0.0">
+ <category name="AllTools" />
+ </feature>
+
<feature url="features/org.jboss.tools.usage.feature_0.0.0.jar" id="org.jboss.tools.usage.feature" version="0.0.0">
<category name="AllTools" />
</feature>
Modified: trunk/site/site.xml
===================================================================
--- trunk/site/site.xml 2011-06-04 00:37:45 UTC (rev 31836)
+++ trunk/site/site.xml 2011-06-04 22:00:35 UTC (rev 31837)
@@ -39,6 +39,11 @@
<feature url="features/org.jboss.tools.bpel.feature_0.0.0.jar" id="org.jboss.tools.bpel.feature" version="0.0.0" />
<feature url="features/org.jboss.tools.modeshape.rest.feature_0.0.0.jar" id="org.jboss.tools.modeshape.rest.feature" version="0.0.0" />
<feature url="features/org.jboss.tools.runtime.feature_0.0.0.jar" id="org.jboss.tools.runtime.feature" version="0.0.0" />
+ <feature url="features/org.jboss.tools.runtime.core.feature_0.0.0.jar" id="org.jboss.tools.runtime.core.feature" version="0.0.0" />
+ <feature url="features/org.jboss.tools.runtime.as.detector.feature_0.0.0.jar" id="org.jboss.tools.runtime.as.detector.feature" version="0.0.0" />
+ <feature url="features/org.jboss.tools.runtime.seam.detector.feature_0.0.0.jar" id="org.jboss.tools.runtime.seam.detector.feature" version="0.0.0" />
+ <feature url="features/org.jboss.tools.runtime.drools.detector.feature_0.0.0.jar" id="org.jboss.tools.runtime.drools.detector.feature" version="0.0.0" />
+ <feature url="features/org.jboss.tools.runtime.jbpm.detector.feature_0.0.0.jar" id="org.jboss.tools.runtime.jbpm.detector.feature" version="0.0.0" />
<feature url="features/org.jboss.tools.deltacloud.feature_0.0.0.jar" id="org.jboss.tools.deltacloud.feature" version="0.0.0" />
<feature url="features/org.jboss.tools.usage.feature_0.0.0.jar" id="org.jboss.tools.usage.feature" version="0.0.0" />
</site>
14 years, 10 months
JBoss Tools SVN: r31836 - in workspace/snjeza/org.jboss.tools.maven.cdi.updatesite: features and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2011-06-03 20:37:45 -0400 (Fri, 03 Jun 2011)
New Revision: 31836
Added:
workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/features/org.jboss.tools.maven.cdi.feature_1.2.0.v20110604-1713-H220-M2a.jar
workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/plugins/org.jboss.tools.maven.cdi_1.2.0.v20110604-1713-H220-M2a.jar
Removed:
workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/features/org.jboss.tools.maven.cdi.feature_1.2.0.201106040221.jar
workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/plugins/org.jboss.tools.maven.cdi_1.2.0.201106040221.jar
Modified:
workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/artifacts.jar
workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/content.jar
workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/site.xml
Log:
Modified: workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/artifacts.jar
===================================================================
(Binary files differ)
Modified: workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/content.jar
===================================================================
(Binary files differ)
Deleted: workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/features/org.jboss.tools.maven.cdi.feature_1.2.0.201106040221.jar
===================================================================
(Binary files differ)
Added: workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/features/org.jboss.tools.maven.cdi.feature_1.2.0.v20110604-1713-H220-M2a.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/features/org.jboss.tools.maven.cdi.feature_1.2.0.v20110604-1713-H220-M2a.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Deleted: workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/plugins/org.jboss.tools.maven.cdi_1.2.0.201106040221.jar
===================================================================
(Binary files differ)
Added: workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/plugins/org.jboss.tools.maven.cdi_1.2.0.v20110604-1713-H220-M2a.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/plugins/org.jboss.tools.maven.cdi_1.2.0.v20110604-1713-H220-M2a.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Modified: workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/site.xml
===================================================================
--- workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/site.xml 2011-06-04 00:22:44 UTC (rev 31835)
+++ workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/site.xml 2011-06-04 00:37:45 UTC (rev 31836)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<site>
- <feature url="features/org.jboss.tools.maven.cdi.feature_1.2.0.201106040221.jar" id="org.jboss.tools.maven.cdi.feature" version="1.2.0.201106040221">
+ <feature url="features/org.jboss.tools.maven.cdi.feature_0.0.0.jar" id="org.jboss.tools.maven.cdi.feature" version="0.0.0">
<category name="JBoss Tools Maven CDI Configurator"/>
</feature>
<category-def name="JBoss Tools Maven CDI Configurator" label="JBoss Tools Maven CDI Configurator"/>
14 years, 10 months
JBoss Tools SVN: r31835 - in workspace/snjeza/org.jboss.tools.maven.cdi.updatesite: features and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2011-06-03 20:22:44 -0400 (Fri, 03 Jun 2011)
New Revision: 31835
Added:
workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/.project
workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/features/org.jboss.tools.maven.cdi.feature_1.2.0.201106040221.jar
workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/plugins/org.jboss.tools.maven.cdi_1.2.0.201106040221.jar
Removed:
workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/features/org.jboss.tools.maven.cdi.feature_1.2.0.201106040211.jar
workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/plugins/org.jboss.tools.maven.cdi_1.2.0.201106040211.jar
Modified:
workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/artifacts.jar
workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/content.jar
workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/site.xml
Log:
Added: workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/.project
===================================================================
--- workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/.project (rev 0)
+++ workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/.project 2011-06-04 00:22:44 UTC (rev 31835)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.jboss.tools.maven.cdi.updatesite</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.pde.UpdateSiteBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.pde.UpdateSiteNature</nature>
+ </natures>
+</projectDescription>
Modified: workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/artifacts.jar
===================================================================
(Binary files differ)
Modified: workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/content.jar
===================================================================
(Binary files differ)
Deleted: workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/features/org.jboss.tools.maven.cdi.feature_1.2.0.201106040211.jar
===================================================================
(Binary files differ)
Added: workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/features/org.jboss.tools.maven.cdi.feature_1.2.0.201106040221.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/features/org.jboss.tools.maven.cdi.feature_1.2.0.201106040221.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Deleted: workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/plugins/org.jboss.tools.maven.cdi_1.2.0.201106040211.jar
===================================================================
(Binary files differ)
Added: workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/plugins/org.jboss.tools.maven.cdi_1.2.0.201106040221.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/plugins/org.jboss.tools.maven.cdi_1.2.0.201106040221.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Modified: workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/site.xml
===================================================================
--- workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/site.xml 2011-06-04 00:16:51 UTC (rev 31834)
+++ workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/site.xml 2011-06-04 00:22:44 UTC (rev 31835)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<site>
- <feature url="features/org.jboss.tools.maven.cdi.feature_1.2.0.201106040211.jar" id="org.jboss.tools.maven.cdi.feature" version="1.2.0.201106040211">
+ <feature url="features/org.jboss.tools.maven.cdi.feature_1.2.0.201106040221.jar" id="org.jboss.tools.maven.cdi.feature" version="1.2.0.201106040221">
<category name="JBoss Tools Maven CDI Configurator"/>
</feature>
<category-def name="JBoss Tools Maven CDI Configurator" label="JBoss Tools Maven CDI Configurator"/>
14 years, 10 months
JBoss Tools SVN: r31834 - in workspace/snjeza/org.jboss.tools.maven.cdi.updatesite: features and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2011-06-03 20:16:51 -0400 (Fri, 03 Jun 2011)
New Revision: 31834
Added:
workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/artifacts.jar
workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/content.jar
workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/features/
workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/features/org.jboss.tools.maven.cdi.feature_1.2.0.201106040211.jar
workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/plugins/
workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/plugins/org.jboss.tools.maven.cdi_1.2.0.201106040211.jar
workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/site.xml
Log:
Added: workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/artifacts.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/artifacts.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/content.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/content.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/features/org.jboss.tools.maven.cdi.feature_1.2.0.201106040211.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/features/org.jboss.tools.maven.cdi.feature_1.2.0.201106040211.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/plugins/org.jboss.tools.maven.cdi_1.2.0.201106040211.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/plugins/org.jboss.tools.maven.cdi_1.2.0.201106040211.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/site.xml
===================================================================
--- workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/site.xml (rev 0)
+++ workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/site.xml 2011-06-04 00:16:51 UTC (rev 31834)
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<site>
+ <feature url="features/org.jboss.tools.maven.cdi.feature_1.2.0.201106040211.jar" id="org.jboss.tools.maven.cdi.feature" version="1.2.0.201106040211">
+ <category name="JBoss Tools Maven CDI Configurator"/>
+ </feature>
+ <category-def name="JBoss Tools Maven CDI Configurator" label="JBoss Tools Maven CDI Configurator"/>
+</site>
14 years, 10 months
JBoss Tools SVN: r31833 - workspace/snjeza.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2011-06-03 20:14:16 -0400 (Fri, 03 Jun 2011)
New Revision: 31833
Added:
workspace/snjeza/org.jboss.tools.maven.cdi.updatesite/
Log:
Initial import.
14 years, 10 months