JBoss Tools SVN: r37090 - trunk/portlet/tests/org.jboss.tools.portlet.ui.bot.test/src/org/jboss/tools/portlet/ui/bot/matcher/problems.
by jbosstools-commits@lists.jboss.org
Author: ljelinko
Date: 2011-12-08 02:31:56 -0500 (Thu, 08 Dec 2011)
New Revision: 37090
Modified:
trunk/portlet/tests/org.jboss.tools.portlet.ui.bot.test/src/org/jboss/tools/portlet/ui/bot/matcher/problems/NumberOfErrorsMatcher.java
Log:
Enhanced the error message
Modified: trunk/portlet/tests/org.jboss.tools.portlet.ui.bot.test/src/org/jboss/tools/portlet/ui/bot/matcher/problems/NumberOfErrorsMatcher.java
===================================================================
--- trunk/portlet/tests/org.jboss.tools.portlet.ui.bot.test/src/org/jboss/tools/portlet/ui/bot/matcher/problems/NumberOfErrorsMatcher.java 2011-12-08 07:02:31 UTC (rev 37089)
+++ trunk/portlet/tests/org.jboss.tools.portlet.ui.bot.test/src/org/jboss/tools/portlet/ui/bot/matcher/problems/NumberOfErrorsMatcher.java 2011-12-08 07:31:56 UTC (rev 37090)
@@ -15,6 +15,8 @@
*/
public class NumberOfErrorsMatcher extends AbstractSWTMatcher<Integer> {
+ private int expectedNumber;
+
private int numberOfErrors;
@Override
@@ -30,13 +32,16 @@
}
}
- numberOfErrors = errorItem.getNodes().size();
+ this.expectedNumber = expectedNumber;
+ this.numberOfErrors = errorItem.getNodes().size();
return expectedNumber.equals(numberOfErrors);
}
@Override
- public void describeTo(Description description) {
- description.appendText(numberOfErrors + " errors");
+ public void describeTo(final Description description) {
+ description.appendText("Different number of errors.\n");
+ description.appendText("Number of expected errors: " + expectedNumber + "\n");
+ description.appendText("Number of errors: " + numberOfErrors + "\n");
}
}
14 years
JBoss Tools SVN: r37089 - in branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime: META-INF and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: koen.aers(a)jboss.com
Date: 2011-12-08 02:02:31 -0500 (Thu, 08 Dec 2011)
New Revision: 37089
Modified:
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/.classpath
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/META-INF/MANIFEST.MF
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/build.properties
Log:
JBIDE-10403: fix the compilation problems in org.jboss.tools.forge.runtime.ext
Modified: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/.classpath
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/.classpath 2011-12-08 02:30:08 UTC (rev 37088)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/.classpath 2011-12-08 07:02:31 UTC (rev 37089)
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
- <classpathentry exported="true" kind="lib" path="/Users/koen/Workspace/jbt/trunk/forge-tools/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/shell/api/main/forge-shell-api-1.0.0-SNAPSHOT.jar"/>
- <classpathentry exported="true" kind="lib" path="/Users/koen/Workspace/jbt/trunk/forge-tools/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/api/main/cdi-api-1.0-SP4.jar"/>
- <classpathentry exported="true" kind="lib" path="/Users/koen/Workspace/jbt/trunk/forge-tools/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/inject/api/main/javax.inject-1.jar"/>
+ <classpathentry exported="true" kind="lib" path="modules/org/jboss/forge/shell/api/main/forge-shell-api-1.0.0-SNAPSHOT.jar"/>
+ <classpathentry exported="true" kind="lib" path="modules/javax/enterprise/api/main/cdi-api-1.0-SP4.jar"/>
+ <classpathentry exported="true" kind="lib" path="modules/javax/inject/api/main/javax.inject-1.jar"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="output" path="bin"/>
Modified: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/META-INF/MANIFEST.MF 2011-12-08 02:30:08 UTC (rev 37088)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/META-INF/MANIFEST.MF 2011-12-08 07:02:31 UTC (rev 37089)
@@ -4,9 +4,18 @@
Bundle-SymbolicName: org.jboss.tools.forge.runtime
Bundle-Version: 1.0.0.qualifier
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
-Bundle-ClassPath: modules/javax/enterprise/cdi-api/main/javax.inject.jar,
- modules/javax/enterprise/cdi-api/main/cdi-api.jar,
- modules/org/jboss/forge/shell-api/main/forge-shell-api.jar
+Bundle-ClassPath: modules/javax/inject/api/main/javax.inject-1.jar,
+ modules/javax/enterprise/api/main/cdi-api-1.0-SP4.jar,
+ modules/org/jboss/forge/shell/api/main/forge-shell-api-1.0.0-SNAPSHOT.jar
Bundle-Vendor: JBoss by Red Hat
Eclipse-BundleShape: dir
+Export-Package: javax.enterprise.event,
+ javax.inject,
+ org.jboss.forge.project,
+ org.jboss.forge.resources,
+ org.jboss.forge.resources.events,
+ org.jboss.forge.shell,
+ org.jboss.forge.shell.command,
+ org.jboss.forge.shell.events,
+ org.jboss.forge.shell.spi
Modified: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/build.properties
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/build.properties 2011-12-08 02:30:08 UTC (rev 37088)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/build.properties 2011-12-08 07:02:31 UTC (rev 37089)
@@ -1,6 +1,9 @@
bin.includes = META-INF/,\
.,\
modules/,\
- jboss-modules.jar
+ jboss-modules.jar,\
+ modules/javax/inject/api/main/javax.inject-1.jar,\
+ modules/javax/enterprise/api/main/cdi-api-1.0-SP4.jar,\
+ modules/org/jboss/forge/shell/api/main/forge-shell-api-1.0.0-SNAPSHOT.jar
src.includes = *
jars.compile.order = .
14 years
JBoss Tools SVN: r37088 - trunk/jsf/tests/org.jboss.tools.jsf.text.ext.test/src/org/jboss/tools/jsf/text/ext/test.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2011-12-07 21:30:08 -0500 (Wed, 07 Dec 2011)
New Revision: 37088
Modified:
trunk/jsf/tests/org.jboss.tools.jsf.text.ext.test/src/org/jboss/tools/jsf/text/ext/test/JSF2XMLOpenOnTest.java
Log:
JBIDE-10404
https://issues.jboss.org/browse/JBIDE-10404
Test for open-on on faces-config/application/resource-bundle/base-name
Modified: trunk/jsf/tests/org.jboss.tools.jsf.text.ext.test/src/org/jboss/tools/jsf/text/ext/test/JSF2XMLOpenOnTest.java
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.text.ext.test/src/org/jboss/tools/jsf/text/ext/test/JSF2XMLOpenOnTest.java 2011-12-08 02:29:30 UTC (rev 37087)
+++ trunk/jsf/tests/org.jboss.tools.jsf.text.ext.test/src/org/jboss/tools/jsf/text/ext/test/JSF2XMLOpenOnTest.java 2011-12-08 02:30:08 UTC (rev 37088)
@@ -11,17 +11,34 @@
package org.jboss.tools.jsf.text.ext.test;
import java.util.ArrayList;
+import java.util.HashSet;
+import java.util.Set;
import junit.framework.TestCase;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.ResourcesPlugin;
+import org.eclipse.jface.text.BadLocationException;
+import org.eclipse.jface.text.FindReplaceDocumentAdapter;
+import org.eclipse.jface.text.IDocument;
+import org.eclipse.jface.text.IRegion;
+import org.eclipse.jface.text.hyperlink.IHyperlink;
+import org.eclipse.jface.text.source.ISourceViewer;
+import org.eclipse.ui.IEditorPart;
+import org.eclipse.ui.PartInitException;
import org.eclipse.ui.PlatformUI;
+import org.jboss.tools.common.model.ui.editor.EditorPartWrapper;
+import org.jboss.tools.common.text.ext.hyperlink.HyperlinkDetector;
+import org.jboss.tools.jst.jsp.jspeditor.JSPMultiPageEditor;
import org.jboss.tools.jst.text.ext.hyperlink.ELHyperlink;
import org.jboss.tools.jst.text.ext.hyperlink.ELHyperlinkDetector;
+import org.jboss.tools.jst.web.ui.editors.TLDCompoundEditor;
+import org.jboss.tools.jsf.text.ext.hyperlink.BundleBasenameHyperlink;
import org.jboss.tools.jsf.text.ext.test.JSFHyperlinkTestUtil.TestHyperlink;
import org.jboss.tools.jsf.text.ext.test.JSFHyperlinkTestUtil.TestRegion;
+import org.jboss.tools.jsf.ui.editor.FacesConfigEditor;
import org.jboss.tools.test.util.JobUtils;
+import org.jboss.tools.test.util.WorkbenchUtils;
public class JSF2XMLOpenOnTest extends TestCase {
private static final String PROJECT_NAME = "JSF2CompositeOpenOn";
@@ -53,5 +70,75 @@
}
+ /**
+ * Test opening resource from
+ * <resource-bundle>
+ * <base-name>resources</base-name>
+ * <var>registeredMsgs</var>
+ * </resource-bundle>
+ * @throws Exception
+ */
+ public void testResourceBundleHyperlink() throws Exception{
+ String editorName = "resources.properties";
+ String linkName = "Open bundle for base name 'resources'";
+ HashSet<IEditorPart> openedEditors = new HashSet<IEditorPart>();
+
+ IEditorPart editor = WorkbenchUtils.openEditor(PROJECT_NAME + PAGE_NAME);
+ if (editor != null) openedEditors.add(editor);
+ if(editor instanceof EditorPartWrapper) {
+ editor = ((EditorPartWrapper)editor).getEditor();
+ }
+ assertTrue(editor instanceof FacesConfigEditor);
+ try {
+ FacesConfigEditor tldEditor = (FacesConfigEditor)editor;
+ tldEditor.selectPageByName("Source");
+ ISourceViewer viewer = tldEditor.getSourceEditor().getTextViewer();
+ IHyperlink[] links = findLinks(viewer, "base-name", "resources");
+ IEditorPart resultEditor = findEditor(links, linkName, editorName, openedEditors);
+ assertNotNull("OpenOn have not opened "+editorName+" editor", resultEditor);
+ } finally {
+ closeEditors(openedEditors);
+ }
+ }
+
+ private IEditorPart findEditor(IHyperlink[] links, String linkName, String editorName, Set<IEditorPart> openedEditors) {
+ for(IHyperlink link : links){
+ link.getHyperlinkRegion();
+ if(!linkName.equals(link.getHyperlinkText())) {
+ continue;
+ }
+ assertNotNull(link.toString());
+ link.open();
+ IEditorPart resultEditor = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().getActiveEditor();
+ if (resultEditor != null) openedEditors.add(resultEditor);
+ if(editorName.equals(resultEditor.getTitle())){
+ return resultEditor;
+ }
+ }
+ return null;
+ }
+
+ private IHyperlink[] findLinks(ISourceViewer viewer, String tagName, String valueToFind) throws BadLocationException {
+ IDocument document = viewer.getDocument();
+ IRegion reg = new FindReplaceDocumentAdapter(document).find(0,
+ tagName, true, true, false, false);
+ assertNotNull("Tag:"+tagName+" not found",reg);
+ reg = new FindReplaceDocumentAdapter(document).find(reg.getOffset(),
+ valueToFind, true, true, false, false);
+ assertNotNull("Value to find:"+valueToFind+" not found",reg);
+ IHyperlink[] links = HyperlinkDetector.getInstance().detectHyperlinks(viewer, reg, true); // new Region(reg.getOffset() + reg.getLength(), 0)
+ assertTrue("Hyperlinks for value '"+valueToFind+"' are not found",(links != null && links.length > 0));
+ return links;
+ }
+
+ protected void closeEditors (HashSet<IEditorPart> editors) {
+ if (editors == null || editors.isEmpty())
+ return;
+ for (IEditorPart editor : editors) {
+ PlatformUI.getWorkbench().getActiveWorkbenchWindow()
+ .getActivePage().closeEditor(editor, false);
+ }
+ }
+
}
14 years
JBoss Tools SVN: r37087 - in trunk/jsf/plugins/org.jboss.tools.jsf.text.ext: src/org/jboss/tools/jsf/text/ext/hyperlink and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2011-12-07 21:29:30 -0500 (Wed, 07 Dec 2011)
New Revision: 37087
Modified:
trunk/jsf/plugins/org.jboss.tools.jsf.text.ext/plugin.xml
trunk/jsf/plugins/org.jboss.tools.jsf.text.ext/src/org/jboss/tools/jsf/text/ext/hyperlink/BundleBasenameHyperlink.java
Log:
JBIDE-10404
https://issues.jboss.org/browse/JBIDE-10404
Improved BundleBaseNameHyperlink to open resources from jar. Registered it for faces-config/application/resource-bundle/base-name
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.text.ext/plugin.xml
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.text.ext/plugin.xml 2011-12-08 01:45:48 UTC (rev 37086)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.text.ext/plugin.xml 2011-12-08 02:29:30 UTC (rev 37087)
@@ -383,21 +383,25 @@
<contentType id="org.eclipse.jst.jsf.facesconfig.facesConfigFile">
<partitionType id="org.jboss.tools.common.text.ext.xml.XML_TEXT">
<axis path="/faces-config/application/message-bundle/" />
+ <axis path="/faces-config/application/resource-bundle/base-name/" />
</partitionType>
</contentType>
<contentType id="org.eclipse.wst.xml.core.xmlsource">
<partitionType id="org.jboss.tools.common.text.ext.xml.XML_TEXT">
<axis path="/faces-config/application/message-bundle/" />
+ <axis path="/faces-config/application/resource-bundle/base-name/" />
</partitionType>
</contentType>
<contentType id="org.eclipse.core.runtime.xml">
<partitionType id="org.jboss.tools.common.text.ext.xml.XML_TEXT">
<axis path="/faces-config/application/message-bundle/" />
+ <axis path="/faces-config/application/resource-bundle/base-name/" />
</partitionType>
</contentType>
<contentType id="org.jboss.tools.common.model.ui.xml">
<partitionType id="org.jboss.tools.common.text.ext.xml.XML_TEXT">
<axis path="/faces-config/application/message-bundle/" />
+ <axis path="/faces-config/application/resource-bundle/base-name/" />
</partitionType>
</contentType>
</hyperlinkPartitioner>
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.text.ext/src/org/jboss/tools/jsf/text/ext/hyperlink/BundleBasenameHyperlink.java
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.text.ext/src/org/jboss/tools/jsf/text/ext/hyperlink/BundleBasenameHyperlink.java 2011-12-08 01:45:48 UTC (rev 37086)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.text.ext/src/org/jboss/tools/jsf/text/ext/hyperlink/BundleBasenameHyperlink.java 2011-12-08 02:29:30 UTC (rev 37087)
@@ -13,6 +13,7 @@
import java.text.MessageFormat;
import java.util.ArrayList;
import java.util.HashSet;
+import java.util.Properties;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IProject;
@@ -33,6 +34,7 @@
import org.jboss.tools.common.model.util.FindObjectHelper;
import org.jboss.tools.common.model.util.XModelObjectLoaderUtil;
import org.jboss.tools.common.text.ext.hyperlink.ClassHyperlink;
+import org.jboss.tools.common.text.ext.hyperlink.XModelBasedHyperlink;
import org.jboss.tools.common.text.ext.hyperlink.xpl.Messages;
import org.jboss.tools.common.text.ext.util.StructuredModelWrapper;
import org.jboss.tools.common.text.ext.util.Utils;
@@ -41,6 +43,7 @@
import org.jboss.tools.jsf.model.pv.JSFProjectsTree;
import org.jboss.tools.jsf.text.ext.JSFExtensionsPlugin;
import org.jboss.tools.jst.web.model.pv.WebProjectNode;
+import org.jboss.tools.jst.web.project.list.WebPromptingProvider;
import org.w3c.dom.Attr;
import org.w3c.dom.Document;
import org.w3c.dom.Node;
@@ -49,29 +52,27 @@
/**
* @author Jeremy
*/
-public class BundleBasenameHyperlink extends ClassHyperlink {
- private static final String FILESYSTEMS = "/FileSystems/"; //$NON-NLS-1$
-
- protected void doHyperlink(IRegion region) {
- try {
- String fileName = getBundleBasename(region);
- XModelObject mo = getXModelObjectToOpen(fileName);
- if (mo != null) {
- // Open XModelObject in editor
- FindObjectHelper.findModelObject(mo, FindObjectHelper.IN_EDITOR_ONLY);
- } else {
- IFile fileToOpen = getFileToOpen(fileName, "properties"); //$NON-NLS-1$
- if (fileToOpen != null) {
- IWorkbenchPage workbenchPage = JSFExtensionsPlugin.getDefault().getWorkbench().getActiveWorkbenchWindow().getActivePage();
- IDE.openEditor(workbenchPage,fileToOpen,true);
- } else {
- super.doHyperlink(region);
- }
+public class BundleBasenameHyperlink extends XModelBasedHyperlink {
+ protected String getRequestMethod() {
+ return WebPromptingProvider.JSF_OPEN_BUNDLE;
+ }
+
+ protected Properties getRequestProperties(IRegion region) {
+ Properties p = new Properties();
+
+ String value = getBundleBasename(region);
+ value = (value == null? "" : value); //$NON-NLS-1$
+ p.setProperty(WebPromptingProvider.BUNDLE, value);
+
+ String[] locales = getOrderedLocales();
+ if(locales != null && locales.length > 0) {
+ value = locales[0];
+ if (value != null) {
+ p.setProperty(WebPromptingProvider.LOCALE, value);
}
- } catch (CoreException x) {
- // could not open editor
- openFileFailed();
}
+
+ return p;
}
private String getBundleBasename(IRegion region) {
@@ -240,153 +241,6 @@
return supportedLocales.toArray(new String[0]);
}
- private XModelObject getXModelObjectToOpen(String fileName) {
- // Search thru the XModelObject for Faces Config
- String baseLocation = getBaseLocation();
- if (baseLocation == null)
- return null;
-
- int index = baseLocation.indexOf(FILESYSTEMS);
- if (index == -1)
- return null;
-
- String projectName = baseLocation.substring(1, index);
- String path = baseLocation.substring(index + 1);
-
- IProject project = null;
- try {
- project = ResourcesPlugin.getWorkspace().getRoot().getProject(projectName);
- } catch (Throwable x) {
- return null;
- }
- IModelNature modelNature = EclipseResourceUtil.getModelNature(project);
- if (modelNature == null || modelNature.getModel() == null)
- return null;
-
- XModelObject xmo = modelNature.getModel().getByPath(path);
-
- if (xmo instanceof FileFacesConfigImpl) {
- XModelObject fcObject = xmo;
-
- String[] orderedLocales = getOrderedLocales(fcObject);
- XModelObject[] bundles = getBundles(fcObject);
- for (int l = 0; orderedLocales != null && l < orderedLocales.length; l++) {
- String name = fileName + (orderedLocales[l].length() == 0 ? "" : //$NON-NLS-1$
- "_" + orderedLocales[l]); //$NON-NLS-1$
-
- for (int i = 0; bundles != null && i < bundles.length; i++) {
- String bundleName = XModelObjectLoaderUtil.getResourcePath(bundles[i]);
-
- if (bundleName.equals(name)) {
- return bundles[i];
- }
- }
- }
- }
-
- return null;
- }
-
- private IFile getFileToOpen(String fileName, String fileExt) {
- if (fileName == null)
- return null;
-
- String[] orderedLocales = getOrderedLocales();
- String[] bundles = getBundles();
-
- for (int l = 0; orderedLocales != null && l < orderedLocales.length; l++) {
- String name = fileName + (orderedLocales[l].length() == 0 ? "" : //$NON-NLS-1$
- "_" + orderedLocales[l]); //$NON-NLS-1$
-
- for (int i = 0; bundles != null && i < bundles.length; i++) {
- if (bundles[i].equals(name)) {
- IFile file = findFile(name.replace('.','/')+
- (fileExt != null ? "." + fileExt : "")); //$NON-NLS-1$ //$NON-NLS-2$
- if (file != null)
- return file;
- }
- }
- }
- return null;
- }
-
- private IFile findFile(String name) {
- IFile documentFile = getFile();
- try {
- IProject project = documentFile.getProject();
-
- if(project == null || !project.isOpen()) return null;
- if(!project.hasNature(JavaCore.NATURE_ID)) return null;
- IJavaProject javaProject = JavaCore.create(project);
- IClasspathEntry[] es = javaProject.getResolvedClasspath(true);
- for (int i = 0; i < es.length; i++) {
- if(es[i].getEntryKind() != IClasspathEntry.CPE_SOURCE) continue;
- IFile file = (IFile)project.getFile(es[i].getPath().removeFirstSegments(1) + "/" + name); //$NON-NLS-1$
- if(file != null && file.exists()) return file;
- }
- return null;
- } catch (CoreException x) {
- JSFExtensionsPlugin.log("", x); //$NON-NLS-1$
- return null;
- }
- }
-
- IRegion fLastRegion = null;
- /**
- * @see com.ibm.sse.editor.AbstractHyperlink#doGetHyperlinkRegion(int)
- */
- protected IRegion doGetHyperlinkRegion(int offset) {
- fLastRegion = getRegion(offset);
- return fLastRegion;
- }
-
- public IRegion getRegion(int offset) {
- StructuredModelWrapper smw = new StructuredModelWrapper();
- smw.init(getDocument());
- try {
- Document xmlDocument = smw.getDocument();
- if (xmlDocument == null) return null;
-
- Node n = Utils.findNodeForOffset(xmlDocument, offset);
-
- if (n == null || !(n instanceof Attr || n instanceof Text)) return null;
-
- int start = Utils.getValueStart(n);
- int end = Utils.getValueEnd(n);
-
- if (start > offset || end < offset) return null;
-
- String text = getDocument().get(start, end - start);
- StringBuilder sb = new StringBuilder(text);
-
- //find start and end of path property
- int bStart = 0;
- int bEnd = text.length() - 1;
-
- while (bStart < bEnd && (Character.isWhitespace(sb.charAt(bStart))
- || sb.charAt(bStart) == '\"' || sb.charAt(bStart) == '\"')) {
- bStart++;
- }
- while (bEnd > bStart && (Character.isWhitespace(sb.charAt(bEnd))
- || sb.charAt(bEnd) == '\"' || sb.charAt(bEnd) == '\"')) {
- bEnd--;
- }
- bEnd++;
-
- final int propStart = bStart + start;
- final int propLength = bEnd - bStart;
-
- if (propStart > offset || propStart + propLength < offset) return null;
-
- return new Region(propStart,propLength);
- } catch (BadLocationException x) {
- JSFExtensionsPlugin.log("", x); //$NON-NLS-1$
- return null;
- } finally {
- smw.dispose();
- }
- }
-
/*
* (non-Javadoc)
*
14 years
JBoss Tools SVN: r37086 - in trunk/common/plugins/org.jboss.tools.common.ui/src/org/jboss/tools/common/ui: marker and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: dazarov
Date: 2011-12-07 20:45:48 -0500 (Wed, 07 Dec 2011)
New Revision: 37086
Added:
trunk/common/plugins/org.jboss.tools.common.ui/src/org/jboss/tools/common/ui/marker/AddSuppressWarningsMarkerResolution.java
Modified:
trunk/common/plugins/org.jboss.tools.common.ui/src/org/jboss/tools/common/ui/CommonUIMessages.java
trunk/common/plugins/org.jboss.tools.common.ui/src/org/jboss/tools/common/ui/marker/ConfigureProblemSeverityResolutionGenerator.java
trunk/common/plugins/org.jboss.tools.common.ui/src/org/jboss/tools/common/ui/messages.properties
Log:
Add support for a @SuppressWarnings for CDI "No bean is eligible for injection" warning https://issues.jboss.org/browse/JBIDE-10187
Modified: trunk/common/plugins/org.jboss.tools.common.ui/src/org/jboss/tools/common/ui/CommonUIMessages.java
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.ui/src/org/jboss/tools/common/ui/CommonUIMessages.java 2011-12-07 22:31:16 UTC (rev 37085)
+++ trunk/common/plugins/org.jboss.tools.common.ui/src/org/jboss/tools/common/ui/CommonUIMessages.java 2011-12-08 01:45:48 UTC (rev 37086)
@@ -75,6 +75,7 @@
public static String MANDATORYSTRING_VALIDATOR_MUST_PROVIDE_VALUE;
public static String CONFIGURE_PROBLEM_SEVERITY;
+ public static String ADD_SUPPRESS_WARNINGS;
static {
NLS.initializeMessages(BUNDLE_NAME, CommonUIMessages.class);
Added: trunk/common/plugins/org.jboss.tools.common.ui/src/org/jboss/tools/common/ui/marker/AddSuppressWarningsMarkerResolution.java
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.ui/src/org/jboss/tools/common/ui/marker/AddSuppressWarningsMarkerResolution.java (rev 0)
+++ trunk/common/plugins/org.jboss.tools.common.ui/src/org/jboss/tools/common/ui/marker/AddSuppressWarningsMarkerResolution.java 2011-12-08 01:45:48 UTC (rev 37086)
@@ -0,0 +1,58 @@
+/*******************************************************************************
+ * Copyright (c) 2011 Red Hat, Inc.
+ * Distributed under license by Red Hat, Inc. 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:
+ * Red Hat, Inc. - initial API and implementation
+ ******************************************************************************/
+package org.jboss.tools.common.ui.marker;
+
+import org.eclipse.core.resources.IMarker;
+import org.eclipse.jdt.core.IJavaElement;
+import org.eclipse.jdt.internal.ui.JavaPluginImages;
+import org.eclipse.jface.resource.ImageRegistry;
+import org.eclipse.osgi.util.NLS;
+import org.eclipse.swt.graphics.Image;
+import org.eclipse.ui.IMarkerResolution2;
+import org.jboss.tools.common.ui.CommonUIMessages;
+import org.jboss.tools.common.ui.CommonUIPlugin;
+
+/**
+ * @author Daniel Azarov
+ */
+public class AddSuppressWarningsMarkerResolution implements
+ IMarkerResolution2 {
+ private IJavaElement element;
+ private String preferenceKey;
+
+ public AddSuppressWarningsMarkerResolution(IJavaElement element, String preferenceKey){
+ this.element = element;
+ this.preferenceKey = preferenceKey;
+ }
+
+ public String getLabel() {
+ return CommonUIMessages.CONFIGURE_PROBLEM_SEVERITY;
+ }
+
+ public void run(IMarker marker) {
+ }
+
+ public String getDescription() {
+ return NLS.bind(CommonUIMessages.CONFIGURE_PROBLEM_SEVERITY, element.getElementName());
+ }
+
+ public Image getImage() {
+ String key = "DESC_OBJS_ANNOTATION";
+ ImageRegistry registry = CommonUIPlugin.getDefault().getImageRegistry();
+ Image image = registry.get(key);
+ if(image == null) {
+ image = JavaPluginImages.DESC_OBJS_ANNOTATION.createImage();
+ registry.put(key, image);
+ }
+ return image;
+ }
+
+}
Property changes on: trunk/common/plugins/org.jboss.tools.common.ui/src/org/jboss/tools/common/ui/marker/AddSuppressWarningsMarkerResolution.java
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Modified: trunk/common/plugins/org.jboss.tools.common.ui/src/org/jboss/tools/common/ui/marker/ConfigureProblemSeverityResolutionGenerator.java
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.ui/src/org/jboss/tools/common/ui/marker/ConfigureProblemSeverityResolutionGenerator.java 2011-12-07 22:31:16 UTC (rev 37085)
+++ trunk/common/plugins/org.jboss.tools.common.ui/src/org/jboss/tools/common/ui/marker/ConfigureProblemSeverityResolutionGenerator.java 2011-12-08 01:45:48 UTC (rev 37086)
@@ -10,8 +10,11 @@
******************************************************************************/
package org.jboss.tools.common.ui.marker;
+import java.util.ArrayList;
+
import org.eclipse.core.resources.IMarker;
import org.eclipse.core.runtime.CoreException;
+import org.eclipse.jdt.core.IJavaElement;
import org.eclipse.ui.IMarkerResolution;
import org.eclipse.ui.IMarkerResolutionGenerator2;
import org.jboss.tools.common.ui.CommonUIPlugin;
@@ -24,17 +27,26 @@
IMarkerResolutionGenerator2 {
public IMarkerResolution[] getResolutions(IMarker marker) {
+ ArrayList<IMarkerResolution> resolutions = new ArrayList<IMarkerResolution>();
try {
String preferenceKey = getPreferenceKey(marker);
String preferencePageId = getPreferencePageId(marker);
if(preferenceKey != null && preferencePageId != null){
- return new IMarkerResolution[]{new ConfigureProblemSeverityMarkerResolution(preferencePageId, preferenceKey)};
+ resolutions.add(new ConfigureProblemSeverityMarkerResolution(preferencePageId, preferenceKey));
+ IJavaElement element = findJavaElement(marker);
+ if(element != null){
+ resolutions.add(new AddSuppressWarningsMarkerResolution(element, preferenceKey));
+ }
}
} catch (CoreException e) {
CommonUIPlugin.getDefault().logError(e);
}
- return new IMarkerResolution[] {};
+ return resolutions.toArray(new IMarkerResolution[] {});
}
+
+ private IJavaElement findJavaElement(IMarker marker){
+ return null;
+ }
public boolean hasResolutions(IMarker marker) {
try {
Modified: trunk/common/plugins/org.jboss.tools.common.ui/src/org/jboss/tools/common/ui/messages.properties
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.ui/src/org/jboss/tools/common/ui/messages.properties 2011-12-07 22:31:16 UTC (rev 37085)
+++ trunk/common/plugins/org.jboss.tools.common.ui/src/org/jboss/tools/common/ui/messages.properties 2011-12-08 01:45:48 UTC (rev 37086)
@@ -33,4 +33,5 @@
URLSTRINGVALIDATOR_NOT_A_VALID_URL=\"{0}\" is not a valid url.
MANDATORYSTRING_VALIDATOR_MUST_PROVIDE_VALUE=You have to provide a {0}.
-CONFIGURE_PROBLEM_SEVERITY=Configure Problem Severity
\ No newline at end of file
+CONFIGURE_PROBLEM_SEVERITY=Configure Problem Severity
+ADD_SUPPRESS_WARNINGS=Add @SuppressWarnings to ''{0}''
\ No newline at end of file
14 years
JBoss Tools SVN: r37085 - trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/refactoring.
by jbosstools-commits@lists.jboss.org
Author: dazarov
Date: 2011-12-07 17:31:16 -0500 (Wed, 07 Dec 2011)
New Revision: 37085
Added:
trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/refactoring/AbstractCDIProcessor.java
Modified:
trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/refactoring/AddQualifiersToBeanProcessor.java
trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/refactoring/CDIRefactoringProcessor.java
trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/refactoring/CDIRenameProcessor.java
trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/refactoring/RenameNamedBeanProcessor.java
Log:
EL refactoring for @Named beans doesn't work properly https://issues.jboss.org/browse/JBIDE-10210
Added: trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/refactoring/AbstractCDIProcessor.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/refactoring/AbstractCDIProcessor.java (rev 0)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/refactoring/AbstractCDIProcessor.java 2011-12-07 22:31:16 UTC (rev 37085)
@@ -0,0 +1,88 @@
+/*******************************************************************************
+ * Copyright (c) 2011 Red Hat, Inc.
+ * Distributed under license by Red Hat, Inc. 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:
+ * Red Hat, Inc. - initial API and implementation
+ ******************************************************************************/
+package org.jboss.tools.cdi.internal.core.refactoring;
+
+import org.eclipse.core.resources.IFile;
+import org.eclipse.core.resources.IResource;
+import org.eclipse.core.runtime.CoreException;
+import org.eclipse.core.runtime.IProgressMonitor;
+import org.eclipse.core.runtime.OperationCanceledException;
+import org.eclipse.ltk.core.refactoring.Change;
+import org.eclipse.ltk.core.refactoring.CompositeChange;
+import org.eclipse.ltk.core.refactoring.RefactoringStatus;
+import org.eclipse.ltk.core.refactoring.participants.RefactoringParticipant;
+import org.eclipse.ltk.core.refactoring.participants.RenameProcessor;
+import org.eclipse.ltk.core.refactoring.participants.SharableParticipants;
+import org.eclipse.osgi.util.NLS;
+import org.jboss.tools.cdi.core.CDICoreMessages;
+
+public abstract class AbstractCDIProcessor extends RenameProcessor {
+ private static final RefactoringParticipant[] EMPTY_REF_PARTICIPANT = new RefactoringParticipant[0];
+
+ protected RefactoringStatus status;
+
+ protected CompositeChange rootChange;
+
+ private String label;
+
+ public AbstractCDIProcessor(String label){
+ this.label = label;
+ }
+
+ @Override
+ public String getProcessorName() {
+ return label;
+ }
+
+ @Override
+ public boolean isApplicable() throws CoreException {
+ return true;
+ }
+
+ @Override
+ public Change createChange(IProgressMonitor pm) throws CoreException,
+ OperationCanceledException {
+
+ return rootChange;
+ }
+
+ @Override
+ public RefactoringParticipant[] loadParticipants(RefactoringStatus status,
+ SharableParticipants sharedParticipants) throws CoreException {
+ return EMPTY_REF_PARTICIPANT;
+ }
+
+ public String getLabel(){
+ return label;
+ }
+
+ protected boolean isFileCorrect(IFile file){
+ if(file == null){
+ status.addFatalError(CDICoreMessages.CDI_RENAME_PROCESSOR_ERROR_FILE_NOT_FOUND);
+ return false;
+ }else if(!file.isSynchronized(IResource.DEPTH_ZERO)){
+ status.addFatalError(NLS.bind(CDICoreMessages.CDI_RENAME_PROCESSOR_ERROR_OUT_OF_SYNC_PROJECT, file.getProject().getFullPath().toString()));
+ return false;
+ }else if(file.isPhantom()){
+ status.addFatalError(NLS.bind(CDICoreMessages.CDI_RENAME_PROCESSOR_ERROR_PHANTOM_FILE, file.getFullPath().toString()));
+ return false;
+ }else if(file.isReadOnly()){
+ status.addFatalError(NLS.bind(CDICoreMessages.CDI_RENAME_PROCESSOR_ERROR_READ_ONLY_FILE, file.getFullPath().toString()));
+ return false;
+ }
+ return true;
+ }
+
+ @Override
+ public String getIdentifier() {
+ return getClass().getName();
+ }
+}
Property changes on: trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/refactoring/AbstractCDIProcessor.java
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/refactoring/AddQualifiersToBeanProcessor.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/refactoring/AddQualifiersToBeanProcessor.java 2011-12-07 22:13:59 UTC (rev 37084)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/refactoring/AddQualifiersToBeanProcessor.java 2011-12-07 22:31:16 UTC (rev 37085)
@@ -14,14 +14,10 @@
import java.util.List;
import org.eclipse.core.resources.IFile;
-import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.OperationCanceledException;
import org.eclipse.jdt.core.ICompilationUnit;
-import org.eclipse.jdt.core.IJavaElement;
-import org.eclipse.jdt.core.IJavaProject;
-import org.eclipse.jdt.core.JavaCore;
import org.eclipse.ltk.core.refactoring.Change;
import org.eclipse.ltk.core.refactoring.CompositeChange;
import org.eclipse.ltk.core.refactoring.RefactoringStatus;
@@ -81,20 +77,10 @@
return status;
}
- private ICompilationUnit getCompilationUnit(IFile file) throws CoreException{
- IProject project = file.getProject();
- IJavaProject javaProject = (IJavaProject)project.getNature(JavaCore.NATURE_ID);
- IJavaElement element = javaProject.findElement(file.getProjectRelativePath());
- if(element instanceof ICompilationUnit)
- return (ICompilationUnit)element;
-
- return null;
- }
-
@Override
public Change createChange(IProgressMonitor pm) throws CoreException,
OperationCanceledException {
- rootChange = new CompositeChange(label);
+ rootChange = new CompositeChange(getLabel());
IFile file = (IFile)selectedBean.getBeanClass().getResource();
ICompilationUnit original = EclipseUtil.getCompilationUnit(file);
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/refactoring/CDIRefactoringProcessor.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/refactoring/CDIRefactoringProcessor.java 2011-12-07 22:13:59 UTC (rev 37084)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/refactoring/CDIRefactoringProcessor.java 2011-12-07 22:31:16 UTC (rev 37085)
@@ -13,18 +13,12 @@
import java.util.Set;
import org.eclipse.core.resources.IFile;
-import org.eclipse.core.resources.IResource;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.OperationCanceledException;
-import org.eclipse.ltk.core.refactoring.Change;
import org.eclipse.ltk.core.refactoring.CompositeChange;
import org.eclipse.ltk.core.refactoring.RefactoringStatus;
import org.eclipse.ltk.core.refactoring.TextFileChange;
-import org.eclipse.ltk.core.refactoring.participants.RefactoringParticipant;
-import org.eclipse.ltk.core.refactoring.participants.RefactoringProcessor;
-import org.eclipse.ltk.core.refactoring.participants.SharableParticipants;
-import org.eclipse.osgi.util.NLS;
import org.eclipse.text.edits.MultiTextEdit;
import org.jboss.tools.cdi.core.CDICoreMessages;
import org.jboss.tools.cdi.core.CDICoreNature;
@@ -33,28 +27,23 @@
import org.jboss.tools.cdi.core.ICDIProject;
import org.jboss.tools.cdi.core.IClassBean;
-public abstract class CDIRefactoringProcessor extends RefactoringProcessor {
- protected static final RefactoringParticipant[] EMPTY_REF_PARTICIPANT = new RefactoringParticipant[0];
+public abstract class CDIRefactoringProcessor extends AbstractCDIProcessor {
protected IFile file;
- protected RefactoringStatus status;
- protected String label;
- protected CompositeChange rootChange;
protected TextFileChange change;
protected IClassBean bean;
-
public CDIRefactoringProcessor(IFile file, String label){
- this(label);
+ super(label);
this.file = file;
}
public CDIRefactoringProcessor(String label){
- this.label = label;
+ super(label);
}
protected void createRootChange(){
- rootChange = new CompositeChange(label);
+ rootChange = new CompositeChange(getLabel());
change = new CDIFileChange(file.getName(), file);
if(CDIFileChange.getAndReloadEditor(file) != null)
@@ -68,7 +57,6 @@
rootChange.markAsSynthetic();
}
-
private IClassBean findClassBean(){
CDICoreNature cdiNature = CDICorePlugin.getCDI(file.getProject(), true);
if(cdiNature == null)
@@ -88,23 +76,6 @@
return null;
}
-
- protected boolean isFileCorrect(IFile file){
- if(file == null){
- status.addFatalError(CDICoreMessages.CDI_RENAME_PROCESSOR_ERROR_FILE_NOT_FOUND);
- return false;
- }else if(!file.isSynchronized(IResource.DEPTH_ZERO)){
- status.addFatalError(NLS.bind(CDICoreMessages.CDI_RENAME_PROCESSOR_ERROR_OUT_OF_SYNC_PROJECT, file.getProject().getFullPath().toString()));
- return false;
- }else if(file.isPhantom()){
- status.addFatalError(NLS.bind(CDICoreMessages.CDI_RENAME_PROCESSOR_ERROR_PHANTOM_FILE, file.getFullPath().toString()));
- return false;
- }else if(file.isReadOnly()){
- status.addFatalError(NLS.bind(CDICoreMessages.CDI_RENAME_PROCESSOR_ERROR_READ_ONLY_FILE, file.getFullPath().toString()));
- return false;
- }
- return true;
- }
@Override
public Object[] getElements() {
@@ -112,21 +83,6 @@
}
@Override
- public String getIdentifier() {
- return "";
- }
-
- @Override
- public String getProcessorName() {
- return label;
- }
-
- @Override
- public boolean isApplicable() throws CoreException {
- return true;
- }
-
- @Override
public RefactoringStatus checkInitialConditions(IProgressMonitor pm)
throws CoreException, OperationCanceledException {
status = new RefactoringStatus();
@@ -138,16 +94,4 @@
return status;
}
-
- @Override
- public Change createChange(IProgressMonitor pm) throws CoreException,
- OperationCanceledException {
- return rootChange;
- }
-
- @Override
- public RefactoringParticipant[] loadParticipants(RefactoringStatus status,
- SharableParticipants sharedParticipants) throws CoreException {
- return EMPTY_REF_PARTICIPANT;
- }
}
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/refactoring/CDIRenameProcessor.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/refactoring/CDIRenameProcessor.java 2011-12-07 22:13:59 UTC (rev 37084)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/refactoring/CDIRenameProcessor.java 2011-12-07 22:31:16 UTC (rev 37085)
@@ -18,11 +18,9 @@
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.IProgressMonitor;
-import org.eclipse.ltk.core.refactoring.CompositeChange;
+import org.eclipse.core.runtime.OperationCanceledException;
import org.eclipse.ltk.core.refactoring.RefactoringStatus;
import org.eclipse.ltk.core.refactoring.TextFileChange;
-import org.eclipse.ltk.core.refactoring.participants.RefactoringParticipant;
-import org.eclipse.ltk.core.refactoring.participants.RenameProcessor;
import org.eclipse.osgi.util.NLS;
import org.eclipse.text.edits.MultiTextEdit;
import org.eclipse.text.edits.ReplaceEdit;
@@ -32,18 +30,12 @@
import org.jboss.tools.common.el.core.model.ELInvocationExpression;
import org.jboss.tools.common.el.core.model.ELPropertyInvocation;
import org.jboss.tools.common.model.project.ProjectHome;
-import org.jboss.tools.common.text.ITextSourceReference;
import org.jboss.tools.jst.web.kb.refactoring.RefactorSearcher;
/**
* @author Daniel Azarov
*/
-public abstract class CDIRenameProcessor extends RenameProcessor {
- protected static final RefactoringParticipant[] EMPTY_REF_PARTICIPANT = new RefactoringParticipant[0];
-
- protected RefactoringStatus status;
-
- protected CompositeChange rootChange;
+public abstract class CDIRenameProcessor extends AbstractCDIProcessor {
protected TextFileChange lastChange;
protected IFile declarationFile=null;
@@ -52,7 +44,23 @@
private CDISearcher searcher = null;
protected IBean bean;
+
+ public CDIRenameProcessor(String label, IBean bean) {
+ super(label);
+ this.bean = bean;
+ setOldName(bean.getName());
+ }
+ @Override
+ public RefactoringStatus checkInitialConditions(IProgressMonitor pm)
+ throws CoreException, OperationCanceledException {
+ RefactoringStatus result = new RefactoringStatus();
+ if(bean==null) {
+ result.addFatalError(CDICoreMessages.RENAME_NAMED_BEAN_PROCESSOR_ERROR);
+ }
+ return result;
+ }
+
protected CDISearcher getSearcher(){
if(searcher == null){
searcher = new CDISearcher(declarationFile, getOldName());
@@ -102,64 +110,15 @@
return lastChange;
}
- protected void findDeclarations(IBean bean) throws CoreException{
- changeDeclarations(bean);
- }
- private void changeDeclarations(IBean bean) throws CoreException{
- declarationFile = (IFile)bean.getResource();
-
- if(declarationFile == null){
- status.addFatalError(CDICoreMessages.CDI_RENAME_PROCESSOR_BEAN_HAS_NO_FILE);
- return;
- }
-
- //1. Get @Named declared directly, not in stereotype.
- ITextSourceReference nameLocation = bean.getNameLocation(false);
- //2. Get stereotype declaration declaring @Named, if @Named is not declared directly.
- ITextSourceReference stereotypeLocation = nameLocation != null ? null : bean.getNameLocation(true);
-
- if(nameLocation == null && stereotypeLocation == null) {
- status.addFatalError(CDICoreMessages.CDI_RENAME_PROCESSOR_BEAN_HAS_NO_NAME_LOCATION);
- return;
- }
-
- String newText = "@Named(\""+getNewName()+"\")"; //$NON-NLS-1$ //$NON-NLS-2$
- if(nameLocation != null) {
- change(declarationFile, nameLocation.getStartPosition(), nameLocation.getLength(), newText);
- } else if(stereotypeLocation != null) {
- change(declarationFile, stereotypeLocation.getStartPosition() + stereotypeLocation.getLength(), 0, " " + newText);
- }
- }
-
- protected void renameBean(IProgressMonitor pm, IBean bean)throws CoreException{
- pm.beginTask("", 3);
-
- clearChanges();
-
- this.bean = bean;
-
- findDeclarations(bean);
-
- if(status.hasFatalError())
- return;
-
- pm.worked(1);
-
- getSearcher().findELReferences();
-
- pm.done();
- }
-
ArrayList<String> keys = new ArrayList<String>();
- private void clearChanges(){
+ protected void clearChanges(){
keys.clear();
}
- private void change(IFile file, int offset, int length, String text){
- //System.out.println("change file - "+file.getFullPath()+" offset - "+offset+" len - "+length+" text"+text);
+ protected void change(IFile file, int offset, int length, String text){
String key = file.getFullPath().toString()+" "+offset;
if(!keys.contains(key)){
TextFileChange change = getChange(file);
@@ -221,4 +180,14 @@
return null;
}
}
+
+ @Override
+ public boolean isApplicable() throws CoreException {
+ return bean!=null;
+ }
+
+ @Override
+ public Object[] getElements() {
+ return new IBean[]{bean};
+ }
}
\ No newline at end of file
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/refactoring/RenameNamedBeanProcessor.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/refactoring/RenameNamedBeanProcessor.java 2011-12-07 22:13:59 UTC (rev 37084)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/refactoring/RenameNamedBeanProcessor.java 2011-12-07 22:31:16 UTC (rev 37085)
@@ -10,46 +10,29 @@
******************************************************************************/
package org.jboss.tools.cdi.internal.core.refactoring;
+import org.eclipse.core.resources.IFile;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.OperationCanceledException;
-import org.eclipse.ltk.core.refactoring.Change;
import org.eclipse.ltk.core.refactoring.CompositeChange;
import org.eclipse.ltk.core.refactoring.RefactoringStatus;
import org.eclipse.ltk.core.refactoring.participants.CheckConditionsContext;
-import org.eclipse.ltk.core.refactoring.participants.RefactoringParticipant;
-import org.eclipse.ltk.core.refactoring.participants.SharableParticipants;
import org.jboss.tools.cdi.core.CDICoreMessages;
import org.jboss.tools.cdi.core.IBean;
+import org.jboss.tools.common.text.ITextSourceReference;
/**
* @author Daniel Azarov
*/
public class RenameNamedBeanProcessor extends CDIRenameProcessor {
- private IBean bean;
+
/**
- * @param component Renamed component
+ * @param bean Renamed bean
*/
public RenameNamedBeanProcessor(IBean bean) {
- super();
- setBean(bean);
+ super(CDICoreMessages.RENAME_NAMED_BEAN_PROCESSOR_TITLE, bean);
}
- public IBean getBean() {
- return bean;
- }
-
- public void setBean(IBean bean) {
- this.bean = bean;
- setOldName(bean.getName());
- }
-
-
-
- /*
- * (non-Javadoc)
- * @see org.eclipse.ltk.core.refactoring.participants.RefactoringProcessor#checkFinalConditions(org.eclipse.core.runtime.IProgressMonitor, org.eclipse.ltk.core.refactoring.participants.CheckConditionsContext)
- */
@Override
public RefactoringStatus checkFinalConditions(IProgressMonitor pm,
CheckConditionsContext context) throws CoreException,
@@ -58,80 +41,52 @@
if(bean != null){
rootChange = new CompositeChange(CDICoreMessages.RENAME_NAMED_BEAN_PROCESSOR_TITLE);
- renameBean(pm, bean);
+ renameBean(pm);
}
return status;
}
- /*
- * (non-Javadoc)
- * @see org.eclipse.ltk.core.refactoring.participants.RefactoringProcessor#checkInitialConditions(org.eclipse.core.runtime.IProgressMonitor)
- */
- @Override
- public RefactoringStatus checkInitialConditions(IProgressMonitor pm)
- throws CoreException, OperationCanceledException {
- RefactoringStatus result = new RefactoringStatus();
- if(bean==null) {
- result.addFatalError(CDICoreMessages.RENAME_NAMED_BEAN_PROCESSOR_ERROR);
- }
- return result;
+ private void renameBean(IProgressMonitor pm)throws CoreException{
+ pm.beginTask("", 3);
+
+ clearChanges();
+
+ changeDeclarations();
+
+ if(status.hasFatalError())
+ return;
+
+ pm.worked(1);
+
+ getSearcher().findELReferences();
+
+ pm.done();
}
- /*
- * (non-Javadoc)
- * @see org.eclipse.ltk.core.refactoring.participants.RefactoringProcessor#createChange(org.eclipse.core.runtime.IProgressMonitor)
- */
- @Override
- public Change createChange(IProgressMonitor pm) throws CoreException,
- OperationCanceledException {
+ private void changeDeclarations() throws CoreException{
+ declarationFile = (IFile)bean.getResource();
- return rootChange;
+ if(declarationFile == null){
+ status.addFatalError(CDICoreMessages.CDI_RENAME_PROCESSOR_BEAN_HAS_NO_FILE);
+ return;
+ }
+
+ //1. Get @Named declared directly, not in stereotype.
+ ITextSourceReference nameLocation = bean.getNameLocation(false);
+ //2. Get stereotype declaration declaring @Named, if @Named is not declared directly.
+ ITextSourceReference stereotypeLocation = nameLocation != null ? null : bean.getNameLocation(true);
+
+ if(nameLocation == null && stereotypeLocation == null) {
+ status.addFatalError(CDICoreMessages.CDI_RENAME_PROCESSOR_BEAN_HAS_NO_NAME_LOCATION);
+ return;
+ }
+
+ String newText = "@Named(\""+getNewName()+"\")"; //$NON-NLS-1$ //$NON-NLS-2$
+ if(nameLocation != null) {
+ change(declarationFile, nameLocation.getStartPosition(), nameLocation.getLength(), newText);
+ } else if(stereotypeLocation != null) {
+ change(declarationFile, stereotypeLocation.getStartPosition() + stereotypeLocation.getLength(), 0, " " + newText);
+ }
}
-
- /*
- * (non-Javadoc)
- * @see org.eclipse.ltk.core.refactoring.participants.RefactoringProcessor#getElements()
- */
- @Override
- public Object[] getElements() {
- return new IBean[]{bean};
- }
-
- /*
- * (non-Javadoc)
- * @see org.eclipse.ltk.core.refactoring.participants.RefactoringProcessor#getIdentifier()
- */
- @Override
- public String getIdentifier() {
- return getClass().getName();
- }
-
- /*
- * (non-Javadoc)
- * @see org.eclipse.ltk.core.refactoring.participants.RefactoringProcessor#getProcessorName()
- */
- @Override
- public String getProcessorName() {
- return CDICoreMessages.RENAME_NAMED_BEAN_PROCESSOR_TITLE;
- }
-
- /*
- * (non-Javadoc)
- * @see org.eclipse.ltk.core.refactoring.participants.RefactoringProcessor#isApplicable()
- */
- @Override
- public boolean isApplicable() throws CoreException {
- return bean!=null;
- }
-
- /*
- * (non-Javadoc)
- * @see org.eclipse.ltk.core.refactoring.participants.RefactoringProcessor#loadParticipants(org.eclipse.ltk.core.refactoring.RefactoringStatus, org.eclipse.ltk.core.refactoring.participants.SharableParticipants)
- */
- @Override
- public RefactoringParticipant[] loadParticipants(RefactoringStatus status,
- SharableParticipants sharedParticipants) throws CoreException {
- return EMPTY_REF_PARTICIPANT;
- }
}
\ No newline at end of file
14 years
JBoss Tools SVN: r37084 - branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime.ext.
by jbosstools-commits@lists.jboss.org
Author: koen.aers(a)jboss.com
Date: 2011-12-07 17:13:59 -0500 (Wed, 07 Dec 2011)
New Revision: 37084
Modified:
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime.ext/
Log:
JBIDE-10403: ignore *.index files
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime.ext
___________________________________________________________________
Modified: svn:ignore
- target
buildlog.latest.txt
bin
+ target
buildlog.latest.txt
bin
*.index
14 years
JBoss Tools SVN: r37083 - in branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules: com/google/guava/main and 59 other directories.
by jbosstools-commits@lists.jboss.org
Author: koen.aers(a)jboss.com
Date: 2011-12-07 17:07:35 -0500 (Wed, 07 Dec 2011)
New Revision: 37083
Modified:
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/ch/qos/cal10n/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/com/google/guava/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/com/sun/xml/bind/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/activation/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/annotation/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ejb/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/el/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/deploy/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/faces/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/inject/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/interceptor/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jms/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jws/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/mail/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/persistence/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/resource/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/auth/message/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/jacc/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jsp/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jstl/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/transaction/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/validation/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ws/rs/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/bind/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/registry/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/rpc/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/soap/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/ws/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/jline/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/logging/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/httpcomponents/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/javassist/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/event-bus/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/impl/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/model/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/impl/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/xml/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/impl/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/shell/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/spi/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/logmanager/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/seam/render/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/shrinkwrap/descriptors/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/solder/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/core/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/spi/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/mvel/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/ext/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/impl/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/yaml/main/
Log:
JBIDE-10403: ignore *.index files
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/ch/qos/cal10n/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/com/google/guava/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/com/sun/xml/bind/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/activation/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/annotation/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ejb/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/el/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/deploy/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/faces/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/inject/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/interceptor/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jms/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jws/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/mail/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/persistence/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/resource/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/auth/message/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/jacc/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jsp/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jstl/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/transaction/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/validation/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ws/rs/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/bind/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/registry/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/rpc/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/soap/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/ws/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/jline/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/logging/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/httpcomponents/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/javassist/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/event-bus/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/impl/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/model/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/impl/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/xml/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/impl/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/shell/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/spi/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/logmanager/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/seam/render/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/shrinkwrap/descriptors/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/solder/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/api/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/core/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/spi/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/mvel/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/ext/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/impl/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/main
___________________________________________________________________
Added: svn:ignore
+ *.index
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/yaml/main
___________________________________________________________________
Added: svn:ignore
+ *.index
14 years
JBoss Tools SVN: r37082 - in branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime: META-INF and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: koen.aers(a)jboss.com
Date: 2011-12-07 17:04:11 -0500 (Wed, 07 Dec 2011)
New Revision: 37082
Modified:
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/.classpath
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/META-INF/MANIFEST.MF
Log:
JBIDE-10403: fix dependency issues
Modified: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/.classpath
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/.classpath 2011-12-07 21:47:30 UTC (rev 37081)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/.classpath 2011-12-07 22:04:11 UTC (rev 37082)
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
- <classpathentry exported="true" kind="lib" path="modules/org/jboss/forge/shell-api/main/forge-shell-api.jar"/>
- <classpathentry exported="true" kind="lib" path="modules/javax/enterprise/cdi-api/main/cdi-api.jar"/>
- <classpathentry exported="true" kind="lib" path="modules/javax/enterprise/cdi-api/main/javax.inject.jar"/>
+ <classpathentry exported="true" kind="lib" path="/Users/koen/Workspace/jbt/trunk/forge-tools/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/shell/api/main/forge-shell-api-1.0.0-SNAPSHOT.jar"/>
+ <classpathentry exported="true" kind="lib" path="/Users/koen/Workspace/jbt/trunk/forge-tools/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/api/main/cdi-api-1.0-SP4.jar"/>
+ <classpathentry exported="true" kind="lib" path="/Users/koen/Workspace/jbt/trunk/forge-tools/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/inject/api/main/javax.inject-1.jar"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="output" path="bin"/>
Modified: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/META-INF/MANIFEST.MF 2011-12-07 21:47:30 UTC (rev 37081)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/META-INF/MANIFEST.MF 2011-12-07 22:04:11 UTC (rev 37082)
@@ -7,15 +7,6 @@
Bundle-ClassPath: modules/javax/enterprise/cdi-api/main/javax.inject.jar,
modules/javax/enterprise/cdi-api/main/cdi-api.jar,
modules/org/jboss/forge/shell-api/main/forge-shell-api.jar
-Export-Package: javax.enterprise.event,
- javax.inject,
- org.jboss.forge.project,
- org.jboss.forge.resources,
- org.jboss.forge.resources.events,
- org.jboss.forge.shell,
- org.jboss.forge.shell.command,
- org.jboss.forge.shell.events,
- org.jboss.forge.shell.spi
Bundle-Vendor: JBoss by Red Hat
Eclipse-BundleShape: dir
14 years
JBoss Tools SVN: r37081 - in branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime: bin and 201 other directories.
by jbosstools-commits@lists.jboss.org
Author: koen.aers(a)jboss.com
Date: 2011-12-07 16:47:30 -0500 (Wed, 07 Dec 2011)
New Revision: 37081
Added:
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/LICENSE.txt
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/README.txt
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/bin/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/bin/forge
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/bin/forge.bat
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/copyright.txt
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/jboss-modules.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/ch/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/ch/qos/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/ch/qos/cal10n/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/ch/qos/cal10n/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/ch/qos/cal10n/main/cal10n-api-0.7.2.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/ch/qos/cal10n/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/com/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/com/google/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/com/google/guava/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/com/google/guava/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/com/google/guava/main/guava-r06.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/com/google/guava/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/com/sun/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/com/sun/xml/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/com/sun/xml/bind/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/com/sun/xml/bind/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/com/sun/xml/bind/main/jaxb-impl-2.2.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/com/sun/xml/bind/main/jaxb-xjc-2.2.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/com/sun/xml/bind/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javaee/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javaee/api/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javaee/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javaee/api/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/activation/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/activation/api/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/activation/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/activation/api/main/activation-1.1.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/activation/api/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/annotation/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/annotation/api/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/annotation/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/annotation/api/main/jboss-annotations-api_1.1_spec-1.0.0.Final.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/annotation/api/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/api/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/api/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ejb/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ejb/api/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ejb/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ejb/api/main/jboss-ejb-api_3.1_spec-1.0.0.Final.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ejb/api/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/el/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/el/api/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/el/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/el/api/main/jboss-el-api_2.2_spec-1.0.0.Final.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/el/api/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/api/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/api/main/cdi-api-1.0-SP4.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/api/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/deploy/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/deploy/api/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/deploy/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/deploy/api/main/jboss-jad-api_1.2_spec-1.0.0.Final.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/deploy/api/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/faces/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/faces/api/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/faces/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/faces/api/main/jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/faces/api/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/inject/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/inject/api/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/inject/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/inject/api/main/javax.inject-1.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/inject/api/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/interceptor/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/interceptor/api/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/interceptor/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/interceptor/api/main/jboss-interceptors-api_1.1_spec-1.0.0.Final.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/interceptor/api/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jms/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jms/api/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jms/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jms/api/main/jboss-jms-api_1.1_spec-1.0.0.Final.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jms/api/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jws/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jws/api/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jws/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jws/api/main/jsr181-api-1.0-MR1.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jws/api/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/mail/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/mail/api/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/mail/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/mail/api/main/mail-1.4.2.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/mail/api/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/management/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/management/j2ee/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/management/j2ee/api/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/management/j2ee/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/management/j2ee/api/main/jboss-j2eemgmt-api_1.1_spec-1.0.0.Final.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/management/j2ee/api/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/persistence/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/persistence/api/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/persistence/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/persistence/api/main/hibernate-jpa-2.0-api-1.0.1.Final.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/persistence/api/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/resource/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/resource/api/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/resource/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/resource/api/main/jboss-connector-api_1.6_spec-1.0.0.Final.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/resource/api/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/rmi/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/rmi/api/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/rmi/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/rmi/api/main/jboss-rmi-api_1.0_spec-1.0.0.Final.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/rmi/api/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/auth/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/auth/message/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/auth/message/api/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/auth/message/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/auth/message/api/main/jboss-jaspi-api_1.0_spec-1.0.0.Final.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/auth/message/api/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/jacc/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/jacc/api/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/jacc/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/jacc/api/main/jboss-jacc-api_1.4_spec-1.0.0.Final.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/jacc/api/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/api/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/api/main/jbosgi-xservice.properties
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/api/main/jboss-servlet-api_3.0_spec-1.0.0.Final.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/api/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jsp/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jsp/api/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jsp/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jsp/api/main/jboss-jsp-api_2.2_spec-1.0.0.Final.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jsp/api/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jstl/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jstl/api/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jstl/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jstl/api/main/jboss-jstl-api_1.2_spec-1.0.0.Final.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jstl/api/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/transaction/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/transaction/api/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/transaction/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/transaction/api/main/jbosgi-xservice.properties
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/transaction/api/main/jboss-transaction-api_1.1_spec-1.0.0.Final.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/transaction/api/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/validation/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/validation/api/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/validation/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/validation/api/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/validation/api/main/validation-api-1.0.0.GA.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ws/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ws/rs/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ws/rs/api/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ws/rs/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ws/rs/api/main/jboss-jaxrs-api_1.1_spec-1.0.0.Final.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ws/rs/api/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/bind/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/bind/api/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/bind/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/bind/api/main/jboss-jaxb-api_2.2_spec-1.0.3.Final.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/bind/api/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/jaxp-provider/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/jaxp-provider/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/jaxp-provider/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/registry/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/registry/api/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/registry/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/registry/api/main/jboss-jaxr-api_1.0_spec-1.0.0.Final.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/registry/api/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/rpc/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/rpc/api/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/rpc/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/rpc/api/main/jboss-jaxrpc-api_1.1_spec-1.0.0.Final.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/rpc/api/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/soap/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/soap/api/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/soap/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/soap/api/main/jboss-saaj-api_1.3_spec-1.0.0.Final.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/soap/api/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/stream/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/stream/api/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/stream/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/stream/api/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/ws/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/ws/api/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/ws/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/ws/api/main/jboss-jaxws-api_2.2_spec-1.0.0.Final.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/ws/api/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/jline/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/jline/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/jline/main/jansi-1.5.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/jline/main/jline-2.5.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/jline/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/logging/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/logging/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/logging/main/commons-logging-1.1.1.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/logging/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/httpcomponents/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/httpcomponents/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/httpcomponents/main/httpclient-4.0.1.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/httpcomponents/main/httpcore-4.0.1.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/httpcomponents/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/log4j/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/log4j/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/log4j/main/log4j-1.2.16.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/log4j/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/common-3.3.0-v20070426.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/contenttype-3.2.100-v20070319.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/core-3.3.0-v_771.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/jobs-3.3.0-v20070423.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/osgi-3.4.3.R34x_v20081215-1030.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/preferences-3.2.100-v20070522.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/resources-3.3.0-v20070604.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/runtime-3.3.100-v20070530.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/text-3.3.0-v20070606-0010.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/javassist/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/javassist/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/javassist/main/javassist-3.12.1.GA.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/javassist/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/event-bus/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/event-bus/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/event-bus/main/forge-event-bus-1.0.0-SNAPSHOT.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/event-bus/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/args4j-2.0.12.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/forge-git-tools-1.0.0-SNAPSHOT.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/jsch-0.1.41.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/org.eclipse.jgit-0.10.1.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/org.eclipse.jgit.console-0.10.1.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/org.eclipse.jgit.iplog-0.10.1.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/org.eclipse.jgit.pgm-0.10.1.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/org.eclipse.jgit.ui-0.10.1.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/api/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/api/main/forge-javaee-api-1.0.0-SNAPSHOT.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/api/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/impl/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/impl/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/impl/main/forge-javaee-impl-1.0.0-SNAPSHOT.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/impl/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/main/forge-dev-plugins-1.0.0-SNAPSHOT.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/main/forge-shell-1.0.0-SNAPSHOT.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/aether-api-1.11.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/aether-connector-wagon-1.11.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/aether-impl-1.11.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/aether-spi-1.11.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/aether-util-1.11.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/commons-cli-1.2.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/forge-maven-api-1.0.0-SNAPSHOT.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-aether-provider-3.0.3.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-artifact-3.0.3.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-compat-3.0.3.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-core-3.0.3.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-embedder-3.0.3.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-model-3.0.3.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-model-builder-3.0.3.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-plugin-api-3.0.3.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-repository-metadata-3.0.3.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-settings-3.0.3.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-settings-builder-3.0.3.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/plexus-cipher-1.4.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/plexus-classworlds-2.4.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/plexus-component-annotations-1.5.5.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/plexus-interpolation-1.14.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/plexus-sec-dispatcher-1.3.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/plexus-utils-2.0.6.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/sisu-guice-2.9.4-no_aop.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/sisu-inject-bean-2.1.1.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/sisu-inject-plexus-2.1.1.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/wagon-file-2.0.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/wagon-http-lightweight-2.0.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/wagon-http-shared4-2.0.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/wagon-provider-api-1.0-beta-7.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/model/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/model/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/model/main/forge-project-model-maven-1.0.0-SNAPSHOT.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/model/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/api/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/api/main/forge-parser-java-api-1.0.0-SNAPSHOT.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/api/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/impl/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/impl/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/impl/main/forge-parser-java-1.0.0-SNAPSHOT.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/impl/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/xml/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/xml/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/xml/main/forge-parser-xml-1.0.0-SNAPSHOT.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/xml/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/api/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/api/main/forge-scaffold-api-1.0.0-SNAPSHOT.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/api/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/impl/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/impl/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/impl/main/forge-scaffold-faces-1.0.0-SNAPSHOT.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/impl/main/forge-scaffold-plugins-1.0.0-SNAPSHOT.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/impl/main/metawidget-all-1.35-SNAPSHOT.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/impl/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/shell/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/shell/api/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/shell/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/shell/api/main/forge-shell-api-1.0.0-SNAPSHOT.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/shell/api/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/main/jboss-interceptor-core-2.0.0.CR1.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/spi/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/spi/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/spi/main/jboss-interceptor-spi-2.0.0.CR1.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/spi/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/logmanager/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/logmanager/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/logmanager/main/jboss-logmanager-1.2.0.GA.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/logmanager/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/modules/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/modules/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/modules/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/seam/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/seam/render/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/seam/render/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/seam/render/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/seam/render/main/seam-render-1.0.0-SNAPSHOT.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/shrinkwrap/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/shrinkwrap/descriptors/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/shrinkwrap/descriptors/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/shrinkwrap/descriptors/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/shrinkwrap/descriptors/main/shrinkwrap-descriptors-api-1.1.0-beta-1.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/shrinkwrap/descriptors/main/shrinkwrap-descriptors-impl-1.1.0-beta-1.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/shrinkwrap/descriptors/main/shrinkwrap-descriptors-spi-1.1.0-beta-1.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/solder/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/solder/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/solder/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/solder/main/solder-api-3.1.0.Beta3.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/solder/main/solder-impl-3.1.0.Beta3.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/solder/main/solder-logging-3.1.0.Beta3.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/api/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/api/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/api/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/api/main/weld-api-1.1.Beta2.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/core/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/core/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/core/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/core/main/weld-core-1.1.2.Final.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/core/main/weld-se-core-1.1.2.Final.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/spi/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/spi/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/spi/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/spi/main/weld-spi-1.1.Beta2.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/mvel/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/mvel/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/mvel/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/mvel/main/mvel2-2.1.Beta7.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/ext/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/ext/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/ext/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/ext/main/slf4j-ext-1.5.10.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/impl/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/impl/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/impl/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/impl/main/slf4j-jboss-logmanager-1.0.0.CR4.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/main/slf4j-api-1.5.10.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/yaml/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/yaml/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/yaml/main/module.xml
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/yaml/main/snakeyaml-1.7.jar
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/sun/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/sun/misc/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/sun/misc/main/
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/sun/misc/main/module.xml
Modified:
branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/
Log:
JBIDE-10403: add new forge runtime (snapshot)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime
___________________________________________________________________
Deleted: svn:ignore
- target
buildlog.latest.txt
bin
build
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/LICENSE.txt
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/LICENSE.txt (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/LICENSE.txt 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,189 @@
+JBoss, Home of Professional Open Source.
+Copyright (c) 2011, Red Hat, Inc., and individual contributors
+as indicated by the @author tags. See the copyright.txt file in the
+distribution for a full listing of individual contributors.
+
+This is free software; you can redistribute it and/or modify it
+under the terms of the GNU Lesser General Public License as
+published by the Free Software Foundation; either version 2.1 of
+the License, or (at your option) any later version.
+
+This software is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+Lesser General Public License for more details.
+
+You should have received a copy of the GNU Lesser General Public
+License along with this software; if not, write to the Free
+Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+02110-1301 USA, or see the FSF site: http://www.fsf.org.
+
+Note that some thirdparty components have different terms which are
+located in the docs/licenses directory.
+
+
+ GNU LESSER GENERAL PUBLIC LICENSE
+ Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+
+ This version of the GNU Lesser General Public License incorporates
+the terms and conditions of version 3 of the GNU General Public
+License, supplemented by the additional permissions listed below.
+
+ 0. Additional Definitions.
+
+ As used herein, "this License" refers to version 3 of the GNU Lesser
+General Public License, and the "GNU GPL" refers to version 3 of the GNU
+General Public License.
+
+ "The Library" refers to a covered work governed by this License,
+other than an Application or a Combined Work as defined below.
+
+ An "Application" is any work that makes use of an interface provided
+by the Library, but which is not otherwise based on the Library.
+Defining a subclass of a class defined by the Library is deemed a mode
+of using an interface provided by the Library.
+
+ A "Combined Work" is a work produced by combining or linking an
+Application with the Library. The particular version of the Library
+with which the Combined Work was made is also called the "Linked
+Version".
+
+ The "Minimal Corresponding Source" for a Combined Work means the
+Corresponding Source for the Combined Work, excluding any source code
+for portions of the Combined Work that, considered in isolation, are
+based on the Application, and not on the Linked Version.
+
+ The "Corresponding Application Code" for a Combined Work means the
+object code and/or source code for the Application, including any data
+and utility programs needed for reproducing the Combined Work from the
+Application, but excluding the System Libraries of the Combined Work.
+
+ 1. Exception to Section 3 of the GNU GPL.
+
+ You may convey a covered work under sections 3 and 4 of this License
+without being bound by section 3 of the GNU GPL.
+
+ 2. Conveying Modified Versions.
+
+ If you modify a copy of the Library, and, in your modifications, a
+facility refers to a function or data to be supplied by an Application
+that uses the facility (other than as an argument passed when the
+facility is invoked), then you may convey a copy of the modified
+version:
+
+ a) under this License, provided that you make a good faith effort to
+ ensure that, in the event an Application does not supply the
+ function or data, the facility still operates, and performs
+ whatever part of its purpose remains meaningful, or
+
+ b) under the GNU GPL, with none of the additional permissions of
+ this License applicable to that copy.
+
+ 3. Object Code Incorporating Material from Library Header Files.
+
+ The object code form of an Application may incorporate material from
+a header file that is part of the Library. You may convey such object
+code under terms of your choice, provided that, if the incorporated
+material is not limited to numerical parameters, data structure
+layouts and accessors, or small macros, inline functions and templates
+(ten or fewer lines in length), you do both of the following:
+
+ a) Give prominent notice with each copy of the object code that the
+ Library is used in it and that the Library and its use are
+ covered by this License.
+
+ b) Accompany the object code with a copy of the GNU GPL and this license
+ document.
+
+ 4. Combined Works.
+
+ You may convey a Combined Work under terms of your choice that,
+taken together, effectively do not restrict modification of the
+portions of the Library contained in the Combined Work and reverse
+engineering for debugging such modifications, if you also do each of
+the following:
+
+ a) Give prominent notice with each copy of the Combined Work that
+ the Library is used in it and that the Library and its use are
+ covered by this License.
+
+ b) Accompany the Combined Work with a copy of the GNU GPL and this license
+ document.
+
+ c) For a Combined Work that displays copyright notices during
+ execution, include the copyright notice for the Library among
+ these notices, as well as a reference directing the user to the
+ copies of the GNU GPL and this license document.
+
+ d) Do one of the following:
+
+ 0) Convey the Minimal Corresponding Source under the terms of this
+ License, and the Corresponding Application Code in a form
+ suitable for, and under terms that permit, the user to
+ recombine or relink the Application with a modified version of
+ the Linked Version to produce a modified Combined Work, in the
+ manner specified by section 6 of the GNU GPL for conveying
+ Corresponding Source.
+
+ 1) Use a suitable shared library mechanism for linking with the
+ Library. A suitable mechanism is one that (a) uses at run time
+ a copy of the Library already present on the user's computer
+ system, and (b) will operate properly with a modified version
+ of the Library that is interface-compatible with the Linked
+ Version.
+
+ e) Provide Installation Information, but only if you would otherwise
+ be required to provide such information under section 6 of the
+ GNU GPL, and only to the extent that such information is
+ necessary to install and execute a modified version of the
+ Combined Work produced by recombining or relinking the
+ Application with a modified version of the Linked Version. (If
+ you use option 4d0, the Installation Information must accompany
+ the Minimal Corresponding Source and Corresponding Application
+ Code. If you use option 4d1, you must provide the Installation
+ Information in the manner specified by section 6 of the GNU GPL
+ for conveying Corresponding Source.)
+
+ 5. Combined Libraries.
+
+ You may place library facilities that are a work based on the
+Library side by side in a single library together with other library
+facilities that are not Applications and are not covered by this
+License, and convey such a combined library under terms of your
+choice, if you do both of the following:
+
+ a) Accompany the combined library with a copy of the same work based
+ on the Library, uncombined with any other library facilities,
+ conveyed under the terms of this License.
+
+ b) Give prominent notice with the combined library that part of it
+ is a work based on the Library, and explaining where to find the
+ accompanying uncombined form of the same work.
+
+ 6. Revised Versions of the GNU Lesser General Public License.
+
+ The Free Software Foundation may publish revised and/or new versions
+of the GNU Lesser General Public License from time to time. Such new
+versions will be similar in spirit to the present version, but may
+differ in detail to address new problems or concerns.
+
+ Each version is given a distinguishing version number. If the
+Library as you received it specifies that a certain numbered version
+of the GNU Lesser General Public License "or any later version"
+applies to it, you have the option of following the terms and
+conditions either of that published version or of any later version
+published by the Free Software Foundation. If the Library as you
+received it does not specify a version number of the GNU Lesser
+General Public License, you may choose any version of the GNU Lesser
+General Public License ever published by the Free Software Foundation.
+
+ If the Library as you received it specifies that a proxy can decide
+whether future versions of the GNU Lesser General Public License shall
+apply, that proxy's public statement of acceptance of any version is
+permanent authorization for you to choose that version for the
+Library.
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/LICENSE.txt
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/README.txt
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/README.txt (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/README.txt 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,11 @@
+ _____
+ | ___|__ _ __ __ _ ___
+ | |_ / _ \| `__/ _` |/ _ \ \\
+ | _| (_) | | | (_| | __/ //
+ |_| \___/|_| \__, |\___|
+ |___/
+
+Welcome to JBoss Forge
+http://jboss.org/forge
+
+Go to above link for Documentations, Plugins, and Additional Information
\ No newline at end of file
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/README.txt
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/bin/forge
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/bin/forge (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/bin/forge 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,163 @@
+#!/bin/sh
+
+# ----------------------------------------------------------------------------
+# Licensed under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+# ----------------------------------------------------------------------------
+
+
+# ----------------------------------------------------------------------
+# Forge Startup script
+#
+# Required Environment vars:
+# ------------------
+# JAVA_HOME - location of a JRE home directory
+#
+# Optional Environment Variables
+# ------------------
+# FORGE_HOME - location of Forge's installed home dir
+# FORGE_OPTS - parameters passed to the Java VM when running Forge
+# -----------------------------------------------------------------------
+
+QUOTED_ARGS=""
+while [ "$1" != "" ] ; do
+
+ QUOTED_ARGS="$QUOTED_ARGS \"$1\""
+ shift
+
+done
+
+if [ -f /etc/forgerc ] ; then
+ . /etc/forgerc
+fi
+
+if [ -f "$HOME/.forgerc" ] ; then
+ . "$HOME/.forgerc"
+fi
+
+# OS specific support. $var _must_ be set to either true or false.
+cygwin=false;
+darwin=false;
+mingw=false
+case "`uname`" in
+ CYGWIN*) cygwin=true ;;
+ MINGW*) mingw=true;;
+ Darwin*) darwin=true
+ if [ -z "$JAVA_VERSION" ] ; then
+ JAVA_VERSION="CurrentJDK"
+ fi
+ if [ -z "$JAVA_HOME" ] ; then
+ JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/${JAVA_VERSION}/Home
+ fi
+ ;;
+esac
+
+if [ -z "$JAVA_HOME" ] ; then
+ if [ -r /etc/gentoo-release ] ; then
+ JAVA_HOME=`java-config --jre-home`
+ fi
+fi
+
+if [ -z "$FORGE_HOME" ] ; then
+ ## resolve links - $0 may be a link to Forge's home
+ PRG="$0"
+
+ # need this for relative symlinks
+ while [ -h "$PRG" ] ; do
+ ls=`ls -ld "$PRG"`
+ link=`expr "$ls" : '.*-> \(.*\)$'`
+ if expr "$link" : '/.*' > /dev/null; then
+ PRG="$link"
+ else
+ PRG="`dirname "$PRG"`/$link"
+ fi
+ done
+
+ saveddir=`pwd`
+
+ FORGE_HOME=`dirname "$PRG"`/..
+
+ # make it fully qualified
+ FORGE_HOME=`cd "$FORGE_HOME" && pwd`
+
+ cd "$saveddir"
+ echo Using Forge at $FORGE_HOME
+fi
+
+# For Cygwin, ensure paths are in UNIX format before anything is touched
+if $cygwin ; then
+ [ -n "$FORGE_HOME" ] &&
+ FORGE_HOME=`cygpath --unix "$FORGE_HOME"`
+ [ -n "$JAVA_HOME" ] &&
+ JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
+ [ -n "$CLASSPATH" ] &&
+ CLASSPATH=`cygpath --path --unix "$CLASSPATH"`
+fi
+
+# For Migwn, ensure paths are in UNIX format before anything is touched
+if $mingw ; then
+ [ -n "$FORGE_HOME" ] &&
+ FORGE_HOME="`(cd "$FORGE_HOME"; pwd)`"
+ [ -n "$JAVA_HOME" ] &&
+ JAVA_HOME="`(cd "$JAVA_HOME"; pwd)`"
+ # TODO classpath?
+fi
+
+if [ -z "$JAVACMD" ] ; then
+ if [ -n "$JAVA_HOME" ] ; then
+ if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+ # IBM's JDK on AIX uses strange locations for the executables
+ JAVACMD="$JAVA_HOME/jre/sh/java"
+ else
+ JAVACMD="$JAVA_HOME/bin/java"
+ fi
+ else
+ JAVACMD="`which java`"
+ fi
+fi
+
+if [ ! -x "$JAVACMD" ] ; then
+ echo "Error: JAVA_HOME is not defined correctly."
+ echo " We cannot execute $JAVACMD"
+ exit 1
+fi
+
+JAVAVER=`$JAVACMD -version 2>&1`
+case $JAVAVER in
+*1.[6-9]*) ;;
+*1.[1-5]*)
+ echo " Error: a Java 1.6 or higher JRE is required to run Forge; found [$JAVACMD -version == $JAVAVER]."
+ exit 1
+ ;;
+esac
+
+
+if [ -z "$JAVA_HOME" ] ; then
+ echo "Warning: JAVA_HOME environment variable is not set."
+fi
+
+FORGE_MAIN_CLASS=org.jboss.forge.shell.Bootstrap
+
+# For Cygwin, switch paths to Windows format before running java
+if $cygwin; then
+ [ -n "$FORGE_HOME" ] &&
+ FORGE_HOME=`cygpath --path --windows "$FORGE_HOME"`
+ [ -n "$JAVA_HOME" ] &&
+ JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"`
+ [ -n "$HOME" ] &&
+ HOME=`cygpath --path --windows "$HOME"`
+fi
+
+forge_exec_cmd="\"$JAVACMD\" $FORGE_OPTS \"-Dforge.home=${FORGE_HOME}\" \"-Dforge.shell.colorEnabled=true\" -jar \"${FORGE_HOME}/jboss-modules.jar\" -modulepath \"${FORGE_HOME}/modules:${HOME}/.forge/plugins\" org.jboss.forge"
+
+eval $forge_exec_cmd "$QUOTED_ARGS"
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/bin/forge.bat
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/bin/forge.bat (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/bin/forge.bat 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,173 @@
+@REM ----------------------------------------------------------------------------
+@REM Licensed under the Apache License, Version 2.0 (the
+@REM "License"); you may not use this file except in compliance
+@REM with the License. You may obtain a copy of the License at
+@REM
+@REM http://www.apache.org/licenses/LICENSE-2.0
+@REM
+@REM Unless required by applicable law or agreed to in writing,
+@REM software distributed under the License is distributed on an
+@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+@REM KIND, either express or implied. See the License for the
+@REM specific language governing permissions and limitations
+@REM under the License.
+@REM ----------------------------------------------------------------------------
+
+@REM ----------------------------------------------------------------------------
+@REM Forge Startup script
+@REM
+@REM Required Environment vars:
+@REM ------------------
+@REM JAVA_HOME - location of a JRE home dir
+@REM
+@REM Optional Environment vars
+@REM ------------------
+@REM FORGE_HOME - location of Forge's installed home dir
+@REM FORGE_OPTS - parameters passed to the Java VM when running Forge
+@REM ----------------------------------------------------------------------------
+
+@echo off
+
+@REM set %HOME% to equivalent of $HOME
+if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%")
+
+@REM Execute a user defined script before this one
+if exist "%HOME%\forgerc_pre.bat" call "%HOME%\forgerc_pre.bat"
+
+set ERROR_CODE=0
+
+@REM set local scope for the variables with windows NT shell
+if "%OS%"=="Windows_NT" @setlocal
+if "%OS%"=="WINNT" @setlocal
+
+@REM ==== START VALIDATION ====
+if not "%JAVA_HOME%" == "" goto OkJHome
+
+echo.
+echo ERROR: JAVA_HOME not found in your environment.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation
+echo.
+goto error
+
+:OkJHome
+if exist "%JAVA_HOME%\bin\java.exe" goto chkFHome
+
+echo.
+echo ERROR: JAVA_HOME is set to an invalid directory.
+echo JAVA_HOME = "%JAVA_HOME%"
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation
+echo.
+goto error
+
+:chkFHome
+if not "%FORGE_HOME%"=="" goto valFHome
+
+if "%OS%"=="Windows_NT" SET "FORGE_HOME=%~dp0.."
+if "%OS%"=="WINNT" SET "FORGE_HOME=%~dp0.."
+if not "%FORGE_HOME%"=="" goto valFHome
+
+echo.
+echo ERROR: FORGE_HOME not found in your environment.
+echo Please set the FORGE_HOME variable in your environment to match the
+echo location of the Forge installation
+echo.
+goto error
+
+:valFHome
+
+:stripFHome
+if not "_%FORGE_HOME:~-1%"=="_\" goto checkFBat
+set "FORGE_HOME=%FORGE_HOME:~0,-1%"
+goto stripFHome
+
+:checkFBat
+if exist "%FORGE_HOME%\bin\forge.bat" goto init
+
+echo.
+echo ERROR: FORGE_HOME is set to an invalid directory.
+echo FORGE_HOME = "%FORGE_HOME%"
+echo Please set the FORGE_HOME variable in your environment to match the
+echo location of the Forge installation
+echo.
+goto error
+@REM ==== END VALIDATION ====
+
+:init
+@REM Decide how to startup depending on the version of windows
+
+@REM -- Windows NT with Novell Login
+if "%OS%"=="WINNT" goto WinNTNovell
+
+@REM -- Win98ME
+if NOT "%OS%"=="Windows_NT" goto Win9xArg
+
+:WinNTNovell
+
+@REM -- 4NT shell
+if "%@eval[2+2]" == "4" goto 4NTArgs
+
+@REM -- Regular WinNT shell
+set FORGE_CMD_LINE_ARGS=%*
+goto endInit
+
+@REM The 4NT Shell from jp software
+:4NTArgs
+set FORGE_CMD_LINE_ARGS=%$
+goto endInit
+
+:Win9xArg
+@REM Slurp the command line arguments. This loop allows for an unlimited number
+@REM of agruments (up to the command line limit, anyway).
+set FORGE_CMD_LINE_ARGS=
+:Win9xApp
+if %1a==a goto endInit
+set FORGE_CMD_LINE_ARGS=%FORGE_CMD_LINE_ARGS% %1
+shift
+goto Win9xApp
+
+@REM Reaching here means variables are defined and arguments have been captured
+:endInit
+SET FORGE_JAVA_EXE="%JAVA_HOME%\bin\java.exe"
+
+@REM -- 4NT shell
+if "%@eval[2+2]" == "4" goto 4NTCWJars
+
+set JBOSS_MODULES="%FORGE_HOME%\jboss-modules.jar"
+goto runForge
+
+@REM Start Forge
+:runForge
+set FORGE_MAIN_CLASS=org.jboss.forge.shell.Bootstrap
+%FORGE_JAVA_EXE% %FORGE_OPTS% "-Dforge.home=%FORGE_HOME%" -Dforge.shell.colorEnabled=true -jar %JBOSS_MODULES% -modulepath "%FORGE_HOME%\modules;%HOME%\.forge\plugins" org.jboss.forge %FORGE_CMD_LINE_ARGS%
+if ERRORLEVEL 1 goto error
+goto end
+
+:error
+if "%OS%"=="Windows_NT" @endlocal
+if "%OS%"=="WINNT" @endlocal
+set ERROR_CODE=1
+
+:end
+@REM set local scope for the variables with windows NT shell
+if "%OS%"=="Windows_NT" goto endNT
+if "%OS%"=="WINNT" goto endNT
+
+@REM For old DOS remove the set variables from ENV - we assume they were not set
+@REM before we started - at least we don't leave any baggage around
+set FORGE_JAVA_EXE=
+set FORGE_CMD_LINE_ARGS=
+goto postExec
+
+:endNT
+@endlocal & set ERROR_CODE=%ERROR_CODE%
+
+:postExec
+if exist "%HOME%\forgerc_post.bat" call "%HOME%\forgerc_post.bat"
+
+if "%FORGE_TERMINATE_CMD%" == "on" exit %ERROR_CODE%
+
+cmd /C exit /B %ERROR_CODE%
+
+
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/copyright.txt
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/copyright.txt (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/copyright.txt 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1 @@
+Lincoln Baxter, III <lincolnbaxter(a)gmail.com>
\ No newline at end of file
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/copyright.txt
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/jboss-modules.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/jboss-modules.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/ch/qos/cal10n/main/cal10n-api-0.7.2.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/ch/qos/cal10n/main/cal10n-api-0.7.2.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/ch/qos/cal10n/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/ch/qos/cal10n/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/ch/qos/cal10n/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="ch.qos.cal10n">
+ <resources>
+ <resource-root path="cal10n-api-0.7.2.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ </dependencies>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/ch/qos/cal10n/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/com/google/guava/main/guava-r06.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/com/google/guava/main/guava-r06.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/com/google/guava/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/com/google/guava/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/com/google/guava/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="com.google.guava">
+ <resources>
+ <resource-root path="guava-r06.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ </dependencies>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/com/google/guava/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/com/sun/xml/bind/main/jaxb-impl-2.2.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/com/sun/xml/bind/main/jaxb-impl-2.2.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/com/sun/xml/bind/main/jaxb-xjc-2.2.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/com/sun/xml/bind/main/jaxb-xjc-2.2.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/com/sun/xml/bind/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/com/sun/xml/bind/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/com/sun/xml/bind/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2011, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="com.sun.xml.bind">
+
+ <resources>
+ <resource-root path="jaxb-impl-2.2.jar"/>
+ <resource-root path="jaxb-xjc-2.2.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api" />
+ <module name="javax.xml.bind.api" />
+ <module name="javax.xml.stream.api" />
+ </dependencies>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/com/sun/xml/bind/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javaee/api/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javaee/api/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javaee/api/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,59 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="javaee.api">
+ <resources>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.activation.api" export="true"/>
+ <module name="javax.annotation.api" export="true"/>
+ <module name="javax.ejb.api" export="true"/>
+ <module name="javax.el.api" export="true"/>
+ <module name="javax.enterprise.api" export="true"/>
+ <module name="javax.enterprise.deploy.api" export="true"/>
+ <module name="javax.inject.api" export="true"/>
+ <module name="javax.interceptor.api" export="true"/>
+ <module name="javax.jms.api" export="true"/>
+ <module name="javax.jws.api" export="true"/>
+ <module name="javax.mail.api" export="true"/>
+ <module name="javax.persistence.api" export="true"/>
+ <module name="javax.resource.api" export="true"/>
+ <module name="javax.security.auth.message.api" export="true"/>
+ <module name="javax.security.jacc.api" export="true"/>
+ <module name="javax.servlet.api" export="true"/>
+ <module name="javax.servlet.jsp.api" export="true"/>
+ <module name="javax.transaction.api" export="true"/>
+ <module name="javax.validation.api" export="true"/>
+ <module name="javax.ws.rs.api" export="true" services="export"/>
+ <module name="javax.xml.bind.api" export="true"/>
+ <module name="javax.xml.registry.api" export="true"/>
+ <module name="javax.xml.soap.api" export="true"/>
+ <module name="javax.xml.ws.api" export="true"/>
+
+ <!-- This one always goes last. -->
+ <module name="javax.api" export="true"/>
+ </dependencies>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javaee/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/activation/api/main/activation-1.1.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/activation/api/main/activation-1.1.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/activation/api/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/activation/api/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/activation/api/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="javax.activation.api">
+ <dependencies>
+ <module name="javax.api" />
+ <module name="javax.mail.api" >
+ <imports><include path="META-INF"/></imports>
+ </module>
+ </dependencies>
+ <resources>
+ <resource-root path="activation-1.1.jar"/>
+ <resource-root path="activation-1.1.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/activation/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/annotation/api/main/jboss-annotations-api_1.1_spec-1.0.0.Final.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/annotation/api/main/jboss-annotations-api_1.1_spec-1.0.0.Final.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/annotation/api/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/annotation/api/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/annotation/api/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="javax.annotation.api">
+ <resources>
+ <resource-root path="jboss-annotations-api_1.1_spec-1.0.0.Final.jar"/>
+ <resource-root path="jboss-annotations-api_1.1_spec-1.0.0.Final.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/annotation/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/api/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/api/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/api/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,134 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+<module xmlns="urn:jboss:module:1.0" name="javax.api">
+ <dependencies>
+ <module name="system" export="false">
+ <exports>
+ <include-set>
+ <path name="javax/accessibility"/>
+ <path name="javax/activity"/>
+ <path name="javax/crypto"/>
+ <path name="javax/crypto/interfaces"/>
+ <path name="javax/crypto/spec"/>
+ <path name="javax/imageio"/>
+ <path name="javax/imageio/event"/>
+ <path name="javax/imageio/metadata"/>
+ <path name="javax/imageio/plugins/bmp"/>
+ <path name="javax/imageio/plugins/jpeg"/>
+ <path name="javax/imageio/spi"/>
+ <path name="javax/imageio/stream"/>
+ <path name="javax/lang/model"/>
+ <path name="javax/lang/model/element"/>
+ <path name="javax/lang/model/type"/>
+ <path name="javax/lang/model/util"/>
+ <path name="javax/management"/>
+ <path name="javax/management/loading"/>
+ <path name="javax/management/modelmbean"/>
+ <path name="javax/management/monitor"/>
+ <path name="javax/management/openmbean"/>
+ <path name="javax/management/relation"/>
+ <path name="javax/management/remote"/>
+ <path name="javax/management/remote/rmi"/>
+ <path name="javax/management/timer"/>
+ <path name="javax/naming"/>
+ <path name="javax/naming/directory"/>
+ <path name="javax/naming/event"/>
+ <path name="javax/naming/ldap"/>
+ <path name="javax/naming/spi"/>
+ <path name="javax/net"/>
+ <path name="javax/net/ssl"/>
+ <path name="javax/print"/>
+ <path name="javax/print/attribute"/>
+ <path name="javax/print/attribute/standard"/>
+ <path name="javax/print/event"/>
+ <path name="javax/rmi/ssl"/>
+ <path name="javax/script"/>
+ <path name="javax/security/auth"/>
+ <path name="javax/security/auth/callback"/>
+ <path name="javax/security/auth/kerberos"/>
+ <path name="javax/security/auth/login"/>
+ <path name="javax/security/auth/spi"/>
+ <path name="javax/security/auth/x500"/>
+ <path name="javax/security/cert"/>
+ <path name="javax/security/sasl"/>
+ <path name="javax/sound/midi"/>
+ <path name="javax/sound/midi/spi"/>
+ <path name="javax/sound/sampled"/>
+ <path name="javax/sound/sampled/spi"/>
+ <path name="javax/sql"/>
+ <path name="javax/sql/rowset"/>
+ <path name="javax/sql/rowset/serial"/>
+ <path name="javax/sql/rowset/spi"/>
+ <path name="javax/swing"/>
+ <path name="javax/swing/border"/>
+ <path name="javax/swing/colorchooser"/>
+ <path name="javax/swing/event"/>
+ <path name="javax/swing/filechooser"/>
+ <path name="javax/swing/plaf"/>
+ <path name="javax/swing/plaf/basic"/>
+ <path name="javax/swing/plaf/metal"/>
+ <path name="javax/swing/plaf/multi"/>
+ <path name="javax/swing/plaf/nimbus"/>
+ <path name="javax/swing/plaf/synth"/>
+ <path name="javax/swing/table"/>
+ <path name="javax/swing/text"/>
+ <path name="javax/swing/text/html"/>
+ <path name="javax/swing/text/html/parser"/>
+ <path name="javax/swing/text/rtf"/>
+ <path name="javax/swing/tree"/>
+ <path name="javax/swing/undo"/>
+ <path name="javax/tools"/>
+ <path name="javax/xml"/>
+ <path name="javax/xml/datatype"/>
+ <path name="javax/xml/namespace"/>
+ <path name="javax/xml/parsers"/>
+ <path name="javax/xml/stream"/>
+ <path name="javax/xml/stream/events"/>
+ <path name="javax/xml/stream/util"/>
+ <path name="javax/xml/transform"/>
+ <path name="javax/xml/transform/dom"/>
+ <path name="javax/xml/transform/sax"/>
+ <path name="javax/xml/transform/stax"/>
+ <path name="javax/xml/transform/stream"/>
+ <path name="javax/xml/validation"/>
+ <path name="javax/xml/xpath"/>
+ <path name="org/ietf/jgss"/>
+ <path name="org/w3c/dom"/>
+ <path name="org/w3c/dom/bootstrap"/>
+ <path name="org/w3c/dom/css"/>
+ <path name="org/w3c/dom/events"/>
+ <path name="org/w3c/dom/html"/>
+ <path name="org/w3c/dom/ranges"/>
+ <path name="org/w3c/dom/stylesheets"/>
+ <path name="org/w3c/dom/traversal"/>
+ <path name="org/w3c/dom/ls"/>
+ <path name="org/w3c/dom/xpath"/>
+ <path name="org/xml/sax"/>
+ <path name="org/xml/sax/ext"/>
+ <path name="org/xml/sax/helpers"/>
+ </include-set>
+ </exports>
+ </module>
+ </dependencies>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ejb/api/main/jboss-ejb-api_3.1_spec-1.0.0.Final.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ejb/api/main/jboss-ejb-api_3.1_spec-1.0.0.Final.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ejb/api/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ejb/api/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ejb/api/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="javax.ejb.api">
+ <dependencies>
+ <!-- This dep is for javax.naming -->
+ <module name="javax.api" export="true"/>
+ <module name="javax.transaction.api" export="true"/>
+ <module name="javax.xml.rpc.api" export="true"/>
+ </dependencies>
+
+ <resources>
+ <resource-root path="jboss-ejb-api_3.1_spec-1.0.0.Final.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ejb/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/el/api/main/jboss-el-api_2.2_spec-1.0.0.Final.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/el/api/main/jboss-el-api_2.2_spec-1.0.0.Final.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/el/api/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/el/api/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/el/api/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="javax.el.api">
+ <resources>
+ <resource-root path="jboss-el-api_2.2_spec-1.0.0.Final.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/el/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/api/main/cdi-api-1.0-SP4.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/api/main/cdi-api-1.0-SP4.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/api/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/api/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/api/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="javax.enterprise.api">
+ <dependencies>
+ <module name="javax.el.api" export="true"/>
+ <module name="javax.inject.api" export="true"/>
+ </dependencies>
+
+ <resources>
+ <resource-root path="cdi-api-1.0-SP4.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/deploy/api/main/jboss-jad-api_1.2_spec-1.0.0.Final.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/deploy/api/main/jboss-jad-api_1.2_spec-1.0.0.Final.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/deploy/api/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/deploy/api/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/deploy/api/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="javax.enterprise.deploy.api">
+ <resources>
+ <resource-root path="jboss-jad-api_1.2_spec-1.0.0.Final.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api"/>
+ <module name="org.jboss.common-core"/>
+ <module name="org.jboss.logging"/>
+ </dependencies>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/deploy/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/faces/api/main/jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/faces/api/main/jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/faces/api/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/faces/api/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/faces/api/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="javax.faces.api">
+ <dependencies>
+ <module name="javax.el.api" export="true"/>
+ <module name="javax.servlet.api" export="true"/>
+ <module name="javax.servlet.jsp.api" export="true"/>
+ <module name="javax.servlet.jstl.api" export="true"/>
+ <module name="javax.validation.api" export="true"/>
+ </dependencies>
+
+ <resources>
+ <resource-root path="jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/faces/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/inject/api/main/javax.inject-1.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/inject/api/main/javax.inject-1.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/inject/api/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/inject/api/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/inject/api/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="javax.inject.api">
+ <resources>
+ <resource-root path="javax.inject-1.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/inject/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/interceptor/api/main/jboss-interceptors-api_1.1_spec-1.0.0.Final.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/interceptor/api/main/jboss-interceptors-api_1.1_spec-1.0.0.Final.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/interceptor/api/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/interceptor/api/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/interceptor/api/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="javax.interceptor.api">
+ <resources>
+ <resource-root path="jboss-interceptors-api_1.1_spec-1.0.0.Final.jar"/>
+ <resource-root path="jboss-interceptors-api_1.1_spec-1.0.0.Final.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/interceptor/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jms/api/main/jboss-jms-api_1.1_spec-1.0.0.Final.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jms/api/main/jboss-jms-api_1.1_spec-1.0.0.Final.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jms/api/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jms/api/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jms/api/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="javax.jms.api">
+ <dependencies>
+ <module name="javax.transaction.api" export="true"/>
+ </dependencies>
+
+ <resources>
+ <resource-root path="jboss-jms-api_1.1_spec-1.0.0.Final.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jms/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jws/api/main/jsr181-api-1.0-MR1.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jws/api/main/jsr181-api-1.0-MR1.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jws/api/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jws/api/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jws/api/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="javax.jws.api">
+ <resources>
+ <resource-root path="jsr181-api-1.0-MR1.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jws/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/mail/api/main/mail-1.4.2.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/mail/api/main/mail-1.4.2.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/mail/api/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/mail/api/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/mail/api/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="javax.mail.api">
+ <dependencies>
+ <module name="javax.activation.api" />
+ <module name="javax.api"/>
+ </dependencies>
+
+ <resources>
+ <resource-root path="mail-1.4.2.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/mail/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/management/j2ee/api/main/jboss-j2eemgmt-api_1.1_spec-1.0.0.Final.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/management/j2ee/api/main/jboss-j2eemgmt-api_1.1_spec-1.0.0.Final.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/management/j2ee/api/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/management/j2ee/api/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/management/j2ee/api/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="javax.management.j2ee.api">
+
+ <resources>
+ <resource-root path="jboss-j2eemgmt-api_1.1_spec-1.0.0.Final.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/management/j2ee/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/persistence/api/main/hibernate-jpa-2.0-api-1.0.1.Final.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/persistence/api/main/hibernate-jpa-2.0-api-1.0.1.Final.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/persistence/api/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/persistence/api/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/persistence/api/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="javax.persistence.api">
+ <dependencies>
+ <!-- PersistenceUnitInfo needs javax.sql.DataSource -->
+ <module name="javax.api" export="true"/>
+ </dependencies>
+
+ <resources>
+ <resource-root path="hibernate-jpa-2.0-api-1.0.1.Final.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/persistence/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/resource/api/main/jboss-connector-api_1.6_spec-1.0.0.Final.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/resource/api/main/jboss-connector-api_1.6_spec-1.0.0.Final.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/resource/api/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/resource/api/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/resource/api/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="javax.resource.api">
+ <dependencies>
+ <module name="javax.transaction.api" export="true"/>
+ <module name="javax.api" export="false">
+ <exports>
+ <include path="javax/naming"/>
+ </exports>
+ </module>
+ </dependencies>
+
+ <resources>
+ <resource-root path="jboss-connector-api_1.6_spec-1.0.0.Final.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/resource/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/rmi/api/main/jboss-rmi-api_1.0_spec-1.0.0.Final.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/rmi/api/main/jboss-rmi-api_1.0_spec-1.0.0.Final.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/rmi/api/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/rmi/api/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/rmi/api/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="javax.rmi.api">
+ <resources>
+ <resource-root path="jboss-rmi-api_1.0_spec-1.0.0.Final.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="org.omg.api"/>
+ </dependencies>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/rmi/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/auth/message/api/main/jboss-jaspi-api_1.0_spec-1.0.0.Final.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/auth/message/api/main/jboss-jaspi-api_1.0_spec-1.0.0.Final.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/auth/message/api/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/auth/message/api/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/auth/message/api/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="javax.security.auth.message.api">
+
+ <dependencies>
+ <!-- Needed for javax.security.auth -->
+ <module name="javax.api" export="false"/>
+ </dependencies>
+
+ <resources>
+ <resource-root path="jboss-jaspi-api_1.0_spec-1.0.0.Final.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/auth/message/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/jacc/api/main/jboss-jacc-api_1.4_spec-1.0.0.Final.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/jacc/api/main/jboss-jacc-api_1.4_spec-1.0.0.Final.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/jacc/api/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/jacc/api/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/jacc/api/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="javax.security.jacc.api">
+ <dependencies>
+ <module name="javax.servlet.api"/>
+ <module name="org.jboss.common-core"/>
+ </dependencies>
+
+ <resources>
+ <resource-root path="jboss-jacc-api_1.4_spec-1.0.0.Final.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/jacc/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/api/main/jbosgi-xservice.properties
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/api/main/jbosgi-xservice.properties (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/api/main/jbosgi-xservice.properties 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,2 @@
+Bundle-SymbolicName: javax.servlet.api
+Export-Package: javax.servlet;version=3.0,javax.servlet.annotation;version=3.0,javax.servlet.descriptor;version=3.0,javax.servlet.http;version=3.0
\ No newline at end of file
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/api/main/jbosgi-xservice.properties
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/api/main/jboss-servlet-api_3.0_spec-1.0.0.Final.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/api/main/jboss-servlet-api_3.0_spec-1.0.0.Final.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/api/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/api/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/api/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="javax.servlet.api">
+ <resources>
+ <resource-root path="jboss-servlet-api_3.0_spec-1.0.0.Final.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jsp/api/main/jboss-jsp-api_2.2_spec-1.0.0.Final.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jsp/api/main/jboss-jsp-api_2.2_spec-1.0.0.Final.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jsp/api/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jsp/api/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jsp/api/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="javax.servlet.jsp.api">
+ <dependencies>
+ <module name="javax.el.api" export="true"/>
+ <module name="javax.servlet.api" export="true"/>
+ </dependencies>
+
+ <resources>
+ <resource-root path="jboss-jsp-api_2.2_spec-1.0.0.Final.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jsp/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jstl/api/main/jboss-jstl-api_1.2_spec-1.0.0.Final.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jstl/api/main/jboss-jstl-api_1.2_spec-1.0.0.Final.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jstl/api/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jstl/api/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jstl/api/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="javax.servlet.jstl.api">
+ <dependencies>
+ <!-- org.xml.sax -->
+ <module name="javax.api" export="false"/>
+ <module name="javax.servlet.api" export="false"/>
+ <module name="javax.servlet.jsp.api" export="false"/>
+ <module name="org.apache.xalan" export="false"/>
+ </dependencies>
+
+ <resources>
+ <resource-root path="jboss-jstl-api_1.2_spec-1.0.0.Final.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jstl/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/transaction/api/main/jbosgi-xservice.properties
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/transaction/api/main/jbosgi-xservice.properties (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/transaction/api/main/jbosgi-xservice.properties 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,2 @@
+Bundle-SymbolicName: javax.transaction.api
+Export-Package: javax.transaction;version=1.1,javax.transaction.xa;version=1.1
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/transaction/api/main/jbosgi-xservice.properties
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/transaction/api/main/jboss-transaction-api_1.1_spec-1.0.0.Final.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/transaction/api/main/jboss-transaction-api_1.1_spec-1.0.0.Final.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/transaction/api/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/transaction/api/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/transaction/api/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="javax.transaction.api">
+ <resources>
+ <resource-root path="jboss-transaction-api_1.1_spec-1.0.0.Final.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/transaction/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/validation/api/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/validation/api/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/validation/api/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="javax.validation.api">
+ <resources>
+ <resource-root path="validation-api-1.0.0.GA.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="org.jboss.logging"/>
+ </dependencies>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/validation/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/validation/api/main/validation-api-1.0.0.GA.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/validation/api/main/validation-api-1.0.0.GA.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ws/rs/api/main/jboss-jaxrs-api_1.1_spec-1.0.0.Final.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ws/rs/api/main/jboss-jaxrs-api_1.1_spec-1.0.0.Final.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ws/rs/api/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ws/rs/api/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ws/rs/api/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="javax.ws.rs.api">
+ <resources>
+ <resource-root path="jboss-jaxrs-api_1.1_spec-1.0.0.Final.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ </dependencies>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ws/rs/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/bind/api/main/jboss-jaxb-api_2.2_spec-1.0.3.Final.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/bind/api/main/jboss-jaxb-api_2.2_spec-1.0.3.Final.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/bind/api/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/bind/api/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/bind/api/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="javax.xml.bind.api">
+
+
+ <dependencies>
+ <module name="javax.activation.api" export="true"/>
+ <module name="javax.xml.stream.api"/>
+ <module name="com.sun.xml.bind" services="import"/>
+ <module name="javax.api"/>
+ </dependencies>
+
+ <resources>
+ <resource-root path="jboss-jaxb-api_2.2_spec-1.0.3.Final.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/bind/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/jaxp-provider/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/jaxp-provider/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/jaxp-provider/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<!-- Aggregate module for all api implementations that make up JAXP
+ that we override -->
+<module xmlns="urn:jboss:module:1.0" name="javax.xml.jaxp-provider">
+ <dependencies>
+ <module name="org.apache.xalan" services="import"/>
+ <module name="org.apache.xerces" services="import"/>
+ <module name="org.codehaus.woodstox" services="import"/>
+ </dependencies>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/jaxp-provider/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/registry/api/main/jboss-jaxr-api_1.0_spec-1.0.0.Final.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/registry/api/main/jboss-jaxr-api_1.0_spec-1.0.0.Final.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/registry/api/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/registry/api/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/registry/api/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="javax.xml.registry.api">
+ <dependencies>
+ <module name="javax.activation.api" export="true"/>
+ </dependencies>
+
+ <resources>
+ <resource-root path="jboss-jaxr-api_1.0_spec-1.0.0.Final.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/registry/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/rpc/api/main/jboss-jaxrpc-api_1.1_spec-1.0.0.Final.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/rpc/api/main/jboss-jaxrpc-api_1.1_spec-1.0.0.Final.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/rpc/api/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/rpc/api/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/rpc/api/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="javax.xml.rpc.api">
+ <dependencies>
+ <module name="javax.api" />
+ <module name="javax.xml.soap.api" export="true"/>
+ <!-- javax.xml.namespace.QName -->
+ <module name="javax.api"/>
+ <!-- javax.servlet.ServletContext -->
+ <module name="javax.servlet.api"/>
+ </dependencies>
+
+ <resources>
+ <resource-root path="jboss-jaxrpc-api_1.1_spec-1.0.0.Final.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/rpc/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/soap/api/main/jboss-saaj-api_1.3_spec-1.0.0.Final.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/soap/api/main/jboss-saaj-api_1.3_spec-1.0.0.Final.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/soap/api/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/soap/api/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/soap/api/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="javax.xml.soap.api">
+ <dependencies>
+ <module name="javax.activation.api" export="true"/>
+ <module name="javax.api"/>
+ <module name="org.jboss.modules"/>
+ </dependencies>
+
+ <resources>
+ <resource-root path="jboss-saaj-api_1.3_spec-1.0.0.Final.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/soap/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/stream/api/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/stream/api/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/stream/api/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="javax.xml.stream.api">
+
+ <dependencies>
+ <module name="system" export="false">
+ <exports>
+ <include-set>
+ <path name="javax/xml/stream"/>
+ <path name="javax/xml/stream/events"/>
+ <path name="javax/xml/stream/util"/>
+ </include-set>
+ </exports>
+ </module>
+ </dependencies>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/stream/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/ws/api/main/jboss-jaxws-api_2.2_spec-1.0.0.Final.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/ws/api/main/jboss-jaxws-api_2.2_spec-1.0.0.Final.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/ws/api/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/ws/api/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/ws/api/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="javax.xml.ws.api">
+ <dependencies>
+ <module name="javax.xml.bind.api" export="true"/>
+ <module name="javax.xml.soap.api" export="true"/>
+ <module name="javax.api"/>
+ <module name="org.jboss.modules"/>
+ </dependencies>
+
+ <resources>
+ <resource-root path="jboss-jaxws-api_2.2_spec-1.0.0.Final.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/ws/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/jline/main/jansi-1.5.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/jline/main/jansi-1.5.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/jline/main/jline-2.5.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/jline/main/jline-2.5.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/jline/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/jline/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/jline/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="jline">
+ <resources>
+ <resource-root path="jline-2.5.jar"/>
+ <resource-root path="jansi-1.5.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ </dependencies>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/jline/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/logging/main/commons-logging-1.1.1.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/logging/main/commons-logging-1.1.1.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/logging/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/logging/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/logging/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="org.apache.commons.logging">
+ <resources>
+ <resource-root path="commons-logging-1.1.1.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ </dependencies>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/logging/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/httpcomponents/main/httpclient-4.0.1.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/httpcomponents/main/httpclient-4.0.1.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/httpcomponents/main/httpcore-4.0.1.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/httpcomponents/main/httpcore-4.0.1.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/httpcomponents/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/httpcomponents/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/httpcomponents/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2011, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="org.apache.httpcomponents">
+ <resources>
+ <resource-root path="httpclient-4.0.1.jar"/>
+ <resource-root path="httpcore-4.0.1.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="org.apache.commons.logging"/>
+ <module name="javax.api"/>
+ </dependencies>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/httpcomponents/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/log4j/main/log4j-1.2.16.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/log4j/main/log4j-1.2.16.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/log4j/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/log4j/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/log4j/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="org.apache.log4j">
+ <resources>
+ <resource-root path="log4j-1.2.16.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api"/>
+ </dependencies>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/log4j/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/common-3.3.0-v20070426.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/common-3.3.0-v20070426.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/contenttype-3.2.100-v20070319.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/contenttype-3.2.100-v20070319.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/core-3.3.0-v_771.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/core-3.3.0-v_771.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/jobs-3.3.0-v20070423.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/jobs-3.3.0-v20070423.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="org.eclipse.javaparser">
+ <resources>
+ <resource-root path="contenttype-3.2.100-v20070319.jar"/>
+ <resource-root path="jobs-3.3.0-v20070423.jar"/>
+ <resource-root path="resources-3.3.0-v20070604.jar"/>
+ <resource-root path="runtime-3.3.100-v20070530.jar"/>
+ <resource-root path="core-3.3.0-v_771.jar"/>
+ <resource-root path="osgi-3.4.3.R34x_v20081215-1030.jar"/>
+ <resource-root path="common-3.3.0-v20070426.jar"/>
+ <resource-root path="preferences-3.2.100-v20070522.jar"/>
+ <resource-root path="text-3.3.0-v20070606-0010.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api" />
+ </dependencies>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/osgi-3.4.3.R34x_v20081215-1030.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/osgi-3.4.3.R34x_v20081215-1030.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/preferences-3.2.100-v20070522.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/preferences-3.2.100-v20070522.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/resources-3.3.0-v20070604.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/resources-3.3.0-v20070604.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/runtime-3.3.100-v20070530.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/runtime-3.3.100-v20070530.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/text-3.3.0-v20070606-0010.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/text-3.3.0-v20070606-0010.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/javassist/main/javassist-3.12.1.GA.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/javassist/main/javassist-3.12.1.GA.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/javassist/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/javassist/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/javassist/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="org.javassist">
+ <resources>
+ <resource-root path="javassist-3.12.1.GA.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ </dependencies>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/javassist/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/event-bus/main/forge-event-bus-1.0.0-SNAPSHOT.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/event-bus/main/forge-event-bus-1.0.0-SNAPSHOT.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/event-bus/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/event-bus/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/event-bus/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<module xmlns="urn:jboss:module:1.0" name="org.jboss.forge.event-bus">
+
+ <resources>
+ <resource-root path="forge-event-bus-1.0.0-SNAPSHOT.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api" />
+ <module name="javax.enterprise.api" />
+ </dependencies>
+
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/event-bus/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/args4j-2.0.12.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/args4j-2.0.12.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/forge-git-tools-1.0.0-SNAPSHOT.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/forge-git-tools-1.0.0-SNAPSHOT.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/jsch-0.1.41.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/jsch-0.1.41.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<module xmlns="urn:jboss:module:1.0" name="org.jboss.forge.git">
+
+ <resources>
+ <resource-root path="args4j-2.0.12.jar"/>
+ <resource-root path="jsch-0.1.41.jar"/>
+ <resource-root path="forge-git-tools-1.0.0-SNAPSHOT.jar"/>
+ <resource-root path="org.eclipse.jgit-0.10.1.jar"/>
+ <resource-root path="org.eclipse.jgit.console-0.10.1.jar"/>
+ <resource-root path="org.eclipse.jgit.iplog-0.10.1.jar"/>
+ <resource-root path="org.eclipse.jgit.pgm-0.10.1.jar"/>
+ <resource-root path="org.eclipse.jgit.ui-0.10.1.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api" />
+ <module name="org.jboss.forge.shell.api"/>
+ </dependencies>
+
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/org.eclipse.jgit-0.10.1.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/org.eclipse.jgit-0.10.1.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/org.eclipse.jgit.console-0.10.1.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/org.eclipse.jgit.console-0.10.1.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/org.eclipse.jgit.iplog-0.10.1.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/org.eclipse.jgit.iplog-0.10.1.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/org.eclipse.jgit.pgm-0.10.1.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/org.eclipse.jgit.pgm-0.10.1.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/org.eclipse.jgit.ui-0.10.1.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/org.eclipse.jgit.ui-0.10.1.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/api/main/forge-javaee-api-1.0.0-SNAPSHOT.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/api/main/forge-javaee-api-1.0.0-SNAPSHOT.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/api/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/api/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/api/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<module xmlns="urn:jboss:module:1.0" name="org.jboss.forge.javaee.api">
+
+ <resources>
+ <resource-root path="forge-javaee-api-1.0.0-SNAPSHOT.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javaee.api" export="true" />
+ <module name="org.jboss.forge.shell.api" />
+ <module name="org.jboss.shrinkwrap.descriptors" services="export" export="true" />
+
+ <module name="javax.api" />
+ </dependencies>
+
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/impl/main/forge-javaee-impl-1.0.0-SNAPSHOT.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/impl/main/forge-javaee-impl-1.0.0-SNAPSHOT.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/impl/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/impl/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/impl/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<module xmlns="urn:jboss:module:1.0" name="org.jboss.forge.javaee.impl">
+
+ <resources>
+ <resource-root path="forge-javaee-impl-1.0.0-SNAPSHOT.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="org.jboss.seam.render" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.forge.shell.api" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.forge.javaee.api" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.slf4j" />
+ <module name="org.slf4j.ext" />
+
+ <module name="javax.api" />
+ </dependencies>
+
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/impl/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/main/forge-dev-plugins-1.0.0-SNAPSHOT.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/main/forge-dev-plugins-1.0.0-SNAPSHOT.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/main/forge-shell-1.0.0-SNAPSHOT.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/main/forge-shell-1.0.0-SNAPSHOT.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,137 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<module xmlns="urn:jboss:module:1.0" name="org.jboss.forge">
+
+ <main-class name="org.jboss.forge.shell.Bootstrap" />
+
+ <resources>
+ <resource-root path="forge-shell-1.0.0-SNAPSHOT.jar"/>
+ <resource-root path="forge-dev-plugins-1.0.0-SNAPSHOT.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="com.sun.xml.bind" />
+
+ <module name="javax.annotation.api" />
+ <module name="jline" />
+
+ <module name="org.apache.httpcomponents" />
+ <module name="org.javassist" />
+ <module name="org.jboss.interceptor" />
+ <module name="org.jboss.modules" />
+
+
+ <module name="org.jboss.forge.javaee.api" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.forge.javaee.impl" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.forge.git" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.forge.event-bus" services="import"
+ export="true">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.forge.maven.api" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.forge.maven.model" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.forge.parser.java.api" />
+ <module name="org.jboss.forge.parser.java.impl" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.forge.parser.xml" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.forge.scaffold.api" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.forge.scaffold.impl" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.forge.shell.api" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.seam.render" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.solder" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.tools.forge.runtime.ext" services="import"
+ optional="true">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.weld.core" services="import" />
+ <module name="org.jboss.weld.spi" services="import" />
+ <module name="org.jboss.weld.api" services="import" />
+
+ <module name="org.mvel" />
+ <module name="org.yaml" />
+ <module name="sun.misc" />
+
+ <module name="javax.api" />
+ </dependencies>
+
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/aether-api-1.11.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/aether-api-1.11.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/aether-connector-wagon-1.11.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/aether-connector-wagon-1.11.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/aether-impl-1.11.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/aether-impl-1.11.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/aether-spi-1.11.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/aether-spi-1.11.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/aether-util-1.11.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/aether-util-1.11.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/commons-cli-1.2.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/commons-cli-1.2.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/forge-maven-api-1.0.0-SNAPSHOT.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/forge-maven-api-1.0.0-SNAPSHOT.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-aether-provider-3.0.3.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-aether-provider-3.0.3.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-artifact-3.0.3.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-artifact-3.0.3.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-compat-3.0.3.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-compat-3.0.3.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-core-3.0.3.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-core-3.0.3.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-embedder-3.0.3.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-embedder-3.0.3.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-model-3.0.3.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-model-3.0.3.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-model-builder-3.0.3.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-model-builder-3.0.3.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-plugin-api-3.0.3.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-plugin-api-3.0.3.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-repository-metadata-3.0.3.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-repository-metadata-3.0.3.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-settings-3.0.3.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-settings-3.0.3.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-settings-builder-3.0.3.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-settings-builder-3.0.3.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,45 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<module xmlns="urn:jboss:module:1.0" name="org.jboss.forge.maven.api">
+
+ <resources>
+ <resource-root path="forge-maven-api-1.0.0-SNAPSHOT.jar"/>
+ <resource-root path="commons-cli-1.2.jar"/>
+ <resource-root path="maven-aether-provider-3.0.3.jar"/>
+ <resource-root path="maven-artifact-3.0.3.jar"/>
+ <resource-root path="maven-compat-3.0.3.jar"/>
+ <resource-root path="maven-core-3.0.3.jar"/>
+ <resource-root path="maven-embedder-3.0.3.jar"/>
+ <resource-root path="maven-model-3.0.3.jar"/>
+ <resource-root path="maven-model-builder-3.0.3.jar"/>
+ <resource-root path="maven-plugin-api-3.0.3.jar"/>
+ <resource-root path="maven-repository-metadata-3.0.3.jar"/>
+ <resource-root path="maven-settings-3.0.3.jar"/>
+ <resource-root path="maven-settings-builder-3.0.3.jar"/>
+ <resource-root path="wagon-file-2.0.jar"/>
+ <resource-root path="wagon-http-lightweight-2.0.jar"/>
+ <resource-root path="wagon-http-shared4-2.0.jar"/>
+ <resource-root path="wagon-provider-api-1.0-beta-7.jar"/>
+ <resource-root path="plexus-classworlds-2.4.jar"/>
+ <resource-root path="plexus-component-annotations-1.5.5.jar"/>
+ <resource-root path="plexus-interpolation-1.14.jar"/>
+ <resource-root path="plexus-utils-2.0.6.jar"/>
+ <resource-root path="aether-api-1.11.jar"/>
+ <resource-root path="aether-connector-wagon-1.11.jar"/>
+ <resource-root path="aether-impl-1.11.jar"/>
+ <resource-root path="aether-spi-1.11.jar"/>
+ <resource-root path="aether-util-1.11.jar"/>
+ <resource-root path="plexus-cipher-1.4.jar"/>
+ <resource-root path="plexus-sec-dispatcher-1.3.jar"/>
+ <resource-root path="sisu-inject-bean-2.1.1.jar"/>
+ <resource-root path="sisu-inject-plexus-2.1.1.jar"/>
+ <resource-root path="sisu-guice-2.9.4-no_aop.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api" />
+ <module name="org.jboss.forge.shell.api" />
+ </dependencies>
+
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/plexus-cipher-1.4.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/plexus-cipher-1.4.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/plexus-classworlds-2.4.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/plexus-classworlds-2.4.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/plexus-component-annotations-1.5.5.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/plexus-component-annotations-1.5.5.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/plexus-interpolation-1.14.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/plexus-interpolation-1.14.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/plexus-sec-dispatcher-1.3.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/plexus-sec-dispatcher-1.3.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/plexus-utils-2.0.6.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/plexus-utils-2.0.6.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/sisu-guice-2.9.4-no_aop.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/sisu-guice-2.9.4-no_aop.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/sisu-inject-bean-2.1.1.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/sisu-inject-bean-2.1.1.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/sisu-inject-plexus-2.1.1.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/sisu-inject-plexus-2.1.1.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/wagon-file-2.0.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/wagon-file-2.0.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/wagon-http-lightweight-2.0.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/wagon-http-lightweight-2.0.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/wagon-http-shared4-2.0.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/wagon-http-shared4-2.0.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/wagon-provider-api-1.0-beta-7.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/wagon-provider-api-1.0-beta-7.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/model/main/forge-project-model-maven-1.0.0-SNAPSHOT.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/model/main/forge-project-model-maven-1.0.0-SNAPSHOT.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/model/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/model/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/model/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<module xmlns="urn:jboss:module:1.0" name="org.jboss.forge.maven.model">
+
+ <resources>
+ <resource-root path="forge-project-model-maven-1.0.0-SNAPSHOT.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api" />
+ <module name="org.jboss.forge.shell.api"/>
+ <module name="org.jboss.forge.maven.api" services="import" />
+ </dependencies>
+
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/model/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/api/main/forge-parser-java-api-1.0.0-SNAPSHOT.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/api/main/forge-parser-java-api-1.0.0-SNAPSHOT.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/api/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/api/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/api/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<module xmlns="urn:jboss:module:1.0" name="org.jboss.forge.parser.java.api">
+
+ <resources>
+ <resource-root path="forge-parser-java-api-1.0.0-SNAPSHOT.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api" />
+ </dependencies>
+
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/impl/main/forge-parser-java-1.0.0-SNAPSHOT.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/impl/main/forge-parser-java-1.0.0-SNAPSHOT.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/impl/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/impl/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/impl/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<module xmlns="urn:jboss:module:1.0" name="org.jboss.forge.parser.java.impl">
+
+ <resources>
+ <resource-root path="forge-parser-java-1.0.0-SNAPSHOT.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="org.eclipse.javaparser" />
+
+ <module name="org.jboss.forge.parser.java.api" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="javax.api" />
+ </dependencies>
+
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/impl/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/xml/main/forge-parser-xml-1.0.0-SNAPSHOT.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/xml/main/forge-parser-xml-1.0.0-SNAPSHOT.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/xml/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/xml/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/xml/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<module xmlns="urn:jboss:module:1.0" name="org.jboss.forge.parser.xml">
+
+ <resources>
+ <resource-root path="forge-parser-xml-1.0.0-SNAPSHOT.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api" />
+ </dependencies>
+
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/xml/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/api/main/forge-scaffold-api-1.0.0-SNAPSHOT.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/api/main/forge-scaffold-api-1.0.0-SNAPSHOT.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/api/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/api/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/api/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<module xmlns="urn:jboss:module:1.0" name="org.jboss.forge.scaffold.api">
+
+ <resources>
+ <resource-root path="forge-scaffold-api-1.0.0-SNAPSHOT.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="org.jboss.forge.shell.api" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="javax.api" />
+ </dependencies>
+
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/impl/main/forge-scaffold-faces-1.0.0-SNAPSHOT.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/impl/main/forge-scaffold-faces-1.0.0-SNAPSHOT.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/impl/main/forge-scaffold-plugins-1.0.0-SNAPSHOT.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/impl/main/forge-scaffold-plugins-1.0.0-SNAPSHOT.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/impl/main/metawidget-all-1.35-SNAPSHOT.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/impl/main/metawidget-all-1.35-SNAPSHOT.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/impl/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/impl/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/impl/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,52 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<module xmlns="urn:jboss:module:1.0" name="org.jboss.forge.scaffold.impl">
+
+ <resources>
+ <resource-root path="forge-scaffold-plugins-1.0.0-SNAPSHOT.jar"/>
+ <resource-root path="forge-scaffold-faces-1.0.0-SNAPSHOT.jar"/>
+ <resource-root path="metawidget-all-1.35-SNAPSHOT.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="org.jboss.forge.shell.api" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.forge.javaee.api" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.forge.javaee.impl" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.forge.scaffold.api" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.seam.render" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.mvel" />
+ <module name="javax.api" />
+ </dependencies>
+
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/impl/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/shell/api/main/forge-shell-api-1.0.0-SNAPSHOT.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/shell/api/main/forge-shell-api-1.0.0-SNAPSHOT.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/shell/api/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/shell/api/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/shell/api/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<module xmlns="urn:jboss:module:1.0" name="org.jboss.forge.shell.api">
+
+ <resources>
+ <resource-root path="forge-shell-api-1.0.0-SNAPSHOT.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.annotation.api" export="true" />
+ <module name="javax.enterprise.api" export="true" />
+
+ <module name="org.javassist" export="true" />
+ <module name="org.jboss.interceptor" export="true" />
+ <module name="org.jboss.weld.core" export="true" />
+
+ <module name="org.jboss.forge.parser.java.api" export="true" services="export">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.forge.parser.java.impl" export="true" services="export">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.forge.parser.xml" export="true" services="export">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.forge.event-bus" export="true" />
+
+ <module name="org.jboss.solder" export="true" />
+
+ <module name="javax.api" />
+ </dependencies>
+
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/shell/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/main/jboss-interceptor-core-2.0.0.CR1.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/main/jboss-interceptor-core-2.0.0.CR1.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="org.jboss.interceptor">
+
+ <resources>
+ <resource-root path="jboss-interceptor-core-2.0.0.CR1.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="com.google.guava" />
+ <module name="javax.interceptor.api" />
+ <module name="org.javassist"/>
+ <module name="org.jboss.interceptor.spi" />
+ <module name="org.slf4j" />
+ </dependencies>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/spi/main/jboss-interceptor-spi-2.0.0.CR1.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/spi/main/jboss-interceptor-spi-2.0.0.CR1.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/spi/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/spi/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/spi/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="org.jboss.interceptor.spi">
+
+ <resources>
+ <resource-root path="jboss-interceptor-spi-2.0.0.CR1.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.interceptor.api" />
+ <module name="org.javassist"/>
+ </dependencies>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/spi/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/logmanager/main/jboss-logmanager-1.2.0.GA.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/logmanager/main/jboss-logmanager-1.2.0.GA.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/logmanager/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/logmanager/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/logmanager/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="org.jboss.logmanager">
+ <resources>
+ <resource-root path="jboss-logmanager-1.2.0.GA.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies/>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/logmanager/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/modules/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/modules/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/modules/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="org.jboss.modules">
+ <dependencies>
+ <module name="system" export="false">
+ <exports>
+ <include-set>
+ <path name="org/jboss/modules"/>
+ <path name="org/jboss/modules/log"/>
+ <path name="org/jboss/modules/filter"/>
+ <path name="org/jboss/modules/ref"/>
+ <path name="org/jboss/modules/management"/>
+ </include-set>
+ </exports>
+ </module>
+ </dependencies>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/modules/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/seam/render/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/seam/render/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/seam/render/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!-- ~ JBoss, Home of Professional Open Source. ~ Copyright 2011, Red Hat,
+ Inc., and individual contributors ~ as indicated by the @author tags. See
+ the copyright.txt file in the ~ distribution for a full listing of individual
+ contributors. ~ ~ This is free software; you can redistribute it and/or modify
+ it ~ under the terms of the GNU Lesser General Public License as ~ published
+ by the Free Software Foundation; either version 2.1 of ~ the License, or
+ (at your option) any later version. ~ ~ This software is distributed in the
+ hope that it will be useful, ~ but WITHOUT ANY WARRANTY; without even the
+ implied warranty of ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ See the GNU ~ Lesser General Public License for more details. ~ ~ You should
+ have received a copy of the GNU Lesser General Public ~ License along with
+ this software; if not, write to the Free ~ Software Foundation, Inc., 51
+ Franklin St, Fifth Floor, Boston, MA ~ 02110-1301 USA, or see the FSF site:
+ http://www.fsf.org. -->
+
+<module xmlns="urn:jboss:module:1.0" name="org.jboss.seam.render">
+ <resources>
+ <resource-root path="seam-render-1.0.0-SNAPSHOT.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.enterprise.api" />
+ <module name="org.jboss.forge" />
+ <module name="org.jboss.solder" />
+ <module name="org.mvel" />
+ <module name="javax.api" />
+ </dependencies>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/seam/render/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/seam/render/main/seam-render-1.0.0-SNAPSHOT.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/seam/render/main/seam-render-1.0.0-SNAPSHOT.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/shrinkwrap/descriptors/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/shrinkwrap/descriptors/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/shrinkwrap/descriptors/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="org.jboss.shrinkwrap.descriptors">
+ <resources>
+ <resource-root path="shrinkwrap-descriptors-api-1.1.0-beta-1.jar"/>
+ <resource-root path="shrinkwrap-descriptors-impl-1.1.0-beta-1.jar"/>
+ <resource-root path="shrinkwrap-descriptors-spi-1.1.0-beta-1.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api" />
+ </dependencies>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/shrinkwrap/descriptors/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/shrinkwrap/descriptors/main/shrinkwrap-descriptors-api-1.1.0-beta-1.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/shrinkwrap/descriptors/main/shrinkwrap-descriptors-api-1.1.0-beta-1.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/shrinkwrap/descriptors/main/shrinkwrap-descriptors-impl-1.1.0-beta-1.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/shrinkwrap/descriptors/main/shrinkwrap-descriptors-impl-1.1.0-beta-1.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/shrinkwrap/descriptors/main/shrinkwrap-descriptors-spi-1.1.0-beta-1.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/shrinkwrap/descriptors/main/shrinkwrap-descriptors-spi-1.1.0-beta-1.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/solder/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/solder/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/solder/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!-- ~ JBoss, Home of Professional Open Source. ~ Copyright 2010, Red Hat,
+ Inc., and individual contributors ~ as indicated by the @author tags. See
+ the copyright.txt file in the ~ distribution for a full listing of individual
+ contributors. ~ ~ This is free software; you can redistribute it and/or modify
+ it ~ under the terms of the GNU Lesser General Public License as ~ published
+ by the Free Software Foundation; either version 2.1 of ~ the License, or
+ (at your option) any later version. ~ ~ This software is distributed in the
+ hope that it will be useful, ~ but WITHOUT ANY WARRANTY; without even the
+ implied warranty of ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ See the GNU ~ Lesser General Public License for more details. ~ ~ You should
+ have received a copy of the GNU Lesser General Public ~ License along with
+ this software; if not, write to the Free ~ Software Foundation, Inc., 51
+ Franklin St, Fifth Floor, Boston, MA ~ 02110-1301 USA, or see the FSF site:
+ http://www.fsf.org. -->
+
+<module xmlns="urn:jboss:module:1.0" name="org.jboss.solder">
+ <resources>
+ <resource-root path="solder-api-3.1.0.Beta3.jar"/>
+ <resource-root path="solder-impl-3.1.0.Beta3.jar"/>
+ <resource-root path="solder-logging-3.1.0.Beta3.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.annotation.api" />
+ <module name="javax.el.api" />
+ <module name="javax.enterprise.api" />
+ <module name="javax.interceptor.api" />
+ <module name="javax.servlet.api" />
+ <module name="org.javassist" />
+ <module name="org.jboss.interceptor" />
+ <module name="org.jboss.logmanager" />
+ <module name="org.jboss.weld.core" />
+
+ <module name="javax.api" />
+ </dependencies>
+
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/solder/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/solder/main/solder-api-3.1.0.Beta3.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/solder/main/solder-api-3.1.0.Beta3.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/solder/main/solder-impl-3.1.0.Beta3.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/solder/main/solder-impl-3.1.0.Beta3.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/solder/main/solder-logging-3.1.0.Beta3.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/solder/main/solder-logging-3.1.0.Beta3.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/api/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/api/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/api/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="org.jboss.weld.api">
+
+ <resources>
+ <resource-root path="weld-api-1.1.Beta2.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api"/>
+ <module name="javax.enterprise.api"/>
+ <module name="javax.inject.api"/>
+ <module name="javax.persistence.api"/>
+ <module name="javax.interceptor.api"/>
+ <module name="javax.servlet.api"/>
+ </dependencies>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/api/main/weld-api-1.1.Beta2.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/api/main/weld-api-1.1.Beta2.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/core/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/core/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/core/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,55 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="org.jboss.weld.core">
+
+ <resources>
+ <resource-root path="weld-core-1.1.2.Final.jar"/>
+ <resource-root path="weld-se-core-1.1.2.Final.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="ch.qos.cal10n" />
+ <module name="com.google.guava"/>
+ <module name="javax.api"/>
+ <module name="javax.annotation.api"/>
+ <module name="javax.el.api" />
+ <module name="javax.enterprise.api"/>
+ <module name="javax.faces.api"/>
+ <module name="javax.inject.api"/>
+ <module name="javax.interceptor.api"/>
+ <module name="javax.persistence.api"/>
+ <module name="javax.servlet.api"/>
+ <module name="javax.transaction.api"/>
+ <module name="javax.validation.api"/>
+ <module name="org.javassist"/>
+ <module name="org.jboss.interceptor"/>
+ <module name="org.jboss.interceptor.spi"/>
+ <module name="org.jboss.weld.api" />
+ <module name="org.jboss.weld.spi" />
+ <module name="org.slf4j" />
+ <module name="org.slf4j.ext" />
+ </dependencies>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/core/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/core/main/weld-core-1.1.2.Final.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/core/main/weld-core-1.1.2.Final.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/core/main/weld-se-core-1.1.2.Final.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/core/main/weld-se-core-1.1.2.Final.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/spi/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/spi/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/spi/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="org.jboss.weld.spi">
+
+ <resources>
+ <resource-root path="weld-spi-1.1.Beta2.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.annotation.api"/>
+ <module name="javax.api"/>
+ <module name="javax.enterprise.api"/>
+ <module name="javax.inject.api"/>
+ <module name="javax.persistence.api"/>
+ <module name="javax.servlet.api"/>
+ <module name="javax.validation.api"/>
+ <module name="org.jboss.weld.api"/>
+ </dependencies>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/spi/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/spi/main/weld-spi-1.1.Beta2.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/spi/main/weld-spi-1.1.Beta2.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/mvel/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/mvel/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/mvel/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="org.mvel">
+ <resources>
+ <resource-root path="mvel2-2.1.Beta7.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api" export="false"/>
+ </dependencies>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/mvel/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/mvel/main/mvel2-2.1.Beta7.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/mvel/main/mvel2-2.1.Beta7.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/ext/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/ext/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/ext/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="org.slf4j.ext">
+ <resources>
+ <resource-root path="slf4j-ext-1.5.10.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="ch.qos.cal10n" />
+ <module name="org.slf4j"/>
+ <module name="org.jboss.logmanager"/>
+ </dependencies>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/ext/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/ext/main/slf4j-ext-1.5.10.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/ext/main/slf4j-ext-1.5.10.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/impl/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/impl/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/impl/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="org.slf4j.impl">
+ <resources>
+ <resource-root path="slf4j-jboss-logmanager-1.0.0.CR4.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="org.slf4j"/>
+ <module name="org.jboss.logmanager"/>
+ </dependencies>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/impl/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/impl/main/slf4j-jboss-logmanager-1.0.0.CR4.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/impl/main/slf4j-jboss-logmanager-1.0.0.CR4.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="org.slf4j">
+ <resources>
+ <resource-root path="slf4j-api-1.5.10.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="org.slf4j.impl"/>
+ </dependencies>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/main/slf4j-api-1.5.10.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/main/slf4j-api-1.5.10.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/yaml/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/yaml/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/yaml/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="org.yaml">
+ <resources>
+ <resource-root path="snakeyaml-1.7.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api" export="false"/>
+ </dependencies>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/yaml/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/yaml/main/snakeyaml-1.7.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/org/yaml/main/snakeyaml-1.7.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/sun/misc/main/module.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/sun/misc/main/module.xml (rev 0)
+++ branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/sun/misc/main/module.xml 2011-12-07 21:47:30 UTC (rev 37081)
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+<module xmlns="urn:jboss:module:1.0" name="sun.misc">
+ <resources>
+ </resources>
+ <dependencies>
+ <module name="system" export="false" services="import">
+ <exports>
+ <include-set>
+ <path name="sun/misc"/>
+ </include-set>
+ </exports>
+ </module>
+ </dependencies>
+</module>
Property changes on: branches/jbosstools-3.3.0.M5/forge/plugins/org.jboss.tools.forge.runtime/modules/sun/misc/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
14 years