JBoss Tools SVN: r39800 - trunk/vpe/plugins/org.jboss.tools.vpe.browsersim.eclipse/src/org/jboss/tools/vpe/browsersim/eclipse/util.
by jbosstools-commits@lists.jboss.org
Author: yradtsevich
Date: 2012-03-23 10:57:46 -0400 (Fri, 23 Mar 2012)
New Revision: 39800
Modified:
trunk/vpe/plugins/org.jboss.tools.vpe.browsersim.eclipse/src/org/jboss/tools/vpe/browsersim/eclipse/util/BrowserSimLauncher.java
Log:
https://issues.jboss.org/browse/JBIDE-11179 : BrowserSim - add a view source option
- converted output streams to char format
Modified: trunk/vpe/plugins/org.jboss.tools.vpe.browsersim.eclipse/src/org/jboss/tools/vpe/browsersim/eclipse/util/BrowserSimLauncher.java
===================================================================
--- trunk/vpe/plugins/org.jboss.tools.vpe.browsersim.eclipse/src/org/jboss/tools/vpe/browsersim/eclipse/util/BrowserSimLauncher.java 2012-03-23 13:57:07 UTC (rev 39799)
+++ trunk/vpe/plugins/org.jboss.tools.vpe.browsersim.eclipse/src/org/jboss/tools/vpe/browsersim/eclipse/util/BrowserSimLauncher.java 2012-03-23 14:57:46 UTC (rev 39800)
@@ -10,9 +10,13 @@
******************************************************************************/
package org.jboss.tools.vpe.browsersim.eclipse.util;
+import java.io.BufferedInputStream;
+import java.io.BufferedReader;
+import java.io.BufferedWriter;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
+import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.List;
@@ -57,14 +61,17 @@
Process browserSimProcess = processBuilder.start();
- final InputStream errorStream = browserSimProcess.getErrorStream();
- final InputStream inputStream = browserSimProcess.getInputStream();
+ final InputStreamReader errorReader = new InputStreamReader(browserSimProcess.getErrorStream());
+ final InputStreamReader inputReader = new InputStreamReader(browserSimProcess.getInputStream());
+
new Thread() {
public void run() {
- int nextByte;
+ int nextCharInt;
+ String nextLine;
try {
- while ((nextByte = inputStream.read()) >= 0) {
- System.out.write(nextByte);
+ while ((nextCharInt = inputReader.read()) >= 0) {
+ char nextChar = (char) nextCharInt;
+ System.out.print(nextChar);
}
} catch (IOException e) {
e.printStackTrace();
@@ -73,10 +80,10 @@
}.start();
new Thread() {
public void run() {
- int nextByte;
+ int nextCharInt;
try {
- while ((nextByte = errorStream.read()) >= 0) {
- System.err.write(nextByte);
+ while ((nextCharInt = errorReader.read()) >= 0) {
+ System.err.print((char) nextCharInt);
}
} catch (IOException e) {
e.printStackTrace();
14 years
JBoss Tools SVN: r39799 - in trunk/ws/plugins/org.jboss.tools.ws.jaxrs.core/src/org/jboss/tools/ws/jaxrs/core: jdt and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: xcoulon
Date: 2012-03-23 09:57:07 -0400 (Fri, 23 Mar 2012)
New Revision: 39799
Modified:
trunk/ws/plugins/org.jboss.tools.ws.jaxrs.core/src/org/jboss/tools/ws/jaxrs/core/internal/metamodel/domain/JaxrsElementFactory.java
trunk/ws/plugins/org.jboss.tools.ws.jaxrs.core/src/org/jboss/tools/ws/jaxrs/core/jdt/JdtUtils.java
Log:
Fixed - JBIDE-11379
Failed to build or refresh the JAX-RS metamodel message while editiing package-info.java
Modified: trunk/ws/plugins/org.jboss.tools.ws.jaxrs.core/src/org/jboss/tools/ws/jaxrs/core/internal/metamodel/domain/JaxrsElementFactory.java
===================================================================
--- trunk/ws/plugins/org.jboss.tools.ws.jaxrs.core/src/org/jboss/tools/ws/jaxrs/core/internal/metamodel/domain/JaxrsElementFactory.java 2012-03-23 13:56:06 UTC (rev 39798)
+++ trunk/ws/plugins/org.jboss.tools.ws.jaxrs.core/src/org/jboss/tools/ws/jaxrs/core/internal/metamodel/domain/JaxrsElementFactory.java 2012-03-23 13:57:07 UTC (rev 39799)
@@ -67,6 +67,9 @@
public JaxrsJavaElement<?> createElement(IAnnotation javaAnnotation, CompilationUnit ast, JaxrsMetamodel metamodel)
throws CoreException {
Annotation annotation = JdtUtils.resolveAnnotation(javaAnnotation, ast);
+ if(annotation == null) { // annotation on package declaration are ignored
+ return null;
+ }
final String annotationName = annotation.getName();
if (annotationName.equals(HttpMethod.class.getName())) {
final JaxrsHttpMethod httpMethod = createHttpMethod(annotation, ast, metamodel);
Modified: trunk/ws/plugins/org.jboss.tools.ws.jaxrs.core/src/org/jboss/tools/ws/jaxrs/core/jdt/JdtUtils.java
===================================================================
--- trunk/ws/plugins/org.jboss.tools.ws.jaxrs.core/src/org/jboss/tools/ws/jaxrs/core/jdt/JdtUtils.java 2012-03-23 13:56:06 UTC (rev 39798)
+++ trunk/ws/plugins/org.jboss.tools.ws.jaxrs.core/src/org/jboss/tools/ws/jaxrs/core/jdt/JdtUtils.java 2012-03-23 13:57:07 UTC (rev 39799)
@@ -89,8 +89,10 @@
public static ICompilationUnit getCompilationUnit(final IJavaElement element) {
if (element instanceof IMember) {
return ((IMember) element).getCompilationUnit();
- } else if (element instanceof IAnnotation) {
- return ((IMember) ((IAnnotation) element).getParent()).getCompilationUnit();
+ } else if (element instanceof IAnnotation
+ // ignore annotations on PackageDeclaration, such as in package-info.java
+ && element.getParent() instanceof IMember) {
+ return ((IMember) (element.getParent())).getCompilationUnit();
} else if (element instanceof ICompilationUnit) {
return (ICompilationUnit) element;
}
@@ -380,7 +382,11 @@
*/
public static Annotation resolveAnnotation(IAnnotation javaAnnotation, CompilationUnit ast)
throws JavaModelException {
- return resolveAnnotation((IMember) javaAnnotation.getParent(), ast, javaAnnotation.getElementName());
+ if (javaAnnotation.getParent() instanceof IMember) {
+ return resolveAnnotation((IMember) javaAnnotation.getParent(), ast,
+ javaAnnotation.getElementName());
+ }
+ return null;
}
private static Map<String, List<String>> resolveAnnotationElements(IAnnotation annotation)
14 years
JBoss Tools SVN: r39798 - trunk/ws/plugins/org.jboss.tools.ws.jaxrs.ui/src/org/jboss/tools/ws/jaxrs/ui/contentassist.
by jbosstools-commits@lists.jboss.org
Author: xcoulon
Date: 2012-03-23 09:56:06 -0400 (Fri, 23 Mar 2012)
New Revision: 39798
Modified:
trunk/ws/plugins/org.jboss.tools.ws.jaxrs.ui/src/org/jboss/tools/ws/jaxrs/ui/contentassist/PathParamAnnotationValueCompletionProposalComputer.java
Log:
Fixed - JBIDE-11377
Failed to compute completion proposal
Modified: trunk/ws/plugins/org.jboss.tools.ws.jaxrs.ui/src/org/jboss/tools/ws/jaxrs/ui/contentassist/PathParamAnnotationValueCompletionProposalComputer.java
===================================================================
--- trunk/ws/plugins/org.jboss.tools.ws.jaxrs.ui/src/org/jboss/tools/ws/jaxrs/ui/contentassist/PathParamAnnotationValueCompletionProposalComputer.java 2012-03-23 13:51:00 UTC (rev 39797)
+++ trunk/ws/plugins/org.jboss.tools.ws.jaxrs.ui/src/org/jboss/tools/ws/jaxrs/ui/contentassist/PathParamAnnotationValueCompletionProposalComputer.java 2012-03-23 13:56:06 UTC (rev 39798)
@@ -78,7 +78,8 @@
}
IJavaElement invocationElement = javaContext.getCompilationUnit().getElementAt(
context.getInvocationOffset());
- if (invocationElement.getElementType() == IJavaElement.METHOD) {
+ // ICompilationUnit.getElementAt(int) method may return null
+ if (invocationElement != null && invocationElement.getElementType() == IJavaElement.METHOD) {
IJaxrsResourceMethod resourceMethod = metamodel.getElement(invocationElement,
IJaxrsResourceMethod.class);
// the java method must be associated with a JAX-RS Resource Method.
14 years
JBoss Tools SVN: r39797 - branches/jbosstools-3.3.0.Beta1/ws/plugins/org.jboss.tools.ws.jaxrs.ui/src/org/jboss/tools/ws/jaxrs/ui/contentassist.
by jbosstools-commits@lists.jboss.org
Author: xcoulon
Date: 2012-03-23 09:51:00 -0400 (Fri, 23 Mar 2012)
New Revision: 39797
Modified:
branches/jbosstools-3.3.0.Beta1/ws/plugins/org.jboss.tools.ws.jaxrs.ui/src/org/jboss/tools/ws/jaxrs/ui/contentassist/PathParamAnnotationValueCompletionProposalComputer.java
Log:
Fixed - JBIDE-11377
Failed to compute completion proposal
Modified: branches/jbosstools-3.3.0.Beta1/ws/plugins/org.jboss.tools.ws.jaxrs.ui/src/org/jboss/tools/ws/jaxrs/ui/contentassist/PathParamAnnotationValueCompletionProposalComputer.java
===================================================================
--- branches/jbosstools-3.3.0.Beta1/ws/plugins/org.jboss.tools.ws.jaxrs.ui/src/org/jboss/tools/ws/jaxrs/ui/contentassist/PathParamAnnotationValueCompletionProposalComputer.java 2012-03-23 13:50:25 UTC (rev 39796)
+++ branches/jbosstools-3.3.0.Beta1/ws/plugins/org.jboss.tools.ws.jaxrs.ui/src/org/jboss/tools/ws/jaxrs/ui/contentassist/PathParamAnnotationValueCompletionProposalComputer.java 2012-03-23 13:51:00 UTC (rev 39797)
@@ -78,7 +78,8 @@
}
IJavaElement invocationElement = javaContext.getCompilationUnit().getElementAt(
context.getInvocationOffset());
- if (invocationElement.getElementType() == IJavaElement.METHOD) {
+ // ICompilationUnit.getElementAt(int) method may return null
+ if (invocationElement != null && invocationElement.getElementType() == IJavaElement.METHOD) {
IJaxrsResourceMethod resourceMethod = metamodel.getElement(invocationElement,
IJaxrsResourceMethod.class);
// the java method must be associated with a JAX-RS Resource Method.
14 years
JBoss Tools SVN: r39796 - in branches/jbosstools-3.3.0.Beta1/ws/plugins/org.jboss.tools.ws.jaxrs.core/src/org/jboss/tools/ws/jaxrs/core: jdt and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: xcoulon
Date: 2012-03-23 09:50:25 -0400 (Fri, 23 Mar 2012)
New Revision: 39796
Modified:
branches/jbosstools-3.3.0.Beta1/ws/plugins/org.jboss.tools.ws.jaxrs.core/src/org/jboss/tools/ws/jaxrs/core/internal/metamodel/domain/JaxrsElementFactory.java
branches/jbosstools-3.3.0.Beta1/ws/plugins/org.jboss.tools.ws.jaxrs.core/src/org/jboss/tools/ws/jaxrs/core/jdt/JdtUtils.java
Log:
Fixed - JBIDE-11379
Failed to build or refresh the JAX-RS metamodel message while editiing package-info.java
Modified: branches/jbosstools-3.3.0.Beta1/ws/plugins/org.jboss.tools.ws.jaxrs.core/src/org/jboss/tools/ws/jaxrs/core/internal/metamodel/domain/JaxrsElementFactory.java
===================================================================
--- branches/jbosstools-3.3.0.Beta1/ws/plugins/org.jboss.tools.ws.jaxrs.core/src/org/jboss/tools/ws/jaxrs/core/internal/metamodel/domain/JaxrsElementFactory.java 2012-03-23 13:44:32 UTC (rev 39795)
+++ branches/jbosstools-3.3.0.Beta1/ws/plugins/org.jboss.tools.ws.jaxrs.core/src/org/jboss/tools/ws/jaxrs/core/internal/metamodel/domain/JaxrsElementFactory.java 2012-03-23 13:50:25 UTC (rev 39796)
@@ -67,6 +67,9 @@
public JaxrsJavaElement<?> createElement(IAnnotation javaAnnotation, CompilationUnit ast, JaxrsMetamodel metamodel)
throws CoreException {
Annotation annotation = JdtUtils.resolveAnnotation(javaAnnotation, ast);
+ if(annotation == null) { // annotation on package declaration are ignored
+ return null;
+ }
final String annotationName = annotation.getName();
if (annotationName.equals(HttpMethod.class.getName())) {
final JaxrsHttpMethod httpMethod = createHttpMethod(annotation, ast, metamodel);
Modified: branches/jbosstools-3.3.0.Beta1/ws/plugins/org.jboss.tools.ws.jaxrs.core/src/org/jboss/tools/ws/jaxrs/core/jdt/JdtUtils.java
===================================================================
--- branches/jbosstools-3.3.0.Beta1/ws/plugins/org.jboss.tools.ws.jaxrs.core/src/org/jboss/tools/ws/jaxrs/core/jdt/JdtUtils.java 2012-03-23 13:44:32 UTC (rev 39795)
+++ branches/jbosstools-3.3.0.Beta1/ws/plugins/org.jboss.tools.ws.jaxrs.core/src/org/jboss/tools/ws/jaxrs/core/jdt/JdtUtils.java 2012-03-23 13:50:25 UTC (rev 39796)
@@ -89,8 +89,10 @@
public static ICompilationUnit getCompilationUnit(final IJavaElement element) {
if (element instanceof IMember) {
return ((IMember) element).getCompilationUnit();
- } else if (element instanceof IAnnotation) {
- return ((IMember) ((IAnnotation) element).getParent()).getCompilationUnit();
+ } else if (element instanceof IAnnotation
+ // ignore annotations on PackageDeclaration, such as in package-info.java
+ && element.getParent() instanceof IMember) {
+ return ((IMember) (element.getParent())).getCompilationUnit();
} else if (element instanceof ICompilationUnit) {
return (ICompilationUnit) element;
}
@@ -380,7 +382,11 @@
*/
public static Annotation resolveAnnotation(IAnnotation javaAnnotation, CompilationUnit ast)
throws JavaModelException {
- return resolveAnnotation((IMember) javaAnnotation.getParent(), ast, javaAnnotation.getElementName());
+ if (javaAnnotation.getParent() instanceof IMember) {
+ return resolveAnnotation((IMember) javaAnnotation.getParent(), ast,
+ javaAnnotation.getElementName());
+ }
+ return null;
}
private static Map<String, List<String>> resolveAnnotationElements(IAnnotation annotation)
14 years
JBoss Tools SVN: r39795 - in trunk/freemarker/tests/org.jboss.tools.freemarker.ui.bot.test: launcher and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: jpeterka
Date: 2012-03-23 09:44:32 -0400 (Fri, 23 Mar 2012)
New Revision: 39795
Added:
trunk/freemarker/tests/org.jboss.tools.freemarker.ui.bot.test/launcher/mvn-freemarker.launch
Modified:
trunk/freemarker/tests/org.jboss.tools.freemarker.ui.bot.test/pom.xml
trunk/freemarker/tests/org.jboss.tools.freemarker.ui.bot.test/src/org/jboss/tools/freemarker/ui/bot/test/FreeMarkerTest.java
Log:
Freemarker test updated for maven execution
Added: trunk/freemarker/tests/org.jboss.tools.freemarker.ui.bot.test/launcher/mvn-freemarker.launch
===================================================================
--- trunk/freemarker/tests/org.jboss.tools.freemarker.ui.bot.test/launcher/mvn-freemarker.launch (rev 0)
+++ trunk/freemarker/tests/org.jboss.tools.freemarker.ui.bot.test/launcher/mvn-freemarker.launch 2012-03-23 13:44:32 UTC (rev 39795)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<launchConfiguration type="org.eclipse.m2e.Maven2LaunchConfigurationType">
+<booleanAttribute key="M2_DEBUG_OUTPUT" value="false"/>
+<stringAttribute key="M2_GOALS" value="clean install"/>
+<booleanAttribute key="M2_NON_RECURSIVE" value="false"/>
+<booleanAttribute key="M2_OFFLINE" value="false"/>
+<stringAttribute key="M2_PROFILES" value="default"/>
+<listAttribute key="M2_PROPERTIES">
+<listEntry value="swtbot.test.skip=false"/>
+</listAttribute>
+<stringAttribute key="M2_RUNTIME" value="EMBEDDED"/>
+<booleanAttribute key="M2_SKIP_TESTS" value="false"/>
+<booleanAttribute key="M2_UPDATE_SNAPSHOTS" value="false"/>
+<booleanAttribute key="M2_WORKSPACE_RESOLUTION" value="false"/>
+<stringAttribute key="org.eclipse.jdt.launching.JRE_CONTAINER" value="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jdk1.6.0_31"/>
+<stringAttribute key="org.eclipse.jdt.launching.WORKING_DIRECTORY" value="${workspace_loc:/org.jboss.tools.freemarker.ui.bot.test}"/>
+</launchConfiguration>
Property changes on: trunk/freemarker/tests/org.jboss.tools.freemarker.ui.bot.test/launcher/mvn-freemarker.launch
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Modified: trunk/freemarker/tests/org.jboss.tools.freemarker.ui.bot.test/pom.xml
===================================================================
--- trunk/freemarker/tests/org.jboss.tools.freemarker.ui.bot.test/pom.xml 2012-03-23 11:21:02 UTC (rev 39794)
+++ trunk/freemarker/tests/org.jboss.tools.freemarker.ui.bot.test/pom.xml 2012-03-23 13:44:32 UTC (rev 39795)
@@ -30,24 +30,34 @@
</dependency>
<dependency>
<type>p2-installable-unit</type>
- <artifactId>org.eclipse.pde</artifactId>
+ <artifactId>org.eclipse.pde.feature.group</artifactId>
<version>0.0.0</version>
</dependency>
<dependency>
<type>p2-installable-unit</type>
- <artifactId>org.eclipse.jdt</artifactId>
+ <artifactId>org.eclipse.jdt.feature.group</artifactId>
<version>0.0.0</version>
</dependency>
<dependency>
<type>p2-installable-unit</type>
- <artifactId>org.eclipse.platform</artifactId>
+ <artifactId>org.eclipse.platform.feature.group</artifactId>
<version>0.0.0</version>
- </dependency>
+ </dependency>
+ <dependency>
+ <type>p2-installable-unit</type>
+ <artifactId>org.eclipse.rcp.feature.group</artifactId>
+ <version>0.0.0</version>
+ </dependency>
<dependency>
<type>p2-installable-unit</type>
<artifactId>org.jboss.ide.eclipse.freemarker.feature.feature.group</artifactId>
<version>0.0.0</version>
</dependency>
+ <dependency>
+ <type>p2-installable-unit</type>
+ <artifactId>org.jboss.ide.eclipse.freemarker.feature.feature.jar</artifactId>
+ <version>0.0.0</version>
+ </dependency>
</dependencies>
</configuration>
</plugin>
Modified: trunk/freemarker/tests/org.jboss.tools.freemarker.ui.bot.test/src/org/jboss/tools/freemarker/ui/bot/test/FreeMarkerTest.java
===================================================================
--- trunk/freemarker/tests/org.jboss.tools.freemarker.ui.bot.test/src/org/jboss/tools/freemarker/ui/bot/test/FreeMarkerTest.java 2012-03-23 11:21:02 UTC (rev 39794)
+++ trunk/freemarker/tests/org.jboss.tools.freemarker.ui.bot.test/src/org/jboss/tools/freemarker/ui/bot/test/FreeMarkerTest.java 2012-03-23 13:44:32 UTC (rev 39795)
@@ -57,7 +57,8 @@
emptyErrorLog();
importTestProject();
openFTLFileInEditor();
- checkFreemMarkerOutput();
+ // disabled until target platform in running instance is resolved
+ // checkFreemMarkerOutput();
checkErrorLog();
}
@@ -138,6 +139,7 @@
Tree.select(viewOpen.bot(), prj,"src","org.jboss.tools.freemarker.testprj","FMTest.java");
RunAs.click("Java Application");
+ bot.sleep(400000);
SWTBotShell s = bot.shell("Progress Information");
bot.waitUntil(shellCloses(s));
14 years
JBoss Tools SVN: r39794 - in trunk: as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7 and 6 other directories.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2012-03-23 07:21:02 -0400 (Fri, 23 Mar 2012)
New Revision: 39794
Added:
trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/AS71JMXClassLoaderRepository.java
trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/AbstractJBossJMXConnectionProvider.java
trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBoss3To6ConnectionProvider.java
trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBoss70ConnectionProvider.java
trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBoss71ConnectionProvider.java
trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBoss71ServerConnection.java
trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBossJMXConnectionProviderModel.java
Removed:
trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBossServerConnectionProvider.java
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/extendedproperties/ServerExtendedProperties.java
trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/JBoss7Server.java
trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/plugin.xml
trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/Activator.java
trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBossServerConnection.java
trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBossServerJMXRunner.java
trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JMXClassLoaderRepository.java
trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JMXPoller.java
trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JMXProvider.java
trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JMXSafeRunner.java
trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JMXServerLifecycleListener.java
trunk/jmx/plugins/org.jboss.tools.jmx.core/src/org/jboss/tools/jmx/core/IConnectionWrapper.java
trunk/jmx/plugins/org.jboss.tools.jmx.core/src/org/jboss/tools/jmx/core/providers/DefaultConnectionWrapper.java
trunk/jmx/plugins/org.jboss.tools.jmx.core/src/org/jboss/tools/jmx/core/tree/NodeBuilder.java
trunk/jmx/plugins/org.jboss.tools.jmx.core/src/org/jboss/tools/jmx/core/tree/NodeUtils.java
trunk/jmx/plugins/org.jboss.tools.jmx.core/src/org/jboss/tools/jmx/core/tree/ObjectNameNode.java
trunk/jmx/tests/org.jboss.tools.jmx.core.test/src/org/jboss/tools/jmx/core/test/MockConnectionWrapper.java
Log:
JBIDE-11064 - see comments on jira
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/extendedproperties/ServerExtendedProperties.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/extendedproperties/ServerExtendedProperties.java 2012-03-23 11:16:00 UTC (rev 39793)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/extendedproperties/ServerExtendedProperties.java 2012-03-23 11:21:02 UTC (rev 39794)
@@ -1,3 +1,13 @@
+/*******************************************************************************
+ * Copyright (c) 2012 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.ide.eclipse.as.core.server.internal.extendedproperties;
import org.eclipse.core.runtime.IAdaptable;
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/JBoss7Server.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/JBoss7Server.java 2012-03-23 11:16:00 UTC (rev 39793)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/JBoss7Server.java 2012-03-23 11:21:02 UTC (rev 39794)
@@ -24,6 +24,7 @@
import org.eclipse.wst.server.core.IRuntime;
import org.jboss.ide.eclipse.as.core.extensions.polling.WebPortPoller;
import org.jboss.ide.eclipse.as.core.server.internal.JBossServer;
+import org.jboss.ide.eclipse.as.core.server.internal.extendedproperties.ServerExtendedProperties;
import org.jboss.ide.eclipse.as.core.util.ExpressionResolverUtil;
import org.jboss.ide.eclipse.as.core.util.IJBossToolingConstants;
import org.jboss.ide.eclipse.as.core.util.ServerUtil;
@@ -43,7 +44,7 @@
setAttribute(IJBossToolingConstants.STARTUP_POLLER_KEY, JBoss7ManagerServicePoller.POLLER_ID);
}
public boolean hasJMXProvider() {
- return false;
+ return getExtendedProperties().getJMXProviderType() != ServerExtendedProperties.JMX_NULL_PROVIDER;
}
public int getManagementPort() {
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/plugin.xml
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/plugin.xml 2012-03-23 11:16:00 UTC (rev 39793)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/plugin.xml 2012-03-23 11:21:02 UTC (rev 39794)
@@ -10,8 +10,14 @@
<extension
point="org.jboss.tools.jmx.core.MBeanServerConnectionProvider">
<connectionProvider
- class="org.jboss.ide.eclipse.as.jmx.integration.JBossServerConnectionProvider">
+ class="org.jboss.ide.eclipse.as.jmx.integration.JBoss3To6ConnectionProvider">
</connectionProvider>
+ <connectionProvider
+ class="org.jboss.ide.eclipse.as.jmx.integration.JBoss70ConnectionProvider">
+ </connectionProvider>
+ <connectionProvider
+ class="org.jboss.ide.eclipse.as.jmx.integration.JBoss71ConnectionProvider">
+ </connectionProvider>
</extension>
<extension
Added: trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/AS71JMXClassLoaderRepository.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/AS71JMXClassLoaderRepository.java (rev 0)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/AS71JMXClassLoaderRepository.java 2012-03-23 11:21:02 UTC (rev 39794)
@@ -0,0 +1,46 @@
+/*******************************************************************************
+ * Copyright (c) 2012 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.ide.eclipse.as.jmx.integration;
+
+import java.net.MalformedURLException;
+import java.net.URL;
+import java.net.URLClassLoader;
+
+import org.eclipse.core.runtime.IPath;
+import org.eclipse.wst.server.core.IRuntime;
+import org.eclipse.wst.server.core.IServer;
+import org.jboss.ide.eclipse.as.core.util.IJBossRuntimeResourceConstants;
+
+public class AS71JMXClassLoaderRepository extends JMXClassLoaderRepository {
+ protected URLClassLoader createClassLoader(IServer s) throws MalformedURLException {
+ IRuntime rt = s.getRuntime();
+ IPath loc = rt.getLocation();
+ IPath clientJar = findClientJar(loc);
+ if( clientJar != null ) {
+ URL url = clientJar.toFile().toURI().toURL();
+ URLClassLoader loader = new URLClassLoader(new URL[] { url, },
+ Thread.currentThread().getContextClassLoader());
+ return loader;
+ }
+ return null;
+ }
+
+ public IPath findClientJar(IPath root) {
+ IPath p2 = root.append(IJBossRuntimeResourceConstants.BIN)
+ .append(IJBossRuntimeResourceConstants.CLIENT);
+ String[] children = p2.toFile().list();
+ for( int i = 0; i < children.length; i++ ) {
+ if( children[i].endsWith(".jar") && children[i].startsWith("jboss-client-"))
+ return p2.append(children[i]);
+ }
+ return null;
+ }
+}
Added: trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/AbstractJBossJMXConnectionProvider.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/AbstractJBossJMXConnectionProvider.java (rev 0)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/AbstractJBossJMXConnectionProvider.java 2012-03-23 11:21:02 UTC (rev 39794)
@@ -0,0 +1,180 @@
+/*******************************************************************************
+ * Copyright (c) 2012 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.ide.eclipse.as.jmx.integration;
+
+import java.util.ArrayList;
+import java.util.HashMap;
+import java.util.Iterator;
+import java.util.Map;
+
+import org.eclipse.core.runtime.CoreException;
+import org.eclipse.core.runtime.IStatus;
+import org.eclipse.core.runtime.Status;
+import org.eclipse.wst.server.core.IServer;
+import org.eclipse.wst.server.core.IServerLifecycleListener;
+import org.eclipse.wst.server.core.ServerCore;
+import org.jboss.ide.eclipse.as.core.JBossServerCorePlugin;
+import org.jboss.ide.eclipse.as.core.Messages;
+import org.jboss.tools.jmx.core.IConnectionProvider;
+import org.jboss.tools.jmx.core.IConnectionProviderListener;
+import org.jboss.tools.jmx.core.IConnectionWrapper;
+
+public abstract class AbstractJBossJMXConnectionProvider implements IConnectionProvider, IServerLifecycleListener {
+
+ private ArrayList<IConnectionProviderListener> listeners =
+ new ArrayList<IConnectionProviderListener>();
+
+ private HashMap<String, IConnectionWrapper> idToConnection;
+ public AbstractJBossJMXConnectionProvider() {
+ ServerCore.addServerLifecycleListener(this);
+ }
+
+ protected abstract boolean belongsHere(IServer server);
+ public abstract String getId();
+ protected abstract IConnectionWrapper createConnection(IServer server);
+ public abstract String getName(IConnectionWrapper wrapper);
+
+ public void serverAdded(IServer server) {
+ if( belongsHere(server)) {
+ getConnections();
+ if( !idToConnection.containsKey(server.getId())) {
+ IConnectionWrapper connection = createConnection(server);
+ idToConnection.put(server.getId(), connection);
+ if( connection != null )
+ fireAdded(idToConnection.get(server.getId()));
+ }
+ }
+ }
+
+ public void serverChanged(IServer server) {
+ if( belongsHere(server)) {
+ getConnections();
+ IConnectionWrapper connection = createConnection(server);
+ idToConnection.put(server.getId(), connection);
+ if( connection != null )
+ fireAdded(idToConnection.get(server.getId()));
+ }
+ }
+
+ public void serverRemoved(IServer server) {
+ if( belongsHere(server)) {
+ IConnectionWrapper connection;
+ if( idToConnection != null ) {
+ connection = idToConnection.get(server.getId());
+ if( connection != null ) {
+ idToConnection.remove(server.getId());
+ fireRemoved(connection);
+ }
+ } else {
+ // hasn't been initialized yet
+ getConnections();
+
+ // but now its missing from the collection, so make one up
+ IConnectionWrapper dummy = createConnection(server);
+
+ // Make sure we don't fire a removal for a connection that doesn't exist
+ if( dummy != null )
+ fireRemoved(dummy);
+ }
+ }
+ }
+
+ public IConnectionWrapper findConnection(IServer s) {
+ getConnections();
+ return idToConnection.get(s.getId());
+ }
+
+ public IConnectionWrapper[] getConnections() {
+ // do it all on demand right now
+ if( idToConnection == null ) {
+ // load them all
+ idToConnection = new HashMap<String, IConnectionWrapper>();
+ IServer[] allServers = ServerCore.getServers();
+ IConnectionWrapper c;
+ for( int i = 0; i < allServers.length; i++ ) {
+ if( belongsHere(allServers[i])) {
+ c = createConnection(allServers[i]);
+ if( c != null )
+ idToConnection.put(allServers[i].getId(), c);
+ }
+ }
+ }
+ ArrayList<IConnectionWrapper> list = new ArrayList<IConnectionWrapper>();
+ list.addAll(idToConnection.values());
+ return list.toArray(new IConnectionWrapper[list.size()]);
+ }
+
+ public void addListener(IConnectionProviderListener listener) {
+ if( !listeners.contains(listener))
+ listeners.add(listener);
+ }
+
+ public void removeListener(IConnectionProviderListener listener) {
+ listeners.remove(listener);
+ }
+
+ void fireAdded(IConnectionWrapper wrapper) {
+ for(Iterator<IConnectionProviderListener> i = listeners.iterator(); i.hasNext();)
+ try {
+ i.next().connectionAdded(wrapper);
+ } catch(RuntimeException re) {
+ // Intentionally ignore. This is just to protect against a bad implementer blowing away the stack
+ }
+ }
+
+ void fireChanged(IConnectionWrapper wrapper) {
+ for(Iterator<IConnectionProviderListener> i = listeners.iterator(); i.hasNext();)
+ try {
+ i.next().connectionChanged(wrapper);
+ } catch(RuntimeException re) {
+ // Intentionally ignore. This is just to protect against a bad implementer blowing away the stack
+ }
+ }
+
+ void fireRemoved(IConnectionWrapper wrapper) {
+ for(Iterator<IConnectionProviderListener> i = listeners.iterator(); i.hasNext();)
+ try {
+ i.next().connectionRemoved(wrapper);
+ } catch(RuntimeException re) {
+ // Intentionally ignore. This is just to protect against a bad implementer blowing away the stack
+ }
+ }
+
+ public boolean canCreate() {
+ return false;
+ }
+
+ @SuppressWarnings(value={"unchecked"})
+ public IConnectionWrapper createConnection(Map map) throws CoreException {
+ throw new CoreException(new Status(IStatus.ERROR, JBossServerCorePlugin.PLUGIN_ID, Messages.NotSupported, null));
+ }
+
+ public void addConnection(IConnectionWrapper connection) {
+ // Not Supported
+ }
+ public void removeConnection(IConnectionWrapper connection) {
+ // Not Supported
+ }
+ public boolean canDelete(IConnectionWrapper wrapper) {
+ return false;
+ }
+ public void connectionChanged(IConnectionWrapper connection) {
+ // do nothing
+ }
+
+ public boolean hasClassloaderRepository() {
+ return false;
+ }
+
+ public JMXClassLoaderRepository getClassloaderRepository() {
+ return null;
+ }
+}
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/Activator.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/Activator.java 2012-03-23 11:16:00 UTC (rev 39793)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/Activator.java 2012-03-23 11:21:02 UTC (rev 39794)
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2011 Red Hat, Inc.
+ * Copyright (c) 2012 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,
Copied: trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBoss3To6ConnectionProvider.java (from rev 39642, trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBossServerConnectionProvider.java)
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBoss3To6ConnectionProvider.java (rev 0)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBoss3To6ConnectionProvider.java 2012-03-23 11:21:02 UTC (rev 39794)
@@ -0,0 +1,57 @@
+/*******************************************************************************
+ * Copyright (c) 2012 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.ide.eclipse.as.jmx.integration;
+
+import org.eclipse.wst.server.core.IServer;
+import org.jboss.ide.eclipse.as.core.server.internal.ExtendedServerPropertiesAdapterFactory;
+import org.jboss.ide.eclipse.as.core.server.internal.extendedproperties.JBossExtendedProperties;
+import org.jboss.ide.eclipse.as.core.server.internal.extendedproperties.ServerExtendedProperties;
+import org.jboss.tools.jmx.core.IConnectionWrapper;
+
+public class JBoss3To6ConnectionProvider extends AbstractJBossJMXConnectionProvider{
+ public static final String PROVIDER_ID = "org.jboss.ide.eclipse.as.core.extensions.jmx.JBossServerConnectionProvider"; //$NON-NLS-1$
+
+ private JMXClassLoaderRepository repository;
+ public JBoss3To6ConnectionProvider() {
+ super();
+ repository = new JMXClassLoaderRepository();
+ JBossJMXConnectionProviderModel.getDefault().registerProvider(ServerExtendedProperties.JMX_AS_3_TO_6_PROVIDER, this);
+ }
+
+ public String getName(IConnectionWrapper wrapper) {
+ if( wrapper instanceof JBossServerConnection) {
+ return ((JBossServerConnection)wrapper).getName();
+ }
+ return null;
+ }
+
+ protected boolean belongsHere(IServer server) {
+ JBossExtendedProperties props = ExtendedServerPropertiesAdapterFactory.getJBossExtendedProperties(server);
+ int type = props == null ? -1 : props.getJMXProviderType();
+ return type == JBossExtendedProperties.JMX_AS_3_TO_6_PROVIDER;
+ }
+
+ protected IConnectionWrapper createConnection(IServer server) {
+ return new JBossServerConnection(server);
+ }
+
+ public String getId() {
+ return PROVIDER_ID;
+ }
+ public boolean hasClassloaderRepository() {
+ return true;
+ }
+
+ public JMXClassLoaderRepository getClassloaderRepository() {
+ return repository;
+ }
+
+}
Added: trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBoss70ConnectionProvider.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBoss70ConnectionProvider.java (rev 0)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBoss70ConnectionProvider.java 2012-03-23 11:21:02 UTC (rev 39794)
@@ -0,0 +1,117 @@
+/*******************************************************************************
+ * Copyright (c) 2012 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.ide.eclipse.as.jmx.integration;
+
+import java.io.IOException;
+import java.net.MalformedURLException;
+
+import org.eclipse.core.runtime.IStatus;
+import org.eclipse.core.runtime.Status;
+import org.eclipse.wst.server.core.IServer;
+import org.eclipse.wst.server.core.IServerListener;
+import org.eclipse.wst.server.core.ServerEvent;
+import org.jboss.ide.eclipse.as.core.JBossServerCorePlugin;
+import org.jboss.ide.eclipse.as.core.server.internal.ExtendedServerPropertiesAdapterFactory;
+import org.jboss.ide.eclipse.as.core.server.internal.extendedproperties.JBossExtendedProperties;
+import org.jboss.ide.eclipse.as.core.server.internal.extendedproperties.ServerExtendedProperties;
+import org.jboss.tools.jmx.core.IConnectionProviderListener;
+import org.jboss.tools.jmx.core.IConnectionWrapper;
+import org.jboss.tools.jmx.core.providers.DefaultConnectionWrapper;
+import org.jboss.tools.jmx.core.providers.MBeanServerConnectionDescriptor;
+
+public class JBoss70ConnectionProvider extends AbstractJBossJMXConnectionProvider{
+ public static final String PROVIDER_ID = "org.jboss.ide.eclipse.as.core.extensions.jmx.JBoss70ConnectionProvider"; //$NON-NLS-1$
+
+ public JBoss70ConnectionProvider() {
+ super();
+ JBossJMXConnectionProviderModel.getDefault().registerProvider(ServerExtendedProperties.JMX_DEFAULT_PROVIDER, this);
+ }
+
+ public String getName(IConnectionWrapper wrapper) {
+ if( wrapper instanceof JBossServerConnection) {
+ return ((JBossServerConnection)wrapper).getName();
+ }
+ return null;
+ }
+
+ protected boolean belongsHere(IServer server) {
+ JBossExtendedProperties props = ExtendedServerPropertiesAdapterFactory.getJBossExtendedProperties(server);
+ int type = props == null ? -1 : props.getJMXProviderType();
+ return type == JBossExtendedProperties.JMX_DEFAULT_PROVIDER;
+ }
+
+ protected IConnectionWrapper createConnection(IServer server) {
+ return createDefaultServerConnection(server);
+ }
+
+ protected IConnectionWrapper createDefaultServerConnection(IServer server) {
+ // This situation is not even fully supported and requires revisiting
+ String SIMPLE_PREFIX = "service:jmx:rmi:///jndi/rmi://"; //$NON-NLS-1$ constants are in jmx.ui feh
+ String SIMPLE_SUFFIX = "/jmxrmi"; //$NON-NLS-1$
+ String host = server.getHost();
+ String port = "1090"; // TODO fix hard code
+ String url = SIMPLE_PREFIX + host + ":" + port + SIMPLE_SUFFIX; //$NON-NLS-1$
+
+ MBeanServerConnectionDescriptor desc = new
+ MBeanServerConnectionDescriptor(server.getName(), url, "", "");
+ try {
+ return new ExtendedDefaultConnectionWrapper(desc, server);
+ } catch( MalformedURLException murle) {
+ // TODO log
+ return null;
+ }
+ }
+
+ private class ExtendedDefaultConnectionWrapper extends DefaultConnectionWrapper
+ implements IServerListener, IConnectionProviderListener {
+ private IServer server;
+ public ExtendedDefaultConnectionWrapper(
+ MBeanServerConnectionDescriptor descriptor, IServer server)
+ throws MalformedURLException {
+ super(descriptor);
+ this.server = server;
+ server.addServerListener(this);
+ }
+ public void serverChanged(ServerEvent event) {
+ int eventKind = event.getKind();
+ if ((eventKind & ServerEvent.SERVER_CHANGE) != 0) {
+ // server change event
+ if ((eventKind & ServerEvent.STATE_CHANGE) != 0) {
+ boolean started = event.getServer().getServerState() == IServer.STATE_STARTED;
+ try {
+ if( started )
+ connect();
+ else
+ disconnect();
+ } catch( IOException ioe) {
+ if( started )
+ JBossServerCorePlugin.log(new Status(IStatus.ERROR, JBossServerCorePlugin.PLUGIN_ID, "Error connecting to this server's JMX service: " + event.getServer().getName(), ioe));
+ else
+ JBossServerCorePlugin.log(new Status(IStatus.ERROR, JBossServerCorePlugin.PLUGIN_ID, "Error disconnecting from this server's JMX service: " + event.getServer().getName(), ioe));
+ }
+ }
+ }
+ }
+ public void connectionAdded(IConnectionWrapper connection) {
+ }
+ public void connectionRemoved(IConnectionWrapper connection) {
+ if( connection == this )
+ server.removeServerListener(this);
+ }
+ public void connectionChanged(IConnectionWrapper connection) {
+ }
+ }
+
+ public String getId() {
+ return PROVIDER_ID;
+ }
+
+}
Added: trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBoss71ConnectionProvider.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBoss71ConnectionProvider.java (rev 0)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBoss71ConnectionProvider.java 2012-03-23 11:21:02 UTC (rev 39794)
@@ -0,0 +1,58 @@
+/*******************************************************************************
+ * Copyright (c) 2012 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.ide.eclipse.as.jmx.integration;
+
+import org.eclipse.wst.server.core.IServer;
+import org.jboss.ide.eclipse.as.core.server.internal.ExtendedServerPropertiesAdapterFactory;
+import org.jboss.ide.eclipse.as.core.server.internal.extendedproperties.JBossExtendedProperties;
+import org.jboss.ide.eclipse.as.core.server.internal.extendedproperties.ServerExtendedProperties;
+import org.jboss.tools.jmx.core.IConnectionWrapper;
+
+public class JBoss71ConnectionProvider extends AbstractJBossJMXConnectionProvider{
+ public static final String PROVIDER_ID = "org.jboss.ide.eclipse.as.core.extensions.jmx.JBoss71ServerConnectionProvider"; //$NON-NLS-1$
+
+ private JMXClassLoaderRepository repository;
+ public JBoss71ConnectionProvider() {
+ super();
+ repository = new AS71JMXClassLoaderRepository();
+ JBossJMXConnectionProviderModel.getDefault().registerProvider(ServerExtendedProperties.JMX_AS_710_PROVIDER, this);
+ }
+
+
+ public String getName(IConnectionWrapper wrapper) {
+ if( wrapper instanceof JBossServerConnection) {
+ return ((JBossServerConnection)wrapper).getName();
+ }
+ return null;
+ }
+
+ protected boolean belongsHere(IServer server) {
+ JBossExtendedProperties props = ExtendedServerPropertiesAdapterFactory.getJBossExtendedProperties(server);
+ int type = props == null ? -1 : props.getJMXProviderType();
+ return type == JBossExtendedProperties.JMX_AS_710_PROVIDER;
+ }
+
+ protected IConnectionWrapper createConnection(IServer server) {
+ return new JBoss71ServerConnection(server);
+ }
+
+ public String getId() {
+ return PROVIDER_ID;
+ }
+
+ public boolean hasClassloaderRepository() {
+ return true;
+ }
+
+ public JMXClassLoaderRepository getClassloaderRepository() {
+ return repository;
+ }
+}
Added: trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBoss71ServerConnection.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBoss71ServerConnection.java (rev 0)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBoss71ServerConnection.java 2012-03-23 11:21:02 UTC (rev 39794)
@@ -0,0 +1,52 @@
+/*******************************************************************************
+ * Copyright (c) 2012 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.ide.eclipse.as.jmx.integration;
+
+import java.util.HashMap;
+import java.util.Map;
+
+import javax.management.MBeanServerConnection;
+import javax.management.remote.JMXConnector;
+import javax.management.remote.JMXConnectorFactory;
+import javax.management.remote.JMXServiceURL;
+
+import org.eclipse.wst.server.core.IServer;
+import org.jboss.ide.eclipse.as.jmx.integration.JMXUtil.CredentialException;
+import org.jboss.tools.jmx.core.ExtensionManager;
+import org.jboss.tools.jmx.core.IConnectionProvider;
+
+public class JBoss71ServerConnection extends JBossServerConnection {
+ public JBoss71ServerConnection(IServer server) {
+ super(server);
+ }
+
+ protected void initializeEnvironment(IServer s, String user, String pass) throws CredentialException {
+ // Do nothing
+ }
+
+ public IConnectionProvider getProvider() {
+ return ExtensionManager.getProvider(JBoss71ConnectionProvider.PROVIDER_ID);
+ }
+
+ protected MBeanServerConnection createConnection(IServer s) throws Exception {
+ try {
+ String url = "service:jmx:remoting-jmx://" + s.getHost() + ":9999"; // TODO externalize this?
+ Map<String, String[]> environment = new HashMap<String, String[]>();
+ JMXConnector connector = JMXConnectorFactory.connect(new JMXServiceURL(url), environment);
+ MBeanServerConnection connection = connector.getMBeanServerConnection();
+ return connection;
+ } catch(Exception e ) {
+ e.printStackTrace();
+ return null;
+ }
+ }
+
+}
Added: trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBossJMXConnectionProviderModel.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBossJMXConnectionProviderModel.java (rev 0)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBossJMXConnectionProviderModel.java 2012-03-23 11:21:02 UTC (rev 39794)
@@ -0,0 +1,74 @@
+/*******************************************************************************
+ * Copyright (c) 2012 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.ide.eclipse.as.jmx.integration;
+
+import java.util.HashMap;
+
+import org.eclipse.wst.server.core.IServer;
+import org.jboss.ide.eclipse.as.core.server.internal.extendedproperties.ServerExtendedProperties;
+import org.jboss.tools.jmx.core.IConnectionWrapper;
+import org.jboss.tools.jmx.core.IJMXRunnable;
+import org.jboss.tools.jmx.core.JMXException;
+
+public class JBossJMXConnectionProviderModel {
+ // Singleton
+ private static JBossJMXConnectionProviderModel instance;
+ public static JBossJMXConnectionProviderModel getDefault() {
+ if( instance == null )
+ instance = new JBossJMXConnectionProviderModel();
+ return instance;
+ }
+
+ private HashMap<Integer, AbstractJBossJMXConnectionProvider> providers;
+ public JBossJMXConnectionProviderModel() {
+ providers = new HashMap<Integer, AbstractJBossJMXConnectionProvider>();
+// providers.put(ServerExtendedProperties.JMX_NULL_PROVIDER, null);
+// providers.put(ServerExtendedProperties.JMX_AS_3_TO_6_PROVIDER, new JBoss3To6ConnectionProvider());
+// providers.put(ServerExtendedProperties.JMX_DEFAULT_PROVIDER, new JBoss70ConnectionProvider());
+// providers.put(ServerExtendedProperties.JMX_AS_710_PROVIDER, null);
+ }
+
+ public void registerProvider(int type, AbstractJBossJMXConnectionProvider provider) {
+ providers.put(type, provider);
+ }
+
+ public AbstractJBossJMXConnectionProvider getProvider(int type) {
+ return providers.get(type);
+ }
+
+
+ public IConnectionWrapper getConnection(IServer s) {
+ AbstractJBossJMXConnectionProvider provider = getProvider(s);
+ if( provider == null )
+ return null;
+ return provider.findConnection(s);
+ }
+
+ public AbstractJBossJMXConnectionProvider getProvider(IServer s) {
+ ServerExtendedProperties properties = (ServerExtendedProperties) s.loadAdapter(ServerExtendedProperties.class, null);
+ if( properties == null )
+ return null;
+
+ int i = properties.getJMXProviderType();
+ AbstractJBossJMXConnectionProvider provider = providers.get(i);
+ return provider;
+ }
+
+ // Run this action on the server.
+ // If the connection doesn't exist, make a new one
+ public void run(IServer s, IJMXRunnable r) throws JMXException {
+ IConnectionWrapper c = getConnection(s);
+ if( c != null )
+ // JMX is not installed here
+ c.run(r);
+ }
+
+}
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBossServerConnection.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBossServerConnection.java 2012-03-23 11:16:00 UTC (rev 39793)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBossServerConnection.java 2012-03-23 11:21:02 UTC (rev 39794)
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2011 Red Hat, Inc.
+ * Copyright (c) 2012 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,
@@ -11,8 +11,12 @@
package org.jboss.ide.eclipse.as.jmx.integration;
import java.io.IOException;
+import java.util.HashMap;
+import java.util.Properties;
import javax.management.MBeanServerConnection;
+import javax.naming.InitialContext;
+import javax.naming.NamingException;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
@@ -24,7 +28,9 @@
import org.eclipse.wst.server.core.ServerEvent;
import org.jboss.ide.eclipse.as.core.JBossServerCorePlugin;
import org.jboss.ide.eclipse.as.core.server.IDeployableServer;
+import org.jboss.ide.eclipse.as.core.util.IJBossRuntimeConstants;
import org.jboss.ide.eclipse.as.core.util.ServerConverter;
+import org.jboss.ide.eclipse.as.jmx.integration.JMXUtil.CredentialException;
import org.jboss.tools.jmx.core.ExtensionManager;
import org.jboss.tools.jmx.core.IConnectionProvider;
import org.jboss.tools.jmx.core.IConnectionProviderListener;
@@ -45,7 +51,7 @@
this.isConnected = false;
this.isLoading = false;
checkState(); // prime the state
- ((JBossServerConnectionProvider)getProvider()).addListener(this);
+ ((AbstractJBossJMXConnectionProvider)getProvider()).addListener(this);
server.addServerListener(this);
}
@@ -58,8 +64,12 @@
}
public IConnectionProvider getProvider() {
- return ExtensionManager.getProvider(JBossServerConnectionProvider.PROVIDER_ID);
+ return ExtensionManager.getProvider(JBoss3To6ConnectionProvider.PROVIDER_ID);
}
+
+ protected AbstractJBossJMXConnectionProvider getProvider2() {
+ return (AbstractJBossJMXConnectionProvider)getProvider();
+ }
public Root getRoot() {
return root;
@@ -70,7 +80,7 @@
isLoading = true;
// saferunner just adds itself as a concern and then removes, after each call.
// This will ensure the classloader does not need to make multiple loads
- JMXClassLoaderRepository.getDefault().addConcerned(server, this);
+ getProvider2().getClassloaderRepository().addConcerned(server, this);
try {
if( root == null ) {
root = NodeUtils.createObjectNameTree(this, monitor);
@@ -80,7 +90,7 @@
JBossServerCorePlugin.getDefault().getLog().log(status);
root = new ErrorRoot();
} finally {
- JMXClassLoaderRepository.getDefault().removeConcerned(server, this);
+ getProvider2().getClassloaderRepository().removeConcerned(server, this);
isLoading = false;
}
}
@@ -91,12 +101,66 @@
}
public void run(IJMXRunnable runnable) throws JMXException {
- // do nothing if the server is down.
- if( server.getServerState() != IServer.STATE_STARTED )
- return;
- JMXSafeRunner.run(server, runnable);
+ run(runnable, new HashMap<String, String>());
}
+ protected void run(IJMXRunnable runnable, boolean force) throws JMXException {
+ HashMap<String, String> map = new HashMap<String,String>();
+ map.put("force", "true");
+ run(runnable, map);
+ }
+
+ // Potential api upstream in jmx ?
+ public void run(IJMXRunnable runnable, HashMap<String, String> prefs) throws JMXException {
+ boolean force = prefs.get("force") == null ? false : Boolean.parseBoolean(prefs.get("force"));
+ if( force || server.getServerState() == IServer.STATE_STARTED) {
+ String defaultUser = ServerConverter.getJBossServer(server).getUsername();
+ String defaultPass = ServerConverter.getJBossServer(server).getPassword();
+ String user = prefs.get("user") == null ? defaultUser : prefs.get("user");
+ String pass = prefs.get("pass") == null ? defaultPass : prefs.get("pass");
+ run(server, runnable, user, pass);
+ }
+ }
+
+ public void run(IServer s, IJMXRunnable r, String user, String pass) throws JMXException {
+ // Mark the event
+ getProvider2().getClassloaderRepository().addConcerned(s, r);
+
+ // Set the classloader
+ ClassLoader currentLoader = Thread.currentThread()
+ .getContextClassLoader();
+ ClassLoader newLoader = getProvider2().getClassloaderRepository().getClassLoader(s);
+ Thread.currentThread().setContextClassLoader(newLoader);
+ try {
+ initializeEnvironment(s, user, pass);
+ MBeanServerConnection connection = createConnection(s);
+ if( connection != null ) {
+ r.run(connection);
+ }
+ } catch( Exception e ) {
+ throw new JMXException(new Status(IStatus.ERROR, JBossServerCorePlugin.PLUGIN_ID,
+ e.getMessage() == null ? e.getClass().getName() : e.getMessage(), e));
+ } finally {
+ getProvider2().getClassloaderRepository().removeConcerned(s, r);
+ Thread.currentThread().setContextClassLoader(currentLoader);
+ }
+ }
+
+ protected MBeanServerConnection createConnection(IServer s) throws Exception {
+ Properties p = JMXUtil.getDefaultProperties(s);
+ InitialContext ic = new InitialContext(p);
+ Object obj = ic.lookup(IJBossRuntimeConstants.RMIAdaptor);
+ ic.close();
+ if (obj instanceof MBeanServerConnection) {
+ return (MBeanServerConnection)obj;
+ }
+ return null;
+ }
+
+ protected void initializeEnvironment(IServer s, String user, String pass) throws CredentialException {
+ JMXUtil.setCredentials(s,user,pass);
+ }
+
public String getName() {
return server.getName();
}
@@ -127,21 +191,21 @@
IDeployableServer jbs = ServerConverter.getDeployableServer(server);
if( server.getServerState() == IServer.STATE_STARTED && jbs != null && jbs.hasJMXProvider()) {
try {
- JMXSafeRunner.run(server, new IJMXRunnable() {
+ run(new IJMXRunnable() {
public void run(MBeanServerConnection connection)
throws Exception {
// Do nothing, just see if the connection worked
}
- });
+ }, true);
if( !isConnected ) {
isConnected = true;
- ((JBossServerConnectionProvider)getProvider()).fireChanged(JBossServerConnection.this);
+ ((AbstractJBossJMXConnectionProvider)getProvider()).fireChanged(JBossServerConnection.this);
}
} catch( Exception jmxe ) {
// I thought i was connected but I'm not.
if( isConnected ) {
isConnected = false;
- ((JBossServerConnectionProvider)getProvider()).fireChanged(JBossServerConnection.this);
+ ((AbstractJBossJMXConnectionProvider)getProvider()).fireChanged(JBossServerConnection.this);
}
}
} else {
@@ -149,7 +213,7 @@
if( isConnected ) {
// server is not in STATE_STARTED, but thinks its connected
isConnected = false;
- ((JBossServerConnectionProvider)getProvider()).fireChanged(JBossServerConnection.this);
+ ((AbstractJBossJMXConnectionProvider)getProvider()).fireChanged(JBossServerConnection.this);
}
}
}
Deleted: trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBossServerConnectionProvider.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBossServerConnectionProvider.java 2012-03-23 11:16:00 UTC (rev 39793)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBossServerConnectionProvider.java 2012-03-23 11:21:02 UTC (rev 39794)
@@ -1,291 +0,0 @@
-/*******************************************************************************
- * 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.ide.eclipse.as.jmx.integration;
-
-import java.io.IOException;
-import java.net.MalformedURLException;
-import java.util.ArrayList;
-import java.util.HashMap;
-import java.util.Iterator;
-import java.util.Map;
-
-import org.eclipse.core.runtime.CoreException;
-import org.eclipse.core.runtime.IStatus;
-import org.eclipse.core.runtime.Status;
-import org.eclipse.wst.server.core.IServer;
-import org.eclipse.wst.server.core.IServerLifecycleListener;
-import org.eclipse.wst.server.core.IServerListener;
-import org.eclipse.wst.server.core.ServerCore;
-import org.eclipse.wst.server.core.ServerEvent;
-import org.jboss.ide.eclipse.as.core.JBossServerCorePlugin;
-import org.jboss.ide.eclipse.as.core.Messages;
-import org.jboss.ide.eclipse.as.core.server.internal.ExtendedServerPropertiesAdapterFactory;
-import org.jboss.ide.eclipse.as.core.server.internal.extendedproperties.JBossExtendedProperties;
-import org.jboss.ide.eclipse.as.core.util.ServerConverter;
-import org.jboss.ide.eclipse.as.core.util.ServerUtil;
-import org.jboss.tools.jmx.core.ExtensionManager;
-import org.jboss.tools.jmx.core.IConnectionProvider;
-import org.jboss.tools.jmx.core.IConnectionProviderListener;
-import org.jboss.tools.jmx.core.IConnectionWrapper;
-import org.jboss.tools.jmx.core.IJMXRunnable;
-import org.jboss.tools.jmx.core.JMXException;
-import org.jboss.tools.jmx.core.providers.DefaultConnectionWrapper;
-import org.jboss.tools.jmx.core.providers.MBeanServerConnectionDescriptor;
-
-public class JBossServerConnectionProvider implements IConnectionProvider, IServerLifecycleListener {
- public static final String PROVIDER_ID = "org.jboss.ide.eclipse.as.core.extensions.jmx.JBossServerConnectionProvider"; //$NON-NLS-1$
-
- public static JBossServerConnectionProvider getProvider() {
- return (JBossServerConnectionProvider)ExtensionManager.getProvider(PROVIDER_ID);
- }
-
- public static IConnectionWrapper getConnection(IServer s) {
- return getProvider().findConnection(s);
- }
-
- // Run this action on the server.
- // If the connection doesn't exist, make a new one
- public static void run(IServer s, IJMXRunnable r) throws JMXException {
- IConnectionWrapper c = getConnection(s);
- if( c != null )
- // JMX is not installed here
- c.run(r);
- }
-
-
- private ArrayList<IConnectionProviderListener> listeners =
- new ArrayList<IConnectionProviderListener>();
-
- private HashMap<String, IConnectionWrapper> idToConnection;
- public JBossServerConnectionProvider() {
- ServerCore.addServerLifecycleListener(this);
- }
-
- protected boolean belongsHere(IServer server) {
- return ServerConverter.getJBossServer(server) != null;
- }
-
- protected boolean requiresDefaultProvider(IServer server) {
- if(ServerUtil.isJBoss7(server))
- return true;
- return false;
- }
-
- protected IConnectionWrapper createConnection(IServer server) {
- JBossExtendedProperties props = ExtendedServerPropertiesAdapterFactory.getJBossExtendedProperties(server);
- int type = props == null ? -1 : props.getJMXProviderType();
- switch(type) {
- case JBossExtendedProperties.JMX_AS_3_TO_6_PROVIDER:
- return new JBossServerConnection(server);
- case JBossExtendedProperties.JMX_DEFAULT_PROVIDER:
- return createDefaultServerConnection(server);
- // TODO add as7.1 logic here when we figure it out
- default:
- return null;
- }
- }
-
- protected IConnectionWrapper createDefaultServerConnection(IServer server) {
- // This situation is not even fully supported and requires revisiting
- String SIMPLE_PREFIX = "service:jmx:rmi:///jndi/rmi://"; //$NON-NLS-1$ constants are in jmx.ui feh
- String SIMPLE_SUFFIX = "/jmxrmi"; //$NON-NLS-1$
- String host = server.getHost();
- String port = "1090"; // TODO fix hard code
- String url = SIMPLE_PREFIX + host + ":" + port + SIMPLE_SUFFIX; //$NON-NLS-1$
-
- MBeanServerConnectionDescriptor desc = new
- MBeanServerConnectionDescriptor(server.getName(), url, "", "");
- try {
- return new ExtendedDefaultConnectionWrapper(desc, server);
- } catch( MalformedURLException murle) {
- // TODO log
- return null;
- }
- }
-
- private class ExtendedDefaultConnectionWrapper extends DefaultConnectionWrapper
- implements IServerListener, IConnectionProviderListener {
- private IServer server;
- public ExtendedDefaultConnectionWrapper(
- MBeanServerConnectionDescriptor descriptor, IServer server)
- throws MalformedURLException {
- super(descriptor);
- this.server = server;
- server.addServerListener(this);
- }
- public void serverChanged(ServerEvent event) {
- int eventKind = event.getKind();
- if ((eventKind & ServerEvent.SERVER_CHANGE) != 0) {
- // server change event
- if ((eventKind & ServerEvent.STATE_CHANGE) != 0) {
- boolean started = event.getServer().getServerState() == IServer.STATE_STARTED;
- try {
- if( started )
- connect();
- else
- disconnect();
- } catch( IOException ioe) {
- if( started )
- JBossServerCorePlugin.log(new Status(IStatus.ERROR, JBossServerCorePlugin.PLUGIN_ID, "Error connecting to this server's JMX service: " + event.getServer().getName(), ioe));
- else
- JBossServerCorePlugin.log(new Status(IStatus.ERROR, JBossServerCorePlugin.PLUGIN_ID, "Error disconnecting from this server's JMX service: " + event.getServer().getName(), ioe));
- }
- }
- }
- }
- public void connectionAdded(IConnectionWrapper connection) {
- }
- public void connectionRemoved(IConnectionWrapper connection) {
- if( connection == this )
- server.removeServerListener(this);
- }
- public void connectionChanged(IConnectionWrapper connection) {
- }
- }
-
- public void serverAdded(IServer server) {
- if( belongsHere(server)) {
- getConnections();
- if( !idToConnection.containsKey(server.getId())) {
- IConnectionWrapper connection = createConnection(server);
- idToConnection.put(server.getId(), connection);
- if( connection != null )
- fireAdded(idToConnection.get(server.getId()));
- }
- }
- }
-
- public void serverChanged(IServer server) {
- if( belongsHere(server)) {
- getConnections();
- IConnectionWrapper connection = createConnection(server);
- idToConnection.put(server.getId(), connection);
- if( connection != null )
- fireAdded(idToConnection.get(server.getId()));
- }
- }
-
- public void serverRemoved(IServer server) {
- if( belongsHere(server)) {
- IConnectionWrapper connection;
- if( idToConnection != null ) {
- connection = idToConnection.get(server.getId());
- if( connection != null ) {
- idToConnection.remove(server.getId());
- fireRemoved(connection);
- }
- } else {
- // hasn't been initialized yet
- getConnections();
-
- // but now its missing from the collection, so make one up
- IConnectionWrapper dummy = createConnection(server);
-
- // Make sure we don't fire a removal for a connection that doesn't exist
- if( dummy != null )
- fireRemoved(dummy);
- }
- }
- }
-
- public IConnectionWrapper findConnection(IServer s) {
- getConnections();
- return idToConnection.get(s.getId());
- }
-
- public IConnectionWrapper[] getConnections() {
- // do it all on demand right now
- if( idToConnection == null ) {
- // load them all
- idToConnection = new HashMap<String, IConnectionWrapper>();
- IServer[] allServers = ServerCore.getServers();
- IConnectionWrapper c;
- for( int i = 0; i < allServers.length; i++ ) {
- if( belongsHere(allServers[i])) {
- c = createConnection(allServers[i]);
- if( c != null )
- idToConnection.put(allServers[i].getId(), c);
- }
- }
- }
- ArrayList<IConnectionWrapper> list = new ArrayList<IConnectionWrapper>();
- list.addAll(idToConnection.values());
- return list.toArray(new IConnectionWrapper[list.size()]);
- }
-
- public String getName(IConnectionWrapper wrapper) {
- if( wrapper instanceof JBossServerConnection) {
- return ((JBossServerConnection)wrapper).getName();
- }
- return null;
- }
-
- public String getId() {
- return PROVIDER_ID;
- }
-
- public void addListener(IConnectionProviderListener listener) {
- if( !listeners.contains(listener))
- listeners.add(listener);
- }
-
- public void removeListener(IConnectionProviderListener listener) {
- listeners.remove(listener);
- }
-
- void fireAdded(IConnectionWrapper wrapper) {
- for(Iterator<IConnectionProviderListener> i = listeners.iterator(); i.hasNext();)
- try {
- i.next().connectionAdded(wrapper);
- } catch(RuntimeException re) {
- // Intentionally ignore. This is just to protect against a bad implementer blowing away the stack
- }
- }
-
- void fireChanged(IConnectionWrapper wrapper) {
- for(Iterator<IConnectionProviderListener> i = listeners.iterator(); i.hasNext();)
- try {
- i.next().connectionChanged(wrapper);
- } catch(RuntimeException re) {
- // Intentionally ignore. This is just to protect against a bad implementer blowing away the stack
- }
- }
-
- void fireRemoved(IConnectionWrapper wrapper) {
- for(Iterator<IConnectionProviderListener> i = listeners.iterator(); i.hasNext();)
- try {
- i.next().connectionRemoved(wrapper);
- } catch(RuntimeException re) {
- // Intentionally ignore. This is just to protect against a bad implementer blowing away the stack
- }
- }
- public boolean canCreate() {
- return false;
- }
-
- @SuppressWarnings(value={"unchecked"})
- public IConnectionWrapper createConnection(Map map) throws CoreException {
- throw new CoreException(new Status(IStatus.ERROR, JBossServerCorePlugin.PLUGIN_ID, Messages.NotSupported, null));
- }
-
- public void addConnection(IConnectionWrapper connection) {
- // Not Supported
- }
- public void removeConnection(IConnectionWrapper connection) {
- // Not Supported
- }
- public boolean canDelete(IConnectionWrapper wrapper) {
- return false;
- }
- public void connectionChanged(IConnectionWrapper connection) {
- // do nothing
- }
-}
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBossServerJMXRunner.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBossServerJMXRunner.java 2012-03-23 11:16:00 UTC (rev 39793)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JBossServerJMXRunner.java 2012-03-23 11:21:02 UTC (rev 39794)
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2011 Red Hat, Inc.
+ * Copyright (c) 2012 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,
@@ -30,7 +30,7 @@
}
};
try {
- JBossServerConnectionProvider.run(server, runnable2);
+ JBossJMXConnectionProviderModel.getDefault().run(server, runnable2);
} catch(JMXException jmxe) {
// TODO wrap and log
throw new CoreException(new Status(IStatus.ERROR, Activator.PLUGIN_ID, jmxe.getMessage(), jmxe));
@@ -38,10 +38,14 @@
}
public void beginTransaction(IServer server, Object lock) {
- JMXClassLoaderRepository.getDefault().addConcerned(server, lock);
+ AbstractJBossJMXConnectionProvider provider = JBossJMXConnectionProviderModel.getDefault().getProvider(server);
+ if( provider != null && provider.hasClassloaderRepository())
+ provider.getClassloaderRepository().addConcerned(server, lock);
}
public void endTransaction(IServer server, Object lock) {
- JMXClassLoaderRepository.getDefault().removeConcerned(server, lock);
+ AbstractJBossJMXConnectionProvider provider = JBossJMXConnectionProviderModel.getDefault().getProvider(server);
+ if( provider != null && provider.hasClassloaderRepository())
+ provider.getClassloaderRepository().removeConcerned(server, lock);
}
}
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JMXClassLoaderRepository.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JMXClassLoaderRepository.java 2012-03-23 11:16:00 UTC (rev 39793)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JMXClassLoaderRepository.java 2012-03-23 11:21:02 UTC (rev 39794)
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2011 Red Hat, Inc.
+ * Copyright (c) 2012 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,
@@ -24,7 +24,7 @@
import org.eclipse.wst.server.core.IServer;
import org.jboss.ide.eclipse.as.core.JBossServerCorePlugin;
import org.jboss.ide.eclipse.as.core.Messages;
-import org.jboss.ide.eclipse.as.core.server.IJBossServerConstants;
+import org.jboss.ide.eclipse.as.core.util.IJBossRuntimeResourceConstants;
/**
* A repository for classloaders that relate to servers,
@@ -35,14 +35,6 @@
*
*/
public class JMXClassLoaderRepository {
- protected static JMXClassLoaderRepository instance;
- public static JMXClassLoaderRepository getDefault() {
- if( instance == null ) {
- instance = new JMXClassLoaderRepository();
- }
- return instance;
- }
-
protected HashMap<String, ClassLoader> idToLoader;
protected HashMap<String, ArrayList<Object>> idToConcerned;
protected JMXClassLoaderRepository() {
@@ -107,12 +99,7 @@
*/
protected void loadClassLoader(IServer s) {
try {
- IRuntime rt = s.getRuntime();
- IPath loc = rt.getLocation();
- URL url = loc.append(IJBossServerConstants.CLIENT).append(IJBossServerConstants.JBOSSALL_CLIENT_JAR)
- .toFile().toURI().toURL();
- URLClassLoader loader = new URLClassLoader(new URL[] { url, },
- Thread.currentThread().getContextClassLoader());
+ URLClassLoader loader = createClassLoader(s);
idToLoader.put(s.getId(), loader);
} catch (MalformedURLException murle) {
JBossServerCorePlugin.getDefault().getLog().log(
@@ -121,6 +108,17 @@
}
}
+ protected URLClassLoader createClassLoader(IServer s) throws MalformedURLException {
+ IRuntime rt = s.getRuntime();
+ IPath loc = rt.getLocation();
+ URL url = loc.append(IJBossRuntimeResourceConstants.CLIENT)
+ .append(IJBossRuntimeResourceConstants.JBOSSALL_CLIENT_JAR)
+ .toFile().toURI().toURL();
+ URLClassLoader loader = new URLClassLoader(new URL[] { url, },
+ Thread.currentThread().getContextClassLoader());
+ return loader;
+ }
+
/**
* Are there any concerned citizens for this server?
* @param server
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JMXPoller.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JMXPoller.java 2012-03-23 11:16:00 UTC (rev 39793)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JMXPoller.java 2012-03-23 11:21:02 UTC (rev 39794)
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2011 Red Hat, Inc.
+ * Copyright (c) 2012 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,
@@ -25,6 +25,7 @@
import org.eclipse.core.runtime.Status;
import org.eclipse.osgi.util.NLS;
import org.eclipse.wst.server.core.IServer;
+import org.jboss.ide.eclipse.as.core.ExtensionManager.IServerJMXRunnable;
import org.jboss.ide.eclipse.as.core.JBossServerCorePlugin;
import org.jboss.ide.eclipse.as.core.Messages;
import org.jboss.ide.eclipse.as.core.extensions.events.IEventCodes;
@@ -64,16 +65,13 @@
private RequiresInfoException requiresInfoException = null;
private Properties requiredPropertiesReturned = null;
- private JMXPollerRunnable runnable;
- private JMXSafeRunner runner;
-
public void beginPolling(IServer server, boolean expectedState) throws PollingException {
ceFound = nnfeFound = startingFound = canceled = done = false;
this.server = server;
launchJMXPoller();
}
- private static class JMXPollerRunnable implements IJMXRunnable {
+ private static class JMXPollerRunnable implements IJMXRunnable,IServerJMXRunnable {
private boolean result;
public void run(MBeanServerConnection connection) throws Exception {
Object attInfo = connection.getAttribute(
@@ -85,9 +83,11 @@
private class PollerRunnable implements Runnable {
public void run() {
- JMXClassLoaderRepository.getDefault().addConcerned(server, this);
- runnable = new JMXPollerRunnable();
- runner = new JMXSafeRunner(server);
+ JBossServerJMXRunner runner2 = new JBossServerJMXRunner();
+ runner2.beginTransaction(server, this);
+
+ JMXPollerRunnable runnable = new JMXPollerRunnable();
+ JMXSafeRunner runner = new JMXSafeRunner(server);
while( !done && !canceled) {
try {
runner.run(runnable);
@@ -100,7 +100,7 @@
log(s);
}
} catch(CoreException ce) {
- handleException(ce.getCause());
+ handleException(ce.getCause(), runner);
}
try {
@@ -109,10 +109,10 @@
// Intentionally ignore
}
}
- JMXClassLoaderRepository.getDefault().removeConcerned(server, this);
+ runner2.endTransaction(server, this);
}
- protected void handleException(Throwable t) {
+ protected void handleException(Throwable t, final JMXSafeRunner runner) {
if( t instanceof SecurityException ) {
synchronized(this) {
if( !waitingForCredentials ) {
@@ -251,11 +251,12 @@
}
public IStatus getCurrentStateSynchronous(IServer server) {
- JMXClassLoaderRepository.getDefault().addConcerned(server, this);
+ JBossServerJMXRunner runner = new JBossServerJMXRunner();
+ runner.beginTransaction(server, this);
JMXPollerRunnable runnable2 = new JMXPollerRunnable();
- JMXSafeRunner runner2 = new JMXSafeRunner(server);
+
try {
- runner2.run(runnable);
+ runner.run(server, runnable2);
int started2 = runnable2.result ? STATE_STARTED : STATE_TRANSITION;
if( started2 == STATE_STARTED ) {
Status s = new Status(IStatus.OK, Activator.PLUGIN_ID,
@@ -265,7 +266,7 @@
} catch(CoreException ce) {
// No need to return the specifics of the exception. Just note we could not connect.
} finally {
- JMXClassLoaderRepository.getDefault().removeConcerned(server, this);
+ runner.endTransaction(server, this);
}
Status s = new Status(IStatus.INFO, Activator.PLUGIN_ID,
"JMX Poller did not find a running server on " + server.getHost());
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JMXProvider.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JMXProvider.java 2012-03-23 11:16:00 UTC (rev 39793)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JMXProvider.java 2012-03-23 11:21:02 UTC (rev 39794)
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2011 Red Hat, Inc.
+ * Copyright (c) 2012 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,
@@ -41,7 +41,6 @@
import org.jboss.ide.eclipse.as.core.util.ServerUtil;
import org.jboss.ide.eclipse.as.ui.JBossServerUISharedImages;
import org.jboss.ide.eclipse.as.ui.UIUtil;
-import org.jboss.tools.jmx.core.ExtensionManager;
import org.jboss.tools.jmx.core.IConnectionWrapper;
import org.jboss.tools.jmx.ui.internal.views.navigator.JMXNavigator;
import org.jboss.tools.jmx.ui.internal.views.navigator.MBeanExplorerContentProvider;
@@ -125,10 +124,7 @@
if (view != null) {
Display.getDefault().asyncExec(new Runnable() {
public void run() {
- JBossServerConnectionProvider provider =
- (JBossServerConnectionProvider)ExtensionManager.getProvider(
- JBossServerConnectionProvider.PROVIDER_ID);
- IConnectionWrapper connection = provider.getConnection(server);
+ IConnectionWrapper connection = JBossJMXConnectionProviderModel.getDefault().getConnection(server);
if( connection != null ) {
view.getCommonViewer().collapseAll();
ISelection sel = new StructuredSelection(new Object[] { connection });
@@ -150,7 +146,7 @@
}
public Object[] getChildren(Object parentElement) {
if( parentElement instanceof IServer ) {
- Object sel = JBossServerConnectionProvider.getConnection((IServer)parentElement);
+ Object sel = JBossJMXConnectionProviderModel.getDefault().getConnection((IServer)parentElement);
if( sel != null )
return new Object[] { sel };
}
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JMXSafeRunner.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JMXSafeRunner.java 2012-03-23 11:16:00 UTC (rev 39793)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JMXSafeRunner.java 2012-03-23 11:21:02 UTC (rev 39794)
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2011 Red Hat, Inc.
+ * Copyright (c) 2012 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,
@@ -10,18 +10,13 @@
******************************************************************************/
package org.jboss.ide.eclipse.as.jmx.integration;
-import java.util.Properties;
+import java.util.HashMap;
-import javax.management.MBeanServerConnection;
-import javax.naming.InitialContext;
-
import org.eclipse.core.runtime.CoreException;
-import org.eclipse.core.runtime.IStatus;
-import org.eclipse.core.runtime.Status;
import org.eclipse.wst.server.core.IServer;
-import org.jboss.ide.eclipse.as.core.JBossServerCorePlugin;
-import org.jboss.ide.eclipse.as.core.util.IJBossRuntimeConstants;
import org.jboss.ide.eclipse.as.core.util.ServerConverter;
+import org.jboss.tools.jmx.core.ExtensionManager;
+import org.jboss.tools.jmx.core.IConnectionWrapper;
import org.jboss.tools.jmx.core.IJMXRunnable;
import org.jboss.tools.jmx.core.JMXException;
@@ -42,7 +37,7 @@
this.pass = pass;
}
- public void run(IJMXRunnable r) throws CoreException {
+ public void run(IJMXRunnable r) throws CoreException {
run(server,r,user,pass);
}
@@ -53,29 +48,14 @@
}
public static void run(IServer s, IJMXRunnable r, String user, String pass) throws JMXException {
- JMXClassLoaderRepository.getDefault().addConcerned(s, r);
- ClassLoader currentLoader = Thread.currentThread()
- .getContextClassLoader();
- ClassLoader newLoader = JMXClassLoaderRepository.getDefault()
- .getClassLoader(s);
- Thread.currentThread().setContextClassLoader(newLoader);
- InitialContext ic = null;
- try {
- JMXUtil.setCredentials(s,user,pass);
- Properties p = JMXUtil.getDefaultProperties(s);
- ic = new InitialContext(p);
- Object obj = ic.lookup(IJBossRuntimeConstants.RMIAdaptor);
- ic.close();
- if (obj instanceof MBeanServerConnection) {
- MBeanServerConnection connection = (MBeanServerConnection) obj;
- r.run(connection);
- }
- } catch( Exception e ) {
- throw new JMXException(new Status(IStatus.ERROR, JBossServerCorePlugin.PLUGIN_ID,
- e.getMessage() == null ? e.getClass().getName() : e.getMessage(), e));
- } finally {
- JMXClassLoaderRepository.getDefault().removeConcerned(s, r);
- Thread.currentThread().setContextClassLoader(currentLoader);
+ ExtensionManager.getProviders(); // todo clean up, this is here to ensure it's initialized
+ IConnectionWrapper c = JBossJMXConnectionProviderModel.getDefault().getConnection(s);
+ if( c != null ) {
+ HashMap<String, String> prefs = new HashMap<String, String>();
+ prefs.put("force", "true");
+ prefs.put("user", user);
+ prefs.put("pass", pass);
+ c.run(r, prefs);
}
}
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JMXServerLifecycleListener.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JMXServerLifecycleListener.java 2012-03-23 11:16:00 UTC (rev 39793)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.jmx.integration/src/org/jboss/ide/eclipse/as/jmx/integration/JMXServerLifecycleListener.java 2012-03-23 11:21:02 UTC (rev 39794)
@@ -59,7 +59,7 @@
}
};
try {
- JBossServerConnectionProvider.run(server, r);
+ JBossJMXConnectionProviderModel.getDefault().run(server, r);
} catch( JMXException jmxe ) {
IStatus s = jmxe.getStatus();
IStatus newStatus = new Status(s.getSeverity(), s.getPlugin(), IEventCodes.ADD_DEPLOYMENT_FOLDER_FAIL,
Modified: trunk/jmx/plugins/org.jboss.tools.jmx.core/src/org/jboss/tools/jmx/core/IConnectionWrapper.java
===================================================================
--- trunk/jmx/plugins/org.jboss.tools.jmx.core/src/org/jboss/tools/jmx/core/IConnectionWrapper.java 2012-03-23 11:16:00 UTC (rev 39793)
+++ trunk/jmx/plugins/org.jboss.tools.jmx.core/src/org/jboss/tools/jmx/core/IConnectionWrapper.java 2012-03-23 11:21:02 UTC (rev 39794)
@@ -11,6 +11,7 @@
package org.jboss.tools.jmx.core;
import java.io.IOException;
+import java.util.HashMap;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
@@ -38,5 +39,22 @@
* @return
*/
public Root getRoot();
+
+ /**
+ * Run this runnable
+ * @param runnable
+ * @throws JMXException
+ */
public void run(IJMXRunnable runnable) throws JMXException;
+
+ /**
+ * Run this runnable, but pass in a map full of preferences
+ * that may contribute to the setup
+ *
+ * @param runnable
+ * @param prefs
+ * @throws JMXException
+ */
+ public void run(IJMXRunnable runnable, HashMap<String, String> prefs) throws JMXException;
+
}
Modified: trunk/jmx/plugins/org.jboss.tools.jmx.core/src/org/jboss/tools/jmx/core/providers/DefaultConnectionWrapper.java
===================================================================
--- trunk/jmx/plugins/org.jboss.tools.jmx.core/src/org/jboss/tools/jmx/core/providers/DefaultConnectionWrapper.java 2012-03-23 11:16:00 UTC (rev 39793)
+++ trunk/jmx/plugins/org.jboss.tools.jmx.core/src/org/jboss/tools/jmx/core/providers/DefaultConnectionWrapper.java 2012-03-23 11:21:02 UTC (rev 39794)
@@ -120,4 +120,10 @@
throw new JMXException(s);
}
}
+
+ @Override
+ public void run(IJMXRunnable runnable, HashMap<String, String> prefs)
+ throws JMXException {
+ run(runnable);
+ }
}
Modified: trunk/jmx/plugins/org.jboss.tools.jmx.core/src/org/jboss/tools/jmx/core/tree/NodeBuilder.java
===================================================================
--- trunk/jmx/plugins/org.jboss.tools.jmx.core/src/org/jboss/tools/jmx/core/tree/NodeBuilder.java 2012-03-23 11:16:00 UTC (rev 39793)
+++ trunk/jmx/plugins/org.jboss.tools.jmx.core/src/org/jboss/tools/jmx/core/tree/NodeBuilder.java 2012-03-23 11:21:02 UTC (rev 39794)
@@ -7,6 +7,7 @@
*******************************************************************************/
package org.jboss.tools.jmx.core.tree;
+import javax.management.MBeanServerConnection;
import javax.management.ObjectName;
import org.jboss.tools.jmx.core.IConnectionWrapper;
@@ -20,6 +21,10 @@
}
public static void addToTree(Node root, ObjectName on) {
+ addToTree(root, on, null);
+ }
+
+ public static void addToTree(Node root, ObjectName on, MBeanServerConnection mbsc) {
Node node = buildDomainNode(root, on.getDomain());
String keyPropertyListString = on.getKeyPropertyListString();
String[] properties = keyPropertyListString.split(","); //$NON-NLS-1$
@@ -29,7 +34,7 @@
String value = property.substring(property.indexOf('=') + 1,
property.length());
if (i == properties.length - 1) {
- node = buildObjectNameNode(node, key, value, on);
+ node = buildObjectNameNode(node, key, value, on, mbsc);
} else {
node = buildPropertyNode(node, key, value);
}
@@ -58,7 +63,12 @@
static Node buildObjectNameNode(Node parent, String key, String value,
ObjectName on) {
- Node n = new ObjectNameNode(parent, key, value, on);
+ return buildObjectNameNode(parent, key, value, on, null);
+ }
+
+ static Node buildObjectNameNode(Node parent, String key, String value,
+ ObjectName on, MBeanServerConnection mbsc) {
+ Node n = new ObjectNameNode(parent, key, value, on, mbsc);
if (parent != null) {
return parent.addChildren(n);
}
Modified: trunk/jmx/plugins/org.jboss.tools.jmx.core/src/org/jboss/tools/jmx/core/tree/NodeUtils.java
===================================================================
--- trunk/jmx/plugins/org.jboss.tools.jmx.core/src/org/jboss/tools/jmx/core/tree/NodeUtils.java 2012-03-23 11:16:00 UTC (rev 39793)
+++ trunk/jmx/plugins/org.jboss.tools.jmx.core/src/org/jboss/tools/jmx/core/tree/NodeUtils.java 2012-03-23 11:21:02 UTC (rev 39794)
@@ -59,7 +59,7 @@
Iterator iter = beanInfo.iterator();
while (iter.hasNext()) {
ObjectName on = (ObjectName) iter.next();
- NodeBuilder.addToTree(_root[0], on);
+ NodeBuilder.addToTree(_root[0], on, connection);
subMon.worked(100);
}
subMon.done();
Modified: trunk/jmx/plugins/org.jboss.tools.jmx.core/src/org/jboss/tools/jmx/core/tree/ObjectNameNode.java
===================================================================
--- trunk/jmx/plugins/org.jboss.tools.jmx.core/src/org/jboss/tools/jmx/core/tree/ObjectNameNode.java 2012-03-23 11:16:00 UTC (rev 39793)
+++ trunk/jmx/plugins/org.jboss.tools.jmx.core/src/org/jboss/tools/jmx/core/tree/ObjectNameNode.java 2012-03-23 11:21:02 UTC (rev 39794)
@@ -39,7 +39,31 @@
}
wrapper = array[0];
}
+
+ public ObjectNameNode(Node parent, String key, String value, ObjectName on, MBeanServerConnection mbsc) {
+ super(parent, key, value);
+ Root root = getRoot(parent);
+ IConnectionWrapper connectionWrapper = root.getConnection();
+ this.on = on;
+ final MBeanInfoWrapper[] array = new MBeanInfoWrapper[1];
+ final ObjectName on2 = on;
+ try {
+ if( mbsc != null )
+ wrapper = new MBeanInfoWrapper(on2, mbsc.getMBeanInfo(on2), mbsc, ObjectNameNode.this);
+ else {
+ connectionWrapper.run(new IJMXRunnable() {
+ public void run(MBeanServerConnection mbsc) throws Exception {
+ array[0] = new MBeanInfoWrapper(on2, mbsc.getMBeanInfo(on2), mbsc, ObjectNameNode.this);
+ }
+ });
+ }
+ } catch( Exception e ) {
+ // TODO FIX THIS
+ }
+ wrapper = array[0];
+ }
+
public ObjectName getObjectName() {
return on;
}
Modified: trunk/jmx/tests/org.jboss.tools.jmx.core.test/src/org/jboss/tools/jmx/core/test/MockConnectionWrapper.java
===================================================================
--- trunk/jmx/tests/org.jboss.tools.jmx.core.test/src/org/jboss/tools/jmx/core/test/MockConnectionWrapper.java 2012-03-23 11:16:00 UTC (rev 39793)
+++ trunk/jmx/tests/org.jboss.tools.jmx.core.test/src/org/jboss/tools/jmx/core/test/MockConnectionWrapper.java 2012-03-23 11:21:02 UTC (rev 39794)
@@ -11,6 +11,7 @@
package org.jboss.tools.jmx.core.test;
import java.io.IOException;
+import java.util.HashMap;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
@@ -51,4 +52,8 @@
public void loadRoot(IProgressMonitor monitor) {
}
+ public void run(IJMXRunnable runnable, HashMap<String, String> prefs)
+ throws JMXException {
+ }
+
}
14 years
JBoss Tools SVN: r39793 - in trunk/forge/plugins/org.jboss.tools.forge.runtime: META-INF and 206 other directories.
by jbosstools-commits@lists.jboss.org
Author: koen.aers(a)jboss.com
Date: 2012-03-23 07:16:00 -0400 (Fri, 23 Mar 2012)
New Revision: 39793
Added:
trunk/forge/plugins/org.jboss.tools.forge.runtime/LICENSE.txt
trunk/forge/plugins/org.jboss.tools.forge.runtime/README.txt
trunk/forge/plugins/org.jboss.tools.forge.runtime/bin/
trunk/forge/plugins/org.jboss.tools.forge.runtime/bin/forge
trunk/forge/plugins/org.jboss.tools.forge.runtime/bin/forge.bat
trunk/forge/plugins/org.jboss.tools.forge.runtime/copyright.txt
trunk/forge/plugins/org.jboss.tools.forge.runtime/jboss-modules.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/lib/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/ch/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/ch/qos/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/ch/qos/cal10n/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/ch/qos/cal10n/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/ch/qos/cal10n/main/cal10n-api-0.7.2.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/ch/qos/cal10n/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/com/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/com/google/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/com/google/guava/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/com/google/guava/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/com/google/guava/main/guava-r06.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/com/google/guava/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/com/sun/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/com/sun/xml/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/com/sun/xml/bind/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/com/sun/xml/bind/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/com/sun/xml/bind/main/jaxb-impl-2.2.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/com/sun/xml/bind/main/jaxb-xjc-2.2.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/com/sun/xml/bind/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javaee/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javaee/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javaee/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javaee/api/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/activation/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/activation/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/activation/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/activation/api/main/activation-1.1.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/activation/api/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/annotation/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/annotation/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/annotation/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/annotation/api/main/jboss-annotations-api_1.1_spec-1.0.0.Final.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/annotation/api/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/api/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ejb/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ejb/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ejb/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ejb/api/main/jboss-ejb-api_3.1_spec-1.0.0.Final.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ejb/api/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/el/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/el/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/el/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/el/api/main/jboss-el-api_2.2_spec-1.0.0.Final.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/el/api/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/api/main/cdi-api-1.0-SP4.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/api/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/deploy/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/deploy/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/deploy/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/deploy/api/main/jboss-jad-api_1.2_spec-1.0.0.Final.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/deploy/api/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/faces/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/faces/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/faces/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/faces/api/main/jboss-jsf-api_2.1_spec-2.0.0.Beta1.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/faces/api/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/inject/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/inject/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/inject/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/inject/api/main/javax.inject-1.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/inject/api/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/interceptor/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/interceptor/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/interceptor/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/interceptor/api/main/jboss-interceptors-api_1.1_spec-1.0.0.Final.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/interceptor/api/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jms/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jms/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jms/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jms/api/main/jboss-jms-api_1.1_spec-1.0.0.Final.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jms/api/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jws/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jws/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jws/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jws/api/main/jsr181-api-1.0-MR1.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jws/api/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/mail/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/mail/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/mail/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/mail/api/main/mail-1.4.2.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/mail/api/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/management/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/management/j2ee/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/management/j2ee/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/management/j2ee/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/management/j2ee/api/main/jboss-j2eemgmt-api_1.1_spec-1.0.0.Final.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/management/j2ee/api/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/persistence/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/persistence/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/persistence/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/persistence/api/main/hibernate-jpa-2.0-api-1.0.1.Final.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/persistence/api/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/resource/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/resource/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/resource/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/resource/api/main/jboss-connector-api_1.6_spec-1.0.0.Final.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/resource/api/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/rmi/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/rmi/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/rmi/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/rmi/api/main/jboss-rmi-api_1.0_spec-1.0.0.Final.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/rmi/api/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/auth/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/auth/message/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/auth/message/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/auth/message/api/main/
trunk/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
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/auth/message/api/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/jacc/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/jacc/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/jacc/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/jacc/api/main/jboss-jacc-api_1.4_spec-1.0.0.Final.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/jacc/api/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/api/main/jbosgi-xservice.properties
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/api/main/jboss-servlet-api_3.0_spec-1.0.0.Final.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/api/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jsp/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jsp/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jsp/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jsp/api/main/jboss-jsp-api_2.2_spec-1.0.0.Final.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jsp/api/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jstl/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jstl/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jstl/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jstl/api/main/jboss-jstl-api_1.2_spec-1.0.0.Final.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jstl/api/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/transaction/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/transaction/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/transaction/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/transaction/api/main/jbosgi-xservice.properties
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/transaction/api/main/jboss-transaction-api_1.1_spec-1.0.0.Final.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/transaction/api/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/validation/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/validation/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/validation/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/validation/api/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/validation/api/main/validation-api-1.0.0.GA.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ws/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ws/rs/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ws/rs/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ws/rs/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ws/rs/api/main/jboss-jaxrs-api_1.1_spec-1.0.0.Final.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ws/rs/api/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/bind/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/bind/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/bind/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/bind/api/main/jboss-jaxb-api_2.2_spec-1.0.3.Final.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/bind/api/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/jaxp-provider/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/jaxp-provider/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/jaxp-provider/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/registry/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/registry/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/registry/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/registry/api/main/jboss-jaxr-api_1.0_spec-1.0.0.Final.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/registry/api/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/rpc/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/rpc/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/rpc/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/rpc/api/main/jboss-jaxrpc-api_1.1_spec-1.0.0.Final.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/rpc/api/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/soap/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/soap/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/soap/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/soap/api/main/jboss-saaj-api_1.3_spec-1.0.0.Final.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/soap/api/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/stream/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/stream/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/stream/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/stream/api/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/ws/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/ws/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/ws/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/ws/api/main/jboss-jaxws-api_2.2_spec-1.0.0.Final.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/ws/api/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/jline/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/jline/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/jline/main/jansi-1.5.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/jline/main/jline-2.5.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/jline/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/config/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/config/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/config/main/commons-beanutils-1.8.3.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/config/main/commons-collections-3.2.1.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/config/main/commons-configuration-1.7.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/config/main/commons-digester-1.8.1.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/config/main/commons-lang-2.6.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/config/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/logging/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/logging/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/logging/main/commons-logging-1.1.1.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/logging/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/httpcomponents/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/httpcomponents/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/httpcomponents/main/httpclient-4.0.1.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/httpcomponents/main/httpcore-4.0.1.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/httpcomponents/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/log4j/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/log4j/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/log4j/main/apache-log4j-extras-1.1.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/log4j/main/log4j-1.2.16.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/log4j/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/common-3.3.0-v20070426.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/contenttype-3.2.100-v20070319.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/core-3.3.0-v_771.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/jobs-3.3.0-v20070423.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/osgi-3.4.3.R34x_v20081215-1030.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/preferences-3.2.100-v20070522.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/resources-3.3.0-v20070604.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/runtime-3.3.100-v20070530.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/text-3.3.0-v20070606-0010.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/javassist/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/javassist/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/javassist/main/javassist-3.12.1.GA.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/javassist/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/event-bus/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/event-bus/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/event-bus/main/forge-event-bus-1.0.1.Final.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/event-bus/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/forge-git-tools-1.0.1.Final.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/jsch-0.1.44-1.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/org.eclipse.jgit-1.2.0.201112221803-r.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/api/main/forge-javaee-api-1.0.1.Final.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/api/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/impl/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/impl/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/impl/main/forge-javaee-impl-1.0.1.Final.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/impl/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/main/forge-dev-plugins-1.0.1.Final.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/main/forge-shell-1.0.1.Final.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/aether-api-1.11.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/aether-connector-wagon-1.11.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/aether-impl-1.11.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/aether-spi-1.11.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/aether-util-1.11.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/commons-cli-1.2.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/forge-maven-api-1.0.1.Final.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-aether-provider-3.0.3.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-artifact-3.0.3.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-compat-3.0.3.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-core-3.0.3.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-embedder-3.0.3.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-model-3.0.3.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-model-builder-3.0.3.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-plugin-api-3.0.3.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-repository-metadata-3.0.3.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-settings-3.0.3.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/maven-settings-builder-3.0.3.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/plexus-cipher-1.4.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/plexus-classworlds-2.4.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/plexus-component-annotations-1.5.5.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/plexus-interpolation-1.14.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/plexus-sec-dispatcher-1.3.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/plexus-utils-2.0.6.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/sisu-guice-2.9.4-no_aop.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/sisu-inject-bean-2.1.1.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/sisu-inject-plexus-2.1.1.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/wagon-file-2.0.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/wagon-http-lightweight-2.0.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/wagon-http-shared4-2.0.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/wagon-provider-api-1.0-beta-7.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/model/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/model/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/model/main/forge-project-model-maven-1.0.1.Final.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/model/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/api/main/forge-parser-java-api-1.0.1.Final.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/api/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/impl/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/impl/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/impl/main/forge-parser-java-1.0.1.Final.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/impl/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/xml/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/xml/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/xml/main/forge-parser-xml-1.0.1.Final.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/xml/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/api/main/forge-scaffold-api-1.0.1.Final.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/api/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/impl/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/impl/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/impl/main/forge-scaffold-faces-1.0.1.Final.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/impl/main/forge-scaffold-plugins-1.0.1.Final.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/impl/main/metawidget-all-2.2.Beta1.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/impl/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/shell/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/shell/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/shell/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/shell/api/main/forge-shell-api-1.0.1.Final.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/shell/api/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/main/jboss-interceptor-core-2.0.0.CR1.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/spi/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/spi/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/spi/main/jboss-interceptor-spi-2.0.0.CR1.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/spi/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/logging/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/logging/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/logging/main/jboss-logging-3.1.0.GA.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/logging/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/logmanager/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/logmanager/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/logmanager/main/jboss-logmanager-1.2.2.GA.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/logmanager/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/modules/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/modules/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/modules/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/seam/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/seam/render/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/seam/render/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/seam/render/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/seam/render/main/seam-render-1.0.0.Final.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/shrinkwrap/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/shrinkwrap/descriptors/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/shrinkwrap/descriptors/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/shrinkwrap/descriptors/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/shrinkwrap/descriptors/main/shrinkwrap-descriptors-api-1.1.0-beta-1.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/shrinkwrap/descriptors/main/shrinkwrap-descriptors-impl-1.1.0-beta-1.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/shrinkwrap/descriptors/main/shrinkwrap-descriptors-spi-1.1.0-beta-1.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/solder/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/solder/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/solder/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/solder/main/solder-api-3.1.0.Beta5.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/solder/main/solder-impl-3.1.0.Beta5.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/solder/main/solder-logging-3.1.0.Beta5.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/api/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/api/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/api/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/api/main/weld-api-1.1.Beta2.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/core/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/core/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/core/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/core/main/weld-core-1.1.2.Final.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/core/main/weld-se-core-1.1.2.Final.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/spi/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/spi/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/spi/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/spi/main/weld-spi-1.1.Beta2.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/mvel/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/mvel/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/mvel/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/mvel/main/mvel2-2.1.Beta7.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/ext/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/ext/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/ext/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/ext/main/slf4j-ext-1.5.10.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/impl/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/impl/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/impl/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/impl/main/slf4j-log4j12-1.5.10.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/main/slf4j-api-1.5.10.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/yaml/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/yaml/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/yaml/main/module.xml
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/yaml/main/snakeyaml-1.7.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/sun/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/sun/misc/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/sun/misc/main/
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/sun/misc/main/module.xml
Modified:
trunk/forge/plugins/org.jboss.tools.forge.runtime/.classpath
trunk/forge/plugins/org.jboss.tools.forge.runtime/META-INF/MANIFEST.MF
trunk/forge/plugins/org.jboss.tools.forge.runtime/build.properties
Log:
JBIDE-11249: Forge is not recognizing/enabling right features in all projects generated by archetypes
-> upload of Forge 1.0.1.Final
Modified: trunk/forge/plugins/org.jboss.tools.forge.runtime/.classpath
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/.classpath 2012-03-23 11:14:31 UTC (rev 39792)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/.classpath 2012-03-23 11:16:00 UTC (rev 39793)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
- <classpathentry exported="true" kind="lib" path="modules/org/jboss/forge/shell/api/main/forge-shell-api-1.0.0.Final.jar"/>
+ <classpathentry exported="true" kind="lib" path="modules/org/jboss/forge/shell/api/main/forge-shell-api-1.0.1.Final.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"/>
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/LICENSE.txt
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/LICENSE.txt (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/LICENSE.txt 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/LICENSE.txt
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Modified: trunk/forge/plugins/org.jboss.tools.forge.runtime/META-INF/MANIFEST.MF
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/META-INF/MANIFEST.MF 2012-03-23 11:14:31 UTC (rev 39792)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/META-INF/MANIFEST.MF 2012-03-23 11:16:00 UTC (rev 39793)
@@ -17,5 +17,5 @@
org.jboss.forge.shell.spi
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.Final.jar
+ modules/org/jboss/forge/shell/api/main/forge-shell-api-1.0.1.Final.jar
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/README.txt
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/README.txt (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/README.txt 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/README.txt
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/bin/forge
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/bin/forge (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/bin/forge 2012-03-23 11:16:00 UTC (rev 39793)
@@ -0,0 +1,173 @@
+#!/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
+# -----------------------------------------------------------------------
+
+PLUGIN_DIR=""
+
+QUOTED_ARGS=""
+while [ "$1" != "" ] ; do
+
+ if [ "$PLUGIN_DIR" == "-pluginDir" ] ; then
+ PLUGIN_DIR="$1"
+ fi
+
+ if [ "$1" == "-pluginDir" ] ; then
+ PLUGIN_DIR="-pluginDir"
+ fi
+
+ 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:$PLUGIN_DIR\" org.jboss.forge"
+
+eval $forge_exec_cmd "$QUOTED_ARGS"
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/bin/forge.bat
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/bin/forge.bat (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/bin/forge.bat 2012-03-23 11:16:00 UTC (rev 39793)
@@ -0,0 +1,169 @@
+@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 %USERHOME% to equivalent of $HOME
+if "%USERHOME%" == "" (set "USERHOME=%HOMEDRIVE%%HOMEPATH%")
+
+@REM Execute a user defined script before this one
+if exist "%USERHOME%\forgerc_pre.bat" call "%USERHOME%\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 chkJVersion
+
+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
+
+:chkJVersion
+set PATH="%JAVA_HOME%\bin";%PATH%
+
+for /f "tokens=3" %%g in ('java -version 2^>^&1 ^| findstr /i "version"') do (
+ set JAVAVER=%%g
+)
+for /f "delims=. tokens=1-3" %%v in ("%JAVAVER%") do (
+ set JAVAVER_MINOR=%%w
+)
+
+if %JAVAVER_MINOR% geq 6 goto chkFHome
+
+echo.
+echo A Java 1.6 or higher JRE is required to run Forge. "%JAVA_HOME%\bin\java.exe" is version %JAVAVER%
+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 ====
+
+@REM Initializing the argument line and the plugin directory if any
+:init
+set FORGE_CMD_LINE_ARGS=
+set FORGE_PLUGIN_DIR=
+:initArgs
+if %1a==a goto endInit
+set FORGE_CMD_LINE_ARGS=%FORGE_CMD_LINE_ARGS% %1
+if "%FORGE_PLUGIN_DIR%"=="-pluginDir" set FORGE_PLUGIN_DIR=%1
+if "%1"=="-pluginDir" set FORGE_PLUGIN_DIR=%1
+shift
+goto initArgs
+@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;%USERHOME%\.forge\plugins;%FORGE_PLUGIN_DIR%" 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 "%USERHOME%\forgerc_post.bat" call "%USERHOME%\forgerc_post.bat"
+
+if "%FORGE_TERMINATE_CMD%" == "on" exit %ERROR_CODE%
+
+cmd /C exit /B %ERROR_CODE%
+
+
Modified: trunk/forge/plugins/org.jboss.tools.forge.runtime/build.properties
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/build.properties 2012-03-23 11:14:31 UTC (rev 39792)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/build.properties 2012-03-23 11:16:00 UTC (rev 39793)
@@ -1,10 +1,8 @@
bin.includes = META-INF/,\
- .,\
modules/,\
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.Final.jar
+ modules/org/jboss/forge/shell/api/main/forge-shell-api-1.0.1.Final.jar
src.includes = *
jars.compile.order = .
-source..=src/
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/copyright.txt
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/copyright.txt (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/copyright.txt 2012-03-23 11:16:00 UTC (rev 39793)
@@ -0,0 +1 @@
+Lincoln Baxter, III <lincolnbaxter(a)gmail.com>
\ No newline at end of file
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/copyright.txt
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/jboss-modules.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/jboss-modules.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/ch/qos/cal10n/main/cal10n-api-0.7.2.jar
===================================================================
(Binary files differ)
Property changes on: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/ch/qos/cal10n/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/ch/qos/cal10n/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/ch/qos/cal10n/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/ch/qos/cal10n/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/com/google/guava/main/guava-r06.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/com/google/guava/main/guava-r06.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/com/google/guava/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/com/google/guava/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/com/google/guava/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/com/google/guava/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/com/sun/xml/bind/main/jaxb-impl-2.2.jar
===================================================================
(Binary files differ)
Property changes on: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/com/sun/xml/bind/main/jaxb-xjc-2.2.jar
===================================================================
(Binary files differ)
Property changes on: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/com/sun/xml/bind/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/com/sun/xml/bind/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/com/sun/xml/bind/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/com/sun/xml/bind/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javaee/api/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javaee/api/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javaee/api/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javaee/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/activation/api/main/activation-1.1.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/activation/api/main/activation-1.1.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/activation/api/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/activation/api/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/activation/api/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/activation/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/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: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/annotation/api/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/annotation/api/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/annotation/api/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/annotation/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/api/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/api/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/api/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/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: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ejb/api/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ejb/api/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ejb/api/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ejb/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/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: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/el/api/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/el/api/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/el/api/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/el/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/api/main/cdi-api-1.0-SP4.jar
===================================================================
(Binary files differ)
Property changes on: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/api/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/api/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/api/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/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: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/deploy/api/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/deploy/api/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/deploy/api/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/enterprise/deploy/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/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: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/faces/api/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/faces/api/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/faces/api/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/faces/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/inject/api/main/javax.inject-1.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/inject/api/main/javax.inject-1.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/inject/api/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/inject/api/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/inject/api/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/inject/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/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: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/interceptor/api/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/interceptor/api/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/interceptor/api/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/interceptor/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/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: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jms/api/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jms/api/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jms/api/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jms/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jws/api/main/jsr181-api-1.0-MR1.jar
===================================================================
(Binary files differ)
Property changes on: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jws/api/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jws/api/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jws/api/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/jws/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/mail/api/main/mail-1.4.2.jar
===================================================================
(Binary files differ)
Property changes on: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/mail/api/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/mail/api/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/mail/api/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/mail/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/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: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/management/j2ee/api/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/management/j2ee/api/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/management/j2ee/api/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/management/j2ee/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/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: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/persistence/api/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/persistence/api/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/persistence/api/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/persistence/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/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: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/resource/api/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/resource/api/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/resource/api/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/resource/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/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: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/rmi/api/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/rmi/api/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/rmi/api/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/rmi/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/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: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/auth/message/api/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/auth/message/api/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/auth/message/api/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/auth/message/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/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: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/jacc/api/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/jacc/api/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/jacc/api/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/security/jacc/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/api/main/jbosgi-xservice.properties
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/api/main/jbosgi-xservice.properties (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/api/main/jbosgi-xservice.properties 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/api/main/jbosgi-xservice.properties
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/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: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/api/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/api/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/api/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/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: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jsp/api/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jsp/api/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jsp/api/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jsp/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/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: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jstl/api/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jstl/api/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jstl/api/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/servlet/jstl/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/transaction/api/main/jbosgi-xservice.properties
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/transaction/api/main/jbosgi-xservice.properties (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/transaction/api/main/jbosgi-xservice.properties 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/transaction/api/main/jbosgi-xservice.properties
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/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: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/transaction/api/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/transaction/api/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/transaction/api/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/transaction/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/validation/api/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/validation/api/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/validation/api/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/validation/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/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: trunk/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: trunk/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: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ws/rs/api/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ws/rs/api/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ws/rs/api/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/ws/rs/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/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: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/bind/api/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/bind/api/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/bind/api/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/bind/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/jaxp-provider/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/jaxp-provider/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/jaxp-provider/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/jaxp-provider/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/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: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/registry/api/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/registry/api/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/registry/api/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/registry/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/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: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/rpc/api/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/rpc/api/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/rpc/api/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/rpc/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/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: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/soap/api/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/soap/api/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/soap/api/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/soap/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/stream/api/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/stream/api/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/stream/api/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/stream/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/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: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/ws/api/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/ws/api/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/ws/api/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/javax/xml/ws/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/jline/main/jansi-1.5.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/jline/main/jansi-1.5.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/jline/main/jline-2.5.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/jline/main/jline-2.5.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/jline/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/jline/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/jline/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/jline/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/config/main/commons-beanutils-1.8.3.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/config/main/commons-beanutils-1.8.3.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/config/main/commons-collections-3.2.1.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/config/main/commons-collections-3.2.1.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/config/main/commons-configuration-1.7.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/config/main/commons-configuration-1.7.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/config/main/commons-digester-1.8.1.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/config/main/commons-digester-1.8.1.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/config/main/commons-lang-2.6.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/config/main/commons-lang-2.6.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/config/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/config/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/config/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -0,0 +1,39 @@
+<?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.commons.config">
+ <resources>
+ <resource-root path="commons-beanutils-1.8.3.jar"/>
+ <resource-root path="commons-collections-3.2.1.jar"/>
+ <resource-root path="commons-configuration-1.7.jar"/>
+ <resource-root path="commons-digester-1.8.1.jar"/>
+ <resource-root path="commons-lang-2.6.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api" />
+ <module name="org.apache.commons.logging"/>
+ </dependencies>
+</module>
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/config/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/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: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/logging/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/logging/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/logging/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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.commons.logging">
+ <resources>
+ <resource-root path="commons-logging-1.1.1.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api" />
+ </dependencies>
+</module>
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/commons/logging/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/httpcomponents/main/httpclient-4.0.1.jar
===================================================================
(Binary files differ)
Property changes on: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/httpcomponents/main/httpcore-4.0.1.jar
===================================================================
(Binary files differ)
Property changes on: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/httpcomponents/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/httpcomponents/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/httpcomponents/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/httpcomponents/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/log4j/main/apache-log4j-extras-1.1.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/log4j/main/apache-log4j-extras-1.1.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/log4j/main/log4j-1.2.16.jar
===================================================================
(Binary files differ)
Property changes on: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/log4j/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/log4j/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/log4j/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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.apache.log4j">
+ <resources>
+ <resource-root path="log4j-1.2.16.jar"/>
+ <resource-root path="apache-log4j-extras-1.1.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api"/>
+ </dependencies>
+</module>
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/apache/log4j/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/common-3.3.0-v20070426.jar
===================================================================
(Binary files differ)
Property changes on: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/contenttype-3.2.100-v20070319.jar
===================================================================
(Binary files differ)
Property changes on: trunk/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: trunk/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: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/jobs-3.3.0-v20070423.jar
===================================================================
(Binary files differ)
Property changes on: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/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: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/preferences-3.2.100-v20070522.jar
===================================================================
(Binary files differ)
Property changes on: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/resources-3.3.0-v20070604.jar
===================================================================
(Binary files differ)
Property changes on: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/eclipse/javaparser/main/runtime-3.3.100-v20070530.jar
===================================================================
(Binary files differ)
Property changes on: trunk/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: trunk/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: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/javassist/main/javassist-3.12.1.GA.jar
===================================================================
(Binary files differ)
Property changes on: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/javassist/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/javassist/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/javassist/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/javassist/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/event-bus/main/forge-event-bus-1.0.1.Final.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/event-bus/main/forge-event-bus-1.0.1.Final.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/event-bus/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/event-bus/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/event-bus/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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.1.Final.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api" />
+ <module name="javax.enterprise.api" />
+ </dependencies>
+
+</module>
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/event-bus/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/forge-git-tools-1.0.1.Final.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/forge-git-tools-1.0.1.Final.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/jsch-0.1.44-1.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/jsch-0.1.44-1.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<module xmlns="urn:jboss:module:1.0" name="org.jboss.forge.git">
+
+ <resources>
+ <resource-root path="jsch-0.1.44-1.jar"/>
+ <resource-root path="forge-git-tools-1.0.1.Final.jar"/>
+ <resource-root path="org.eclipse.jgit-1.2.0.201112221803-r.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api" />
+ <module name="org.jboss.forge.shell.api"/>
+ </dependencies>
+
+</module>
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/org.eclipse.jgit-1.2.0.201112221803-r.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/org.eclipse.jgit-1.2.0.201112221803-r.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/api/main/forge-javaee-api-1.0.1.Final.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/api/main/forge-javaee-api-1.0.1.Final.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/api/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/api/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/api/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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.1.Final.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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/impl/main/forge-javaee-impl-1.0.1.Final.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/impl/main/forge-javaee-impl-1.0.1.Final.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/impl/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/impl/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/impl/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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.1.Final.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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/impl/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/main/forge-dev-plugins-1.0.1.Final.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/main/forge-dev-plugins-1.0.1.Final.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/main/forge-shell-1.0.1.Final.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/main/forge-shell-1.0.1.Final.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -0,0 +1,139 @@
+<?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.1.Final.jar"/>
+ <resource-root path="forge-dev-plugins-1.0.1.Final.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="com.sun.xml.bind" />
+
+ <module name="javax.annotation.api" />
+ <module name="jline" />
+
+ <module name="org.apache.commons.logging"/>
+ <module name="org.apache.commons.config"/>
+ <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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/forge-maven-api-1.0.1.Final.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/forge-maven-api-1.0.1.Final.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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.1.Final.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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/model/main/forge-project-model-maven-1.0.1.Final.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/model/main/forge-project-model-maven-1.0.1.Final.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/model/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/model/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/model/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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.1.Final.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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/maven/model/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/api/main/forge-parser-java-api-1.0.1.Final.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/api/main/forge-parser-java-api-1.0.1.Final.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/api/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/api/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/api/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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.1.Final.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api" />
+ </dependencies>
+
+</module>
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/impl/main/forge-parser-java-1.0.1.Final.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/impl/main/forge-parser-java-1.0.1.Final.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/impl/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/impl/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/impl/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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.1.Final.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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/java/impl/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/xml/main/forge-parser-xml-1.0.1.Final.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/xml/main/forge-parser-xml-1.0.1.Final.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/xml/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/xml/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/xml/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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.1.Final.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api" />
+ </dependencies>
+
+</module>
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/parser/xml/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/api/main/forge-scaffold-api-1.0.1.Final.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/api/main/forge-scaffold-api-1.0.1.Final.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/api/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/api/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/api/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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.1.Final.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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/impl/main/forge-scaffold-faces-1.0.1.Final.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/impl/main/forge-scaffold-faces-1.0.1.Final.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/impl/main/forge-scaffold-plugins-1.0.1.Final.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/impl/main/forge-scaffold-plugins-1.0.1.Final.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/impl/main/metawidget-all-2.2.Beta1.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/impl/main/metawidget-all-2.2.Beta1.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/impl/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/impl/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/impl/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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.1.Final.jar"/>
+ <resource-root path="forge-scaffold-faces-1.0.1.Final.jar"/>
+ <resource-root path="metawidget-all-2.2.Beta1.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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/impl/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/shell/api/main/forge-shell-api-1.0.1.Final.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/shell/api/main/forge-shell-api-1.0.1.Final.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/shell/api/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/shell/api/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/shell/api/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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.1.Final.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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/shell/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/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: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/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: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/spi/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/spi/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/spi/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/interceptor/spi/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/logging/main/jboss-logging-3.1.0.GA.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/logging/main/jboss-logging-3.1.0.GA.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/logging/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/logging/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/logging/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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.jboss.logging">
+ <resources>
+ <resource-root path="jboss-logging-3.1.0.GA.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="org.jboss.logmanager"/>
+ </dependencies>
+</module>
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/logging/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/logmanager/main/jboss-logmanager-1.2.2.GA.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/logmanager/main/jboss-logmanager-1.2.2.GA.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/logmanager/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/logmanager/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/logmanager/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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.2.GA.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies/>
+</module>
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/logmanager/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/modules/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/modules/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/modules/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/modules/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/seam/render/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/seam/render/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/seam/render/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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.Final.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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/seam/render/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/seam/render/main/seam-render-1.0.0.Final.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/seam/render/main/seam-render-1.0.0.Final.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/shrinkwrap/descriptors/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/shrinkwrap/descriptors/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/shrinkwrap/descriptors/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/shrinkwrap/descriptors/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/solder/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/solder/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/solder/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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.Beta5.jar"/>
+ <resource-root path="solder-impl-3.1.0.Beta5.jar"/>
+ <resource-root path="solder-logging-3.1.0.Beta5.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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/solder/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/solder/main/solder-api-3.1.0.Beta5.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/solder/main/solder-api-3.1.0.Beta5.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/solder/main/solder-impl-3.1.0.Beta5.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/solder/main/solder-impl-3.1.0.Beta5.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/solder/main/solder-logging-3.1.0.Beta5.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/solder/main/solder-logging-3.1.0.Beta5.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/api/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/api/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/api/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/api/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/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: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/core/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/core/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/core/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/core/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/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: trunk/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: trunk/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: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/spi/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/spi/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/spi/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/weld/spi/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/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: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/mvel/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/mvel/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/mvel/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/mvel/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/mvel/main/mvel2-2.1.Beta7.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/mvel/main/mvel2-2.1.Beta7.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/ext/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/ext/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/ext/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/ext/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/ext/main/slf4j-ext-1.5.10.jar
===================================================================
(Binary files differ)
Property changes on: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/impl/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/impl/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/impl/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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-log4j12-1.5.10.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="org.slf4j"/>
+ <module name="org.apache.log4j"/>
+ </dependencies>
+</module>
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/impl/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/impl/main/slf4j-log4j12-1.5.10.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/impl/main/slf4j-log4j12-1.5.10.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/main/slf4j-api-1.5.10.jar
===================================================================
(Binary files differ)
Property changes on: trunk/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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/yaml/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/yaml/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/yaml/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/yaml/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/yaml/main/snakeyaml-1.7.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/yaml/main/snakeyaml-1.7.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/sun/misc/main/module.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/sun/misc/main/module.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/sun/misc/main/module.xml 2012-03-23 11:16:00 UTC (rev 39793)
@@ -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: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/sun/misc/main/module.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
14 years
JBoss Tools SVN: r39792 - trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.core/src/org/jboss/tools/hibernate/jpt/core/internal.
by jbosstools-commits@lists.jboss.org
Author: dgeraskov
Date: 2012-03-23 07:14:31 -0400 (Fri, 23 Mar 2012)
New Revision: 39792
Modified:
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.core/src/org/jboss/tools/hibernate/jpt/core/internal/HibernateJpaProject.java
Log:
https://issues.jboss.org/browse/JBIDE-11378
NPE when remove package declaration from package-info.java
Modified: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.core/src/org/jboss/tools/hibernate/jpt/core/internal/HibernateJpaProject.java
===================================================================
--- trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.core/src/org/jboss/tools/hibernate/jpt/core/internal/HibernateJpaProject.java 2012-03-23 10:54:57 UTC (rev 39791)
+++ trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.core/src/org/jboss/tools/hibernate/jpt/core/internal/HibernateJpaProject.java 2012-03-23 11:14:31 UTC (rev 39792)
@@ -131,7 +131,7 @@
return new TransformationIterable<JavaResourcePackage, String>(this.getInternalMappedSourceJavaResourcePackages()) {
@Override
protected String transform(JavaResourcePackage jrpPackage) {
- return jrpPackage.getName();
+ return jrpPackage == null ? null : jrpPackage.getName();
}
};
}
14 years
JBoss Tools SVN: r39791 - trunk/forge/plugins/org.jboss.tools.forge.runtime.
by jbosstools-commits@lists.jboss.org
Author: koen.aers(a)jboss.com
Date: 2012-03-23 06:54:57 -0400 (Fri, 23 Mar 2012)
New Revision: 39791
Removed:
trunk/forge/plugins/org.jboss.tools.forge.runtime/LICENSE.txt
trunk/forge/plugins/org.jboss.tools.forge.runtime/README.txt
trunk/forge/plugins/org.jboss.tools.forge.runtime/bin/
trunk/forge/plugins/org.jboss.tools.forge.runtime/copyright.txt
trunk/forge/plugins/org.jboss.tools.forge.runtime/jboss-modules.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/
Log:
JBIDE-11249: Forge is not recognizing/enabling right features in all projects generated by archetypes
-> removal of Forge 1.0.0.Final
Deleted: trunk/forge/plugins/org.jboss.tools.forge.runtime/LICENSE.txt
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/LICENSE.txt 2012-03-23 09:31:20 UTC (rev 39790)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/LICENSE.txt 2012-03-23 10:54:57 UTC (rev 39791)
@@ -1,189 +0,0 @@
-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.
Deleted: trunk/forge/plugins/org.jboss.tools.forge.runtime/README.txt
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/README.txt 2012-03-23 09:31:20 UTC (rev 39790)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/README.txt 2012-03-23 10:54:57 UTC (rev 39791)
@@ -1,11 +0,0 @@
- _____
- | ___|__ _ __ __ _ ___
- | |_ / _ \| `__/ _` |/ _ \ \\
- | _| (_) | | | (_| | __/ //
- |_| \___/|_| \__, |\___|
- |___/
-
-Welcome to JBoss Forge
-http://jboss.org/forge
-
-Go to above link for Documentations, Plugins, and Additional Information
\ No newline at end of file
Deleted: trunk/forge/plugins/org.jboss.tools.forge.runtime/copyright.txt
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/copyright.txt 2012-03-23 09:31:20 UTC (rev 39790)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/copyright.txt 2012-03-23 10:54:57 UTC (rev 39791)
@@ -1 +0,0 @@
-Lincoln Baxter, III <lincolnbaxter(a)gmail.com>
\ No newline at end of file
Deleted: trunk/forge/plugins/org.jboss.tools.forge.runtime/jboss-modules.jar
===================================================================
(Binary files differ)
14 years