JBoss Tools SVN: r37221 - trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/wizards.
by jbosstools-commits@lists.jboss.org
Author: bfitzpat
Date: 2011-12-12 10:15:56 -0500 (Mon, 12 Dec 2011)
New Revision: 37221
Modified:
trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/wizards/JBossRSGenerateWizardPage.java
trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/wizards/JBossWSAnnotatedClassWizardPage.java
Log:
JBIDE-10440 - fixed NPEs in RS/WS wizards (trunk)
Modified: trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/wizards/JBossRSGenerateWizardPage.java
===================================================================
--- trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/wizards/JBossRSGenerateWizardPage.java 2011-12-12 15:13:08 UTC (rev 37220)
+++ trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/wizards/JBossRSGenerateWizardPage.java 2011-12-12 15:15:56 UTC (rev 37221)
@@ -350,6 +350,9 @@
private void setWebXMLSelectionValueBasedOnProjectFacet () {
try {
+ if (((JBossRSGenerateWizard)this.getWizard()).getProject() == null) {
+ return;
+ }
IFacetedProject facetProject =
ProjectFacetsManager.create(((JBossRSGenerateWizard)this.getWizard()).getProject());
IProjectFacetVersion version =
Modified: trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/wizards/JBossWSAnnotatedClassWizardPage.java
===================================================================
--- trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/wizards/JBossWSAnnotatedClassWizardPage.java 2011-12-12 15:13:08 UTC (rev 37220)
+++ trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/wizards/JBossWSAnnotatedClassWizardPage.java 2011-12-12 15:15:56 UTC (rev 37221)
@@ -571,6 +571,9 @@
private void setWebXMLSelectionValueBasedOnProjectFacet () {
try {
+ if (((JBossWSAnnotatedClassWizard)this.getWizard()).getProject() == null) {
+ return;
+ }
IFacetedProject facetProject =
ProjectFacetsManager.create(((JBossWSAnnotatedClassWizard)this.getWizard()).getProject());
IProjectFacetVersion version =
14 years, 4 months
JBoss Tools SVN: r37220 - branches/jbosstools-3.3.0.M5/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/wizards.
by jbosstools-commits@lists.jboss.org
Author: bfitzpat
Date: 2011-12-12 10:13:08 -0500 (Mon, 12 Dec 2011)
New Revision: 37220
Modified:
branches/jbosstools-3.3.0.M5/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/wizards/JBossRSGenerateWizardPage.java
branches/jbosstools-3.3.0.M5/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/wizards/JBossWSAnnotatedClassWizardPage.java
Log:
JBIDE-10440 - fixed NPEs in RS/WS wizards
Modified: branches/jbosstools-3.3.0.M5/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/wizards/JBossRSGenerateWizardPage.java
===================================================================
--- branches/jbosstools-3.3.0.M5/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/wizards/JBossRSGenerateWizardPage.java 2011-12-12 15:05:26 UTC (rev 37219)
+++ branches/jbosstools-3.3.0.M5/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/wizards/JBossRSGenerateWizardPage.java 2011-12-12 15:13:08 UTC (rev 37220)
@@ -350,6 +350,9 @@
private void setWebXMLSelectionValueBasedOnProjectFacet () {
try {
+ if (((JBossRSGenerateWizard)this.getWizard()).getProject() == null) {
+ return;
+ }
IFacetedProject facetProject =
ProjectFacetsManager.create(((JBossRSGenerateWizard)this.getWizard()).getProject());
IProjectFacetVersion version =
Modified: branches/jbosstools-3.3.0.M5/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/wizards/JBossWSAnnotatedClassWizardPage.java
===================================================================
--- branches/jbosstools-3.3.0.M5/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/wizards/JBossWSAnnotatedClassWizardPage.java 2011-12-12 15:05:26 UTC (rev 37219)
+++ branches/jbosstools-3.3.0.M5/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/wizards/JBossWSAnnotatedClassWizardPage.java 2011-12-12 15:13:08 UTC (rev 37220)
@@ -571,6 +571,9 @@
private void setWebXMLSelectionValueBasedOnProjectFacet () {
try {
+ if (((JBossWSAnnotatedClassWizard)this.getWizard()).getProject() == null) {
+ return;
+ }
IFacetedProject facetProject =
ProjectFacetsManager.create(((JBossWSAnnotatedClassWizard)this.getWizard()).getProject());
IProjectFacetVersion version =
14 years, 4 months
JBoss Tools SVN: r37219 - in branches/jbosstools-3.3.0.M5/as/plugins/org.jboss.ide.eclipse.as.classpath.core: src/org/jboss/ide/eclipse/as/classpath/core/runtime and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2011-12-12 10:05:26 -0500 (Mon, 12 Dec 2011)
New Revision: 37219
Modified:
branches/jbosstools-3.3.0.M5/as/plugins/org.jboss.ide.eclipse.as.classpath.core/plugin.xml
branches/jbosstools-3.3.0.M5/as/plugins/org.jboss.ide.eclipse.as.classpath.core/src/org/jboss/ide/eclipse/as/classpath/core/runtime/CustomRuntimeClasspathModel.java
Log:
JBIDE-10430 - to branch m5
Modified: branches/jbosstools-3.3.0.M5/as/plugins/org.jboss.ide.eclipse.as.classpath.core/plugin.xml
===================================================================
--- branches/jbosstools-3.3.0.M5/as/plugins/org.jboss.ide.eclipse.as.classpath.core/plugin.xml 2011-12-12 14:25:10 UTC (rev 37218)
+++ branches/jbosstools-3.3.0.M5/as/plugins/org.jboss.ide.eclipse.as.classpath.core/plugin.xml 2011-12-12 15:05:26 UTC (rev 37219)
@@ -101,6 +101,13 @@
<factory class="org.jboss.ide.eclipse.as.classpath.core.runtime.ProjectRuntimeClasspathProvider$Factory"/>
<type class="org.eclipse.jst.common.project.facet.core.IClasspathProvider"/>
</adapter>
+
+ <adapter>
+ <runtime-component
+ id="org.jboss.ide.eclipse.as.runtime.component" version="7.1"/>
+ <factory class="org.jboss.ide.eclipse.as.classpath.core.runtime.ProjectRuntimeClasspathProvider$Factory"/>
+ <type class="org.eclipse.jst.common.project.facet.core.IClasspathProvider"/>
+ </adapter>
<adapter>
<runtime-component
@@ -115,12 +122,22 @@
<factory class="org.jboss.ide.eclipse.as.classpath.core.runtime.ProjectRuntimeClasspathProvider$Factory"/>
<type class="org.eclipse.jst.common.project.facet.core.IClasspathProvider"/>
</adapter>
+
+ <adapter>
+ <runtime-component
+ id="org.jboss.ide.eclipse.eap.runtime.component" version="6.0"/>
+ <factory class="org.jboss.ide.eclipse.as.classpath.core.runtime.ProjectRuntimeClasspathProvider$Factory"/>
+ <type class="org.eclipse.jst.common.project.facet.core.IClasspathProvider"/>
+ </adapter>
+ <!-- NEW_SERVER_ADAPTER Add the adapter for the new runtime above this line -->
</extension>
+
+ <!-- NEW_SERVER_ADAPTER add id for new runtime in the runtimeIds field below -->
<extension point="org.eclipse.jst.server.core.runtimeClasspathProviders">
<runtimeClasspathProvider
id="org.jboss.ide.eclipse.as.core.server.runtime.runtimeTarget"
- runtimeTypeIds="org.jboss.ide.eclipse.as.runtime.32, org.jboss.ide.eclipse.as.runtime.40, org.jboss.ide.eclipse.as.runtime.42,org.jboss.ide.eclipse.as.runtime.50,org.jboss.ide.eclipse.as.runtime.51,org.jboss.ide.eclipse.as.runtime.60,org.jboss.ide.eclipse.as.runtime.70,org.jboss.ide.eclipse.as.runtime.eap.43,org.jboss.ide.eclipse.as.runtime.eap.50"
+ runtimeTypeIds="org.jboss.ide.eclipse.as.runtime.32, org.jboss.ide.eclipse.as.runtime.40, org.jboss.ide.eclipse.as.runtime.42,org.jboss.ide.eclipse.as.runtime.50,org.jboss.ide.eclipse.as.runtime.51,org.jboss.ide.eclipse.as.runtime.60,org.jboss.ide.eclipse.as.runtime.70,org.jboss.ide.eclipse.as.runtime.71,org.jboss.ide.eclipse.as.runtime.eap.43,org.jboss.ide.eclipse.as.runtime.eap.50,org.jboss.ide.eclipse.as.runtime.eap.60"
class="org.jboss.ide.eclipse.as.classpath.core.runtime.ClientAllRuntimeClasspathProvider"/>
</extension>
<extension
Modified: branches/jbosstools-3.3.0.M5/as/plugins/org.jboss.ide.eclipse.as.classpath.core/src/org/jboss/ide/eclipse/as/classpath/core/runtime/CustomRuntimeClasspathModel.java
===================================================================
--- branches/jbosstools-3.3.0.M5/as/plugins/org.jboss.ide.eclipse.as.classpath.core/src/org/jboss/ide/eclipse/as/classpath/core/runtime/CustomRuntimeClasspathModel.java 2011-12-12 14:25:10 UTC (rev 37218)
+++ branches/jbosstools-3.3.0.M5/as/plugins/org.jboss.ide.eclipse.as.classpath.core/src/org/jboss/ide/eclipse/as/classpath/core/runtime/CustomRuntimeClasspathModel.java 2011-12-12 15:05:26 UTC (rev 37219)
@@ -98,6 +98,10 @@
if(AS_70.equals(type.getId()))
return getDefaultAS70Entries();
+ if(AS_71.equals(type.getId()))
+ return getDefaultAS70Entries();
+
+ // NEW_SERVER_ADAPTER add logic for new adapter here
return new IDefaultPathProvider[]{};
}
14 years, 4 months
JBoss Tools SVN: r37218 - in trunk/as/plugins: org.jboss.ide.eclipse.as.classpath.core/src/org/jboss/ide/eclipse/as/classpath/core/runtime and 6 other directories.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2011-12-12 09:25:10 -0500 (Mon, 12 Dec 2011)
New Revision: 37218
Added:
trunk/as/plugins/org.jboss.ide.eclipse.as.core/properties/TODO
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.classpath.core/plugin.xml
trunk/as/plugins/org.jboss.ide.eclipse.as.classpath.core/src/org/jboss/ide/eclipse/as/classpath/core/runtime/CustomRuntimeClasspathModel.java
trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/extensions/descriptors/XPathModel.java
trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/util/IJBossToolingConstants.java
trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/util/ServerCreationUtils.java
trunk/as/plugins/org.jboss.ide.eclipse.as.core/plugin.properties
trunk/as/plugins/org.jboss.ide.eclipse.as.core/plugin.xml
trunk/as/plugins/org.jboss.ide.eclipse.as.rse.core/plugin.properties
trunk/as/plugins/org.jboss.ide.eclipse.as.rse.core/plugin.xml
trunk/as/plugins/org.jboss.ide.eclipse.as.ui/plugin.properties
trunk/as/plugins/org.jboss.ide.eclipse.as.ui/plugin.xml
Log:
JBIDE-10430 NEW_SERVER_ADAPTER constants added all over the codebase where appropriate, also fixed the jira
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.classpath.core/plugin.xml
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.classpath.core/plugin.xml 2011-12-12 14:05:42 UTC (rev 37217)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.classpath.core/plugin.xml 2011-12-12 14:25:10 UTC (rev 37218)
@@ -101,6 +101,13 @@
<factory class="org.jboss.ide.eclipse.as.classpath.core.runtime.ProjectRuntimeClasspathProvider$Factory"/>
<type class="org.eclipse.jst.common.project.facet.core.IClasspathProvider"/>
</adapter>
+
+ <adapter>
+ <runtime-component
+ id="org.jboss.ide.eclipse.as.runtime.component" version="7.1"/>
+ <factory class="org.jboss.ide.eclipse.as.classpath.core.runtime.ProjectRuntimeClasspathProvider$Factory"/>
+ <type class="org.eclipse.jst.common.project.facet.core.IClasspathProvider"/>
+ </adapter>
<adapter>
<runtime-component
@@ -115,12 +122,22 @@
<factory class="org.jboss.ide.eclipse.as.classpath.core.runtime.ProjectRuntimeClasspathProvider$Factory"/>
<type class="org.eclipse.jst.common.project.facet.core.IClasspathProvider"/>
</adapter>
+
+ <adapter>
+ <runtime-component
+ id="org.jboss.ide.eclipse.eap.runtime.component" version="6.0"/>
+ <factory class="org.jboss.ide.eclipse.as.classpath.core.runtime.ProjectRuntimeClasspathProvider$Factory"/>
+ <type class="org.eclipse.jst.common.project.facet.core.IClasspathProvider"/>
+ </adapter>
+ <!-- NEW_SERVER_ADAPTER Add the adapter for the new runtime above this line -->
</extension>
+
+ <!-- NEW_SERVER_ADAPTER add id for new runtime in the runtimeIds field below -->
<extension point="org.eclipse.jst.server.core.runtimeClasspathProviders">
<runtimeClasspathProvider
id="org.jboss.ide.eclipse.as.core.server.runtime.runtimeTarget"
- runtimeTypeIds="org.jboss.ide.eclipse.as.runtime.32, org.jboss.ide.eclipse.as.runtime.40, org.jboss.ide.eclipse.as.runtime.42,org.jboss.ide.eclipse.as.runtime.50,org.jboss.ide.eclipse.as.runtime.51,org.jboss.ide.eclipse.as.runtime.60,org.jboss.ide.eclipse.as.runtime.70,org.jboss.ide.eclipse.as.runtime.eap.43,org.jboss.ide.eclipse.as.runtime.eap.50"
+ runtimeTypeIds="org.jboss.ide.eclipse.as.runtime.32, org.jboss.ide.eclipse.as.runtime.40, org.jboss.ide.eclipse.as.runtime.42,org.jboss.ide.eclipse.as.runtime.50,org.jboss.ide.eclipse.as.runtime.51,org.jboss.ide.eclipse.as.runtime.60,org.jboss.ide.eclipse.as.runtime.70,org.jboss.ide.eclipse.as.runtime.71,org.jboss.ide.eclipse.as.runtime.eap.43,org.jboss.ide.eclipse.as.runtime.eap.50,org.jboss.ide.eclipse.as.runtime.eap.60"
class="org.jboss.ide.eclipse.as.classpath.core.runtime.ClientAllRuntimeClasspathProvider"/>
</extension>
<extension
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.classpath.core/src/org/jboss/ide/eclipse/as/classpath/core/runtime/CustomRuntimeClasspathModel.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.classpath.core/src/org/jboss/ide/eclipse/as/classpath/core/runtime/CustomRuntimeClasspathModel.java 2011-12-12 14:05:42 UTC (rev 37217)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.classpath.core/src/org/jboss/ide/eclipse/as/classpath/core/runtime/CustomRuntimeClasspathModel.java 2011-12-12 14:25:10 UTC (rev 37218)
@@ -98,6 +98,10 @@
if(AS_70.equals(type.getId()))
return getDefaultAS70Entries();
+ if(AS_71.equals(type.getId()))
+ return getDefaultAS70Entries();
+
+ // NEW_SERVER_ADAPTER add logic for new adapter here
return new IDefaultPathProvider[]{};
}
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/extensions/descriptors/XPathModel.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/extensions/descriptors/XPathModel.java 2011-12-12 14:05:42 UTC (rev 37217)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/extensions/descriptors/XPathModel.java 2011-12-12 14:25:10 UTC (rev 37218)
@@ -271,6 +271,7 @@
rtToPortsFile.put(IConstants.EAP_43, properties.append(IJBossToolingConstants.DEFAULT_PROPS_EAP_43));
rtToPortsFile.put(IConstants.EAP_50, properties.append(IJBossToolingConstants.DEFAULT_PROPS_EAP_50));
rtToPortsFile.put(IConstants.EAP_60, properties.append(IJBossToolingConstants.DEFAULT_PROPS_70));
+ // TODO NEW_SERVER_ADAPTER Add the new server ID to port mapping file above this line
}
private static ArrayList<XPathCategory> loadDefaults(IServer server, String configFolder) {
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/util/IJBossToolingConstants.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/util/IJBossToolingConstants.java 2011-12-12 14:05:42 UTC (rev 37217)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/util/IJBossToolingConstants.java 2011-12-12 14:25:10 UTC (rev 37218)
@@ -29,6 +29,7 @@
public static final String EAP_43 = "org.jboss.ide.eclipse.as.runtime.eap.43"; //$NON-NLS-1$
public static final String EAP_50 = "org.jboss.ide.eclipse.as.runtime.eap.50"; //$NON-NLS-1$
public static final String EAP_60 = "org.jboss.ide.eclipse.as.runtime.eap.60"; //$NON-NLS-1$
+ // NEW_SERVER_ADAPTER Add the new runtime constant above this line
public static final String SERVER_AS_32 = "org.jboss.ide.eclipse.as.32"; //$NON-NLS-1$
public static final String SERVER_AS_40 = "org.jboss.ide.eclipse.as.40"; //$NON-NLS-1$
@@ -42,6 +43,7 @@
public static final String SERVER_EAP_43 = "org.jboss.ide.eclipse.as.eap.43"; //$NON-NLS-1$
public static final String SERVER_EAP_50 = "org.jboss.ide.eclipse.as.eap.50"; //$NON-NLS-1$
public static final String SERVER_EAP_60 = "org.jboss.ide.eclipse.as.eap.60"; //$NON-NLS-1$
+ // NEW_SERVER_ADAPTER Add the new server id above this line
public static final String DEPLOY_ONLY_RUNTIME = "org.jboss.ide.eclipse.as.runtime.stripped"; //$NON-NLS-1$
public static final String DEPLOY_ONLY_SERVER = "org.jboss.ide.eclipse.as.systemCopyServer"; //$NON-NLS-1$
@@ -60,8 +62,8 @@
public static final String V6_1 = "6.1"; //$NON-NLS-1$
public static final String V7_0 = "7.0"; //$NON-NLS-1$
public static final String V7_1 = "7.1"; //$NON-NLS-1$
+ // NEW_SERVER_ADAPTER Add the new version string above this line
-
/* Files or folders inside the TOOLING */
public static final String LOG = "log"; //$NON-NLS-1$
public static final String TEMP_DEPLOY = "tempDeploy"; //$NON-NLS-1$
@@ -85,6 +87,7 @@
public static final String DEFAULT_PROPS_EAP_43 = "jboss.eap.43.default.ports.properties"; //$NON-NLS-1$
public static final String DEFAULT_PROPS_EAP_50 = "jboss.eap.50.default.ports.properties"; //$NON-NLS-1$
public static final String DEFAULT_PROPS_EAP_60 = "jboss.eap.60.default.ports.properties"; //$NON-NLS-1$
+ // NEW_SERVER_ADAPTER Add the new properties file for this server adapter above this line
// Poller constants
public static final String DEFAULT_STARTUP_POLLER = WebPortPoller.WEB_POLLER_ID;
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/util/ServerCreationUtils.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/util/ServerCreationUtils.java 2011-12-12 14:05:42 UTC (rev 37217)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/util/ServerCreationUtils.java 2011-12-12 14:25:10 UTC (rev 37218)
@@ -34,6 +34,7 @@
runtimeServerTypeMap.put(IJBossToolingConstants.AS_70, IJBossToolingConstants.SERVER_AS_70);
runtimeServerTypeMap.put(IJBossToolingConstants.EAP_43, IJBossToolingConstants.SERVER_EAP_43);
runtimeServerTypeMap.put(IJBossToolingConstants.EAP_50, IJBossToolingConstants.SERVER_EAP_50);
+ // NEW_SERVER_ADAPTER Add the server / runtime mapping here
}
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.core/plugin.properties
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.core/plugin.properties 2011-12-12 14:05:42 UTC (rev 37217)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.core/plugin.properties 2011-12-12 14:25:10 UTC (rev 37218)
@@ -56,6 +56,8 @@
deploy.server.name=Deploy Only
deploy.server.description=A server which only provides a deploy folder for publishing.
+
+# NEW_SERVER_ADAPTER Add the new runtime and server ID to the proper constants below!
AllJBossRuntimeTypes=org.jboss.ide.eclipse.as.runtime.32,org.jboss.ide.eclipse.as.runtime.40,org.jboss.ide.eclipse.as.runtime.42,org.jboss.ide.eclipse.as.runtime.50,org.jboss.ide.eclipse.as.runtime.51,org.jboss.ide.eclipse.as.runtime.60,org.jboss.ide.eclipse.as.runtime.70,org.jboss.ide.eclipse.as.runtime.71,org.jboss.ide.eclipse.as.runtime.eap.43,org.jboss.ide.eclipse.as.runtime.eap.50,org.jboss.ide.eclipse.as.runtime.eap.60
AllJBossServerTypes=org.jboss.ide.eclipse.as.32,org.jboss.ide.eclipse.as.40,org.jboss.ide.eclipse.as.42,org.jboss.ide.eclipse.as.50,org.jboss.ide.eclipse.as.51,org.jboss.ide.eclipse.as.60,org.jboss.ide.eclipse.as.70,org.jboss.ide.eclipse.as.71,org.jboss.ide.eclipse.as.eap.43,org.jboss.ide.eclipse.as.eap.50,org.jboss.ide.eclipse.as.eap.60,
AllJBTServerTypes=org.jboss.ide.eclipse.as.32,org.jboss.ide.eclipse.as.40,org.jboss.ide.eclipse.as.42,org.jboss.ide.eclipse.as.50,org.jboss.ide.eclipse.as.51,org.jboss.ide.eclipse.as.60,org.jboss.ide.eclipse.as.70,org.jboss.ide.eclipse.as.71,org.jboss.ide.eclipse.as.eap.43,org.jboss.ide.eclipse.as.eap.50,org.jboss.ide.eclipse.as.eap.60,org.jboss.ide.eclipse.as.systemCopyServer
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.core/plugin.xml
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.core/plugin.xml 2011-12-12 14:05:42 UTC (rev 37217)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.core/plugin.xml 2011-12-12 14:25:10 UTC (rev 37218)
@@ -213,8 +213,10 @@
runtimeTypeId="org.jboss.ide.eclipse.as.runtime.stripped"
supportsRemoteHosts="true"/>
- </extension>
+ <!-- NEW_SERVER_ADAPTER Add the new server type above this line -->
+ </extension>
+
<extension
point="org.eclipse.wst.server.core.runtimeTypes">
<runtimeType
@@ -447,8 +449,9 @@
<moduleType types="bpel.module" versions="1.1, 2.0"/>
<moduleType types="jboss.osgi" versions="1.0"/>
</runtimeType>
+
+ <!-- NEW_SERVER_ADAPTER Add the new Runtime type above this line -->
-
<runtimeType
class="org.jboss.ide.eclipse.as.core.server.internal.DeployableServerRuntime"
description="%deploy.runtime.description"
@@ -604,6 +607,7 @@
supportsShutdown="true"
supportsStartup="true">
</serverPoller>
+ <!-- NEW_SERVER_ADAPTER Add a new management poller above if the new server type requires a custom poller -->
</extension>
@@ -662,6 +666,7 @@
runtimeTypeId="org.jboss.ide.eclipse.as.runtime.eap.60"
runtime-component="org.jboss.ide.eclipse.eap.runtime.component"
version="6.0"/>
+ <!-- NEW_SERVER_ADAPTER Add the new runtime to runtime-component mapping above this line -->
</extension>
@@ -885,6 +890,7 @@
<facet id="jst.webfragment" version="3.0"/>
</supported>
+ <!-- NEW_SERVER_ADAPTER Add the new runtime component version and facets above this line -->
</extension>
@@ -979,6 +985,7 @@
version="6.0">
</facet>
</default-facets>
+ <!-- NEW_SERVER_ADAPTER Add the new default facet for a new runtime above this line -->
</extension>
<extension
@@ -1142,7 +1149,10 @@
typeId="local">
</behaviour>
</extension>
+ <!-- NEW_SERVER_ADAPTER Add the behaviour extension for a new server type above this line -->
+
+
<!-- The default publisher declaration. -->
<extension
point="org.jboss.ide.eclipse.as.core.publishers">
Added: trunk/as/plugins/org.jboss.ide.eclipse.as.core/properties/TODO
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.core/properties/TODO (rev 0)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.core/properties/TODO 2011-12-12 14:25:10 UTC (rev 37218)
@@ -0,0 +1 @@
+# NEW_SERVER_ADAPTER Add the default port xpaths in it's own file in this folder
\ No newline at end of file
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.rse.core/plugin.properties
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.rse.core/plugin.properties 2011-12-12 14:05:42 UTC (rev 37217)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.rse.core/plugin.properties 2011-12-12 14:25:10 UTC (rev 37218)
@@ -2,6 +2,7 @@
Bundle-Name.0 = JBossAS RSE Tools
RSEMethodName=Remote System Deployment
+# Add the new runtime and server id's to the constants below when applicable
AllJBossRuntimeTypes=org.jboss.ide.eclipse.as.runtime.32,org.jboss.ide.eclipse.as.runtime.40,org.jboss.ide.eclipse.as.runtime.42,org.jboss.ide.eclipse.as.runtime.50,org.jboss.ide.eclipse.as.runtime.51,org.jboss.ide.eclipse.as.runtime.60,org.jboss.ide.eclipse.as.runtime.70,org.jboss.ide.eclipse.as.runtime.71,org.jboss.ide.eclipse.as.runtime.eap.43,org.jboss.ide.eclipse.as.runtime.eap.50,org.jboss.ide.eclipse.as.runtime.eap.60
AllJBossServerTypes=org.jboss.ide.eclipse.as.32,org.jboss.ide.eclipse.as.40,org.jboss.ide.eclipse.as.42,org.jboss.ide.eclipse.as.50,org.jboss.ide.eclipse.as.51,org.jboss.ide.eclipse.as.60,org.jboss.ide.eclipse.as.70,org.jboss.ide.eclipse.as.71,org.jboss.ide.eclipse.as.eap.43,org.jboss.ide.eclipse.as.eap.50,org.jboss.ide.eclipse.as.eap.60,
AllJBTServerTypes=org.jboss.ide.eclipse.as.32,org.jboss.ide.eclipse.as.40,org.jboss.ide.eclipse.as.42,org.jboss.ide.eclipse.as.50,org.jboss.ide.eclipse.as.51,org.jboss.ide.eclipse.as.60,org.jboss.ide.eclipse.as.70,org.jboss.ide.eclipse.as.71,org.jboss.ide.eclipse.as.eap.43,org.jboss.ide.eclipse.as.eap.50,org.jboss.ide.eclipse.as.eap.60,org.jboss.ide.eclipse.as.systemCopyServer
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.rse.core/plugin.xml
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.rse.core/plugin.xml 2011-12-12 14:05:42 UTC (rev 37217)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.rse.core/plugin.xml 2011-12-12 14:25:10 UTC (rev 37218)
@@ -23,4 +23,5 @@
typeId="rse">
</behaviour>
</extension>
+ <!-- NEW_SERVER_ADAPTER Add the new RSE behaviour delegate if needed for the new server above this line -->
</plugin>
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.ui/plugin.properties
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.ui/plugin.properties 2011-12-12 14:05:42 UTC (rev 37217)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.ui/plugin.properties 2011-12-12 14:25:10 UTC (rev 37218)
@@ -23,6 +23,7 @@
NavigatorContent_XMLConfiguration=XML Configuration
NavigatorContent_JMX=JMX
+# NEW_SERVER_ADAPTER Add the new server and runtime ids to the constants below this line when applicable
AllJBossRuntimeTypes=org.jboss.ide.eclipse.as.runtime.32,org.jboss.ide.eclipse.as.runtime.40,org.jboss.ide.eclipse.as.runtime.42,org.jboss.ide.eclipse.as.runtime.50,org.jboss.ide.eclipse.as.runtime.51,org.jboss.ide.eclipse.as.runtime.60,org.jboss.ide.eclipse.as.runtime.70,org.jboss.ide.eclipse.as.runtime.71,org.jboss.ide.eclipse.as.runtime.eap.43,org.jboss.ide.eclipse.as.runtime.eap.50,org.jboss.ide.eclipse.as.runtime.eap.60
AllJBossServerTypes=org.jboss.ide.eclipse.as.32,org.jboss.ide.eclipse.as.40,org.jboss.ide.eclipse.as.42,org.jboss.ide.eclipse.as.50,org.jboss.ide.eclipse.as.51,org.jboss.ide.eclipse.as.60,org.jboss.ide.eclipse.as.70,org.jboss.ide.eclipse.as.71,org.jboss.ide.eclipse.as.eap.43,org.jboss.ide.eclipse.as.eap.50,org.jboss.ide.eclipse.as.eap.60,
AllJBTServerTypes=org.jboss.ide.eclipse.as.32,org.jboss.ide.eclipse.as.40,org.jboss.ide.eclipse.as.42,org.jboss.ide.eclipse.as.50,org.jboss.ide.eclipse.as.51,org.jboss.ide.eclipse.as.60,org.jboss.ide.eclipse.as.70,org.jboss.ide.eclipse.as.71,org.jboss.ide.eclipse.as.eap.43,org.jboss.ide.eclipse.as.eap.50,org.jboss.ide.eclipse.as.eap.60,org.jboss.ide.eclipse.as.systemCopyServer
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.ui/plugin.xml
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.ui/plugin.xml 2011-12-12 14:05:42 UTC (rev 37217)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.ui/plugin.xml 2011-12-12 14:25:10 UTC (rev 37218)
@@ -45,6 +45,7 @@
class="org.jboss.ide.eclipse.as.ui.wizards.JBoss7ServerWizardFragment"
id="org.jboss.ide.eclipse.as.ui.jboss7ServerWizardFragment"
typeIds="%ServerTypesJBoss7"/>
+ <!-- NEW_SERVER_ADAPTER Add the wizard fragment (if applicable) for the new server adapter above this line -->
<fragment
class="org.jboss.ide.eclipse.as.ui.wizards.StrippedServerWizardFragment"
id="org.jboss.ide.eclipse.as.ui.strippedServerWizardFragment"
@@ -187,6 +188,8 @@
insertionId="org.eclipse.wst.server.editor.overview.left"
order="9"
typeIds="%AllJBTServerTypes"/>
+
+ <!-- NEW_SERVER_ADAPTER Add the server editor sections for a new server above this line -->
</extension>
@@ -281,6 +284,8 @@
class="org.jboss.ide.eclipse.as.ui.editor.PortSection$JBoss7ManagementPortEditorExtension"
serverIds="%ServerTypesJBoss7">
</section>
+
+ <!-- NEW_SERVER_ADAPTER Add the new port sections in the server editor above this line -->
</extension>
14 years, 4 months
JBoss Tools SVN: r37217 - trunk/forge/plugins/org.jboss.tools.forge.runtime.
by jbosstools-commits@lists.jboss.org
Author: koen.aers(a)jboss.com
Date: 2011-12-12 09:05:42 -0500 (Mon, 12 Dec 2011)
New Revision: 37217
Added:
trunk/forge/plugins/org.jboss.tools.forge.runtime/README.txt
Log:
add readme file
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 2011-12-12 14:05:42 UTC (rev 37217)
@@ -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
14 years, 4 months
JBoss Tools SVN: r37216 - trunk/forge/plugins/org.jboss.tools.forge.runtime.
by jbosstools-commits@lists.jboss.org
Author: koen.aers(a)jboss.com
Date: 2011-12-12 09:05:04 -0500 (Mon, 12 Dec 2011)
New Revision: 37216
Removed:
trunk/forge/plugins/org.jboss.tools.forge.runtime/README.txt
trunk/forge/plugins/org.jboss.tools.forge.runtime/readme.txt
Log:
remove read me files
Deleted: trunk/forge/plugins/org.jboss.tools.forge.runtime/README.txt
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/README.txt 2011-12-12 13:55:08 UTC (rev 37215)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/README.txt 2011-12-12 14:05:04 UTC (rev 37216)
@@ -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/readme.txt
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/readme.txt 2011-12-12 13:55:08 UTC (rev 37215)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/readme.txt 2011-12-12 14:05:04 UTC (rev 37216)
@@ -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
14 years, 4 months
JBoss Tools SVN: r37215 - trunk/forge/plugins/org.jboss.tools.forge.runtime.
by jbosstools-commits@lists.jboss.org
Author: koen.aers(a)jboss.com
Date: 2011-12-12 08:55:08 -0500 (Mon, 12 Dec 2011)
New Revision: 37215
Added:
trunk/forge/plugins/org.jboss.tools.forge.runtime/readme.txt
Log:
JBIDE-10403: add snapshot runtime from M5
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 2011-12-12 13:55:08 UTC (rev 37215)
@@ -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
14 years, 4 months
JBoss Tools SVN: r37214 - in trunk/forge/plugins: org.jboss.tools.forge.runtime and 205 other directories.
by jbosstools-commits@lists.jboss.org
Author: koen.aers(a)jboss.com
Date: 2011-12-12 08:53:40 -0500 (Mon, 12 Dec 2011)
New Revision: 37214
Added:
trunk/forge/plugins/org.jboss.tools.forge.runtime/
trunk/forge/plugins/org.jboss.tools.forge.runtime/.classpath
trunk/forge/plugins/org.jboss.tools.forge.runtime/.project
trunk/forge/plugins/org.jboss.tools.forge.runtime/.settings/
trunk/forge/plugins/org.jboss.tools.forge.runtime/.settings/org.eclipse.jdt.core.prefs
trunk/forge/plugins/org.jboss.tools.forge.runtime/LICENSE.txt
trunk/forge/plugins/org.jboss.tools.forge.runtime/META-INF/
trunk/forge/plugins/org.jboss.tools.forge.runtime/META-INF/MANIFEST.MF
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/build.properties
trunk/forge/plugins/org.jboss.tools.forge.runtime/copyright.txt
trunk/forge/plugins/org.jboss.tools.forge.runtime/img/
trunk/forge/plugins/org.jboss.tools.forge.runtime/img/forge.ico
trunk/forge/plugins/org.jboss.tools.forge.runtime/img/forge.png
trunk/forge/plugins/org.jboss.tools.forge.runtime/jboss-modules.jar
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/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/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.0-SNAPSHOT.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/args4j-2.0.12.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/forge-git-tools-1.0.0-SNAPSHOT.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/jsch-0.1.41.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-0.10.1.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/org.eclipse.jgit.console-0.10.1.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/org.eclipse.jgit.iplog-0.10.1.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/org.eclipse.jgit.pgm-0.10.1.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/org.eclipse.jgit.ui-0.10.1.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.0-SNAPSHOT.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.0-SNAPSHOT.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.0-SNAPSHOT.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/main/forge-shell-1.0.0-SNAPSHOT.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.0-SNAPSHOT.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.0-SNAPSHOT.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.0-SNAPSHOT.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.0-SNAPSHOT.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.0-SNAPSHOT.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.0-SNAPSHOT.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.0-SNAPSHOT.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/impl/main/forge-scaffold-plugins-1.0.0-SNAPSHOT.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/impl/main/metawidget-all-1.35-SNAPSHOT.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.0-SNAPSHOT.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/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.0.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-SNAPSHOT.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.Beta3.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/solder/main/solder-impl-3.1.0.Beta3.jar
trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/solder/main/solder-logging-3.1.0.Beta3.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-jboss-logmanager-1.0.0.CR4.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
trunk/forge/plugins/org.jboss.tools.forge.runtime/pom.xml
Log:
JBIDE-10403: add snapshot runtime from M5
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/.classpath
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/.classpath (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/.classpath 2011-12-12 13:53:40 UTC (rev 37214)
@@ -0,0 +1,9 @@
+<?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-SNAPSHOT.jar"/>
+ <classpathentry exported="true" kind="lib" path="modules/javax/enterprise/api/main/cdi-api-1.0-SP4.jar"/>
+ <classpathentry exported="true" kind="lib" path="modules/javax/inject/api/main/javax.inject-1.jar"/>
+ <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
+ <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
+ <classpathentry kind="output" path="bin"/>
+</classpath>
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/.classpath
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/.project
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/.project (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/.project 2011-12-12 13:53:40 UTC (rev 37214)
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.jboss.tools.forge.runtime</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.jdt.core.javabuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>org.eclipse.pde.ManifestBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>org.eclipse.pde.SchemaBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.pde.PluginNature</nature>
+ <nature>org.eclipse.jdt.core.javanature</nature>
+ </natures>
+</projectDescription>
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/.project
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/.settings/org.eclipse.jdt.core.prefs
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/.settings/org.eclipse.jdt.core.prefs (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/.settings/org.eclipse.jdt.core.prefs 2011-12-12 13:53:40 UTC (rev 37214)
@@ -0,0 +1,8 @@
+#Tue May 31 12:27:07 CEST 2011
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
+org.eclipse.jdt.core.compiler.compliance=1.6
+org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
+org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
+org.eclipse.jdt.core.compiler.source=1.6
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/.settings/org.eclipse.jdt.core.prefs
___________________________________________________________________
Added: svn:mime-type
+ text/plain
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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/META-INF/MANIFEST.MF
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/META-INF/MANIFEST.MF (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/META-INF/MANIFEST.MF 2011-12-12 13:53:40 UTC (rev 37214)
@@ -0,0 +1,21 @@
+Manifest-Version: 1.0
+Bundle-ManifestVersion: 2
+Bundle-Name: Forge Runtime Plugin
+Bundle-SymbolicName: org.jboss.tools.forge.runtime
+Bundle-Version: 1.0.0.qualifier
+Bundle-RequiredExecutionEnvironment: JavaSE-1.6
+Bundle-ClassPath: modules/javax/inject/api/main/javax.inject-1.jar,
+ modules/javax/enterprise/api/main/cdi-api-1.0-SP4.jar,
+ modules/org/jboss/forge/shell/api/main/forge-shell-api-1.0.0-SNAPSHOT.jar
+Bundle-Vendor: JBoss by Red Hat
+Eclipse-BundleShape: dir
+Export-Package: javax.enterprise.event,
+ javax.inject,
+ org.jboss.forge.project,
+ org.jboss.forge.resources,
+ org.jboss.forge.resources.events,
+ org.jboss.forge.shell,
+ org.jboss.forge.shell.command,
+ org.jboss.forge.shell.events,
+ org.jboss.forge.shell.spi
+
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/META-INF/MANIFEST.MF
___________________________________________________________________
Added: svn:mime-type
+ text/plain
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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -0,0 +1,163 @@
+#!/bin/sh
+
+# ----------------------------------------------------------------------------
+# Licensed under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+# ----------------------------------------------------------------------------
+
+
+# ----------------------------------------------------------------------
+# Forge Startup script
+#
+# Required Environment vars:
+# ------------------
+# JAVA_HOME - location of a JRE home directory
+#
+# Optional Environment Variables
+# ------------------
+# FORGE_HOME - location of Forge's installed home dir
+# FORGE_OPTS - parameters passed to the Java VM when running Forge
+# -----------------------------------------------------------------------
+
+QUOTED_ARGS=""
+while [ "$1" != "" ] ; do
+
+ QUOTED_ARGS="$QUOTED_ARGS \"$1\""
+ shift
+
+done
+
+if [ -f /etc/forgerc ] ; then
+ . /etc/forgerc
+fi
+
+if [ -f "$HOME/.forgerc" ] ; then
+ . "$HOME/.forgerc"
+fi
+
+# OS specific support. $var _must_ be set to either true or false.
+cygwin=false;
+darwin=false;
+mingw=false
+case "`uname`" in
+ CYGWIN*) cygwin=true ;;
+ MINGW*) mingw=true;;
+ Darwin*) darwin=true
+ if [ -z "$JAVA_VERSION" ] ; then
+ JAVA_VERSION="CurrentJDK"
+ fi
+ if [ -z "$JAVA_HOME" ] ; then
+ JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/${JAVA_VERSION}/Home
+ fi
+ ;;
+esac
+
+if [ -z "$JAVA_HOME" ] ; then
+ if [ -r /etc/gentoo-release ] ; then
+ JAVA_HOME=`java-config --jre-home`
+ fi
+fi
+
+if [ -z "$FORGE_HOME" ] ; then
+ ## resolve links - $0 may be a link to Forge's home
+ PRG="$0"
+
+ # need this for relative symlinks
+ while [ -h "$PRG" ] ; do
+ ls=`ls -ld "$PRG"`
+ link=`expr "$ls" : '.*-> \(.*\)$'`
+ if expr "$link" : '/.*' > /dev/null; then
+ PRG="$link"
+ else
+ PRG="`dirname "$PRG"`/$link"
+ fi
+ done
+
+ saveddir=`pwd`
+
+ FORGE_HOME=`dirname "$PRG"`/..
+
+ # make it fully qualified
+ FORGE_HOME=`cd "$FORGE_HOME" && pwd`
+
+ cd "$saveddir"
+ echo Using Forge at $FORGE_HOME
+fi
+
+# For Cygwin, ensure paths are in UNIX format before anything is touched
+if $cygwin ; then
+ [ -n "$FORGE_HOME" ] &&
+ FORGE_HOME=`cygpath --unix "$FORGE_HOME"`
+ [ -n "$JAVA_HOME" ] &&
+ JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
+ [ -n "$CLASSPATH" ] &&
+ CLASSPATH=`cygpath --path --unix "$CLASSPATH"`
+fi
+
+# For Migwn, ensure paths are in UNIX format before anything is touched
+if $mingw ; then
+ [ -n "$FORGE_HOME" ] &&
+ FORGE_HOME="`(cd "$FORGE_HOME"; pwd)`"
+ [ -n "$JAVA_HOME" ] &&
+ JAVA_HOME="`(cd "$JAVA_HOME"; pwd)`"
+ # TODO classpath?
+fi
+
+if [ -z "$JAVACMD" ] ; then
+ if [ -n "$JAVA_HOME" ] ; then
+ if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+ # IBM's JDK on AIX uses strange locations for the executables
+ JAVACMD="$JAVA_HOME/jre/sh/java"
+ else
+ JAVACMD="$JAVA_HOME/bin/java"
+ fi
+ else
+ JAVACMD="`which java`"
+ fi
+fi
+
+if [ ! -x "$JAVACMD" ] ; then
+ echo "Error: JAVA_HOME is not defined correctly."
+ echo " We cannot execute $JAVACMD"
+ exit 1
+fi
+
+JAVAVER=`$JAVACMD -version 2>&1`
+case $JAVAVER in
+*1.[6-9]*) ;;
+*1.[1-5]*)
+ echo " Error: a Java 1.6 or higher JRE is required to run Forge; found [$JAVACMD -version == $JAVAVER]."
+ exit 1
+ ;;
+esac
+
+
+if [ -z "$JAVA_HOME" ] ; then
+ echo "Warning: JAVA_HOME environment variable is not set."
+fi
+
+FORGE_MAIN_CLASS=org.jboss.forge.shell.Bootstrap
+
+# For Cygwin, switch paths to Windows format before running java
+if $cygwin; then
+ [ -n "$FORGE_HOME" ] &&
+ FORGE_HOME=`cygpath --path --windows "$FORGE_HOME"`
+ [ -n "$JAVA_HOME" ] &&
+ JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"`
+ [ -n "$HOME" ] &&
+ HOME=`cygpath --path --windows "$HOME"`
+fi
+
+forge_exec_cmd="\"$JAVACMD\" $FORGE_OPTS \"-Dforge.home=${FORGE_HOME}\" \"-Dforge.shell.colorEnabled=true\" -jar \"${FORGE_HOME}/jboss-modules.jar\" -modulepath \"${FORGE_HOME}/modules:${HOME}/.forge/plugins\" org.jboss.forge"
+
+eval $forge_exec_cmd "$QUOTED_ARGS"
Added: 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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -0,0 +1,173 @@
+@REM ----------------------------------------------------------------------------
+@REM Licensed under the Apache License, Version 2.0 (the
+@REM "License"); you may not use this file except in compliance
+@REM with the License. You may obtain a copy of the License at
+@REM
+@REM http://www.apache.org/licenses/LICENSE-2.0
+@REM
+@REM Unless required by applicable law or agreed to in writing,
+@REM software distributed under the License is distributed on an
+@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+@REM KIND, either express or implied. See the License for the
+@REM specific language governing permissions and limitations
+@REM under the License.
+@REM ----------------------------------------------------------------------------
+
+@REM ----------------------------------------------------------------------------
+@REM Forge Startup script
+@REM
+@REM Required Environment vars:
+@REM ------------------
+@REM JAVA_HOME - location of a JRE home dir
+@REM
+@REM Optional Environment vars
+@REM ------------------
+@REM FORGE_HOME - location of Forge's installed home dir
+@REM FORGE_OPTS - parameters passed to the Java VM when running Forge
+@REM ----------------------------------------------------------------------------
+
+@echo off
+
+@REM set %HOME% to equivalent of $HOME
+if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%")
+
+@REM Execute a user defined script before this one
+if exist "%HOME%\forgerc_pre.bat" call "%HOME%\forgerc_pre.bat"
+
+set ERROR_CODE=0
+
+@REM set local scope for the variables with windows NT shell
+if "%OS%"=="Windows_NT" @setlocal
+if "%OS%"=="WINNT" @setlocal
+
+@REM ==== START VALIDATION ====
+if not "%JAVA_HOME%" == "" goto OkJHome
+
+echo.
+echo ERROR: JAVA_HOME not found in your environment.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation
+echo.
+goto error
+
+:OkJHome
+if exist "%JAVA_HOME%\bin\java.exe" goto chkFHome
+
+echo.
+echo ERROR: JAVA_HOME is set to an invalid directory.
+echo JAVA_HOME = "%JAVA_HOME%"
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation
+echo.
+goto error
+
+:chkFHome
+if not "%FORGE_HOME%"=="" goto valFHome
+
+if "%OS%"=="Windows_NT" SET "FORGE_HOME=%~dp0.."
+if "%OS%"=="WINNT" SET "FORGE_HOME=%~dp0.."
+if not "%FORGE_HOME%"=="" goto valFHome
+
+echo.
+echo ERROR: FORGE_HOME not found in your environment.
+echo Please set the FORGE_HOME variable in your environment to match the
+echo location of the Forge installation
+echo.
+goto error
+
+:valFHome
+
+:stripFHome
+if not "_%FORGE_HOME:~-1%"=="_\" goto checkFBat
+set "FORGE_HOME=%FORGE_HOME:~0,-1%"
+goto stripFHome
+
+:checkFBat
+if exist "%FORGE_HOME%\bin\forge.bat" goto init
+
+echo.
+echo ERROR: FORGE_HOME is set to an invalid directory.
+echo FORGE_HOME = "%FORGE_HOME%"
+echo Please set the FORGE_HOME variable in your environment to match the
+echo location of the Forge installation
+echo.
+goto error
+@REM ==== END VALIDATION ====
+
+:init
+@REM Decide how to startup depending on the version of windows
+
+@REM -- Windows NT with Novell Login
+if "%OS%"=="WINNT" goto WinNTNovell
+
+@REM -- Win98ME
+if NOT "%OS%"=="Windows_NT" goto Win9xArg
+
+:WinNTNovell
+
+@REM -- 4NT shell
+if "%@eval[2+2]" == "4" goto 4NTArgs
+
+@REM -- Regular WinNT shell
+set FORGE_CMD_LINE_ARGS=%*
+goto endInit
+
+@REM The 4NT Shell from jp software
+:4NTArgs
+set FORGE_CMD_LINE_ARGS=%$
+goto endInit
+
+:Win9xArg
+@REM Slurp the command line arguments. This loop allows for an unlimited number
+@REM of agruments (up to the command line limit, anyway).
+set FORGE_CMD_LINE_ARGS=
+:Win9xApp
+if %1a==a goto endInit
+set FORGE_CMD_LINE_ARGS=%FORGE_CMD_LINE_ARGS% %1
+shift
+goto Win9xApp
+
+@REM Reaching here means variables are defined and arguments have been captured
+:endInit
+SET FORGE_JAVA_EXE="%JAVA_HOME%\bin\java.exe"
+
+@REM -- 4NT shell
+if "%@eval[2+2]" == "4" goto 4NTCWJars
+
+set JBOSS_MODULES="%FORGE_HOME%\jboss-modules.jar"
+goto runForge
+
+@REM Start Forge
+:runForge
+set FORGE_MAIN_CLASS=org.jboss.forge.shell.Bootstrap
+%FORGE_JAVA_EXE% %FORGE_OPTS% "-Dforge.home=%FORGE_HOME%" -Dforge.shell.colorEnabled=true -jar %JBOSS_MODULES% -modulepath "%FORGE_HOME%\modules;%HOME%\.forge\plugins" org.jboss.forge %FORGE_CMD_LINE_ARGS%
+if ERRORLEVEL 1 goto error
+goto end
+
+:error
+if "%OS%"=="Windows_NT" @endlocal
+if "%OS%"=="WINNT" @endlocal
+set ERROR_CODE=1
+
+:end
+@REM set local scope for the variables with windows NT shell
+if "%OS%"=="Windows_NT" goto endNT
+if "%OS%"=="WINNT" goto endNT
+
+@REM For old DOS remove the set variables from ENV - we assume they were not set
+@REM before we started - at least we don't leave any baggage around
+set FORGE_JAVA_EXE=
+set FORGE_CMD_LINE_ARGS=
+goto postExec
+
+:endNT
+@endlocal & set ERROR_CODE=%ERROR_CODE%
+
+:postExec
+if exist "%HOME%\forgerc_post.bat" call "%HOME%\forgerc_post.bat"
+
+if "%FORGE_TERMINATE_CMD%" == "on" exit %ERROR_CODE%
+
+cmd /C exit /B %ERROR_CODE%
+
+
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/build.properties
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/build.properties (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/build.properties 2011-12-12 13:53:40 UTC (rev 37214)
@@ -0,0 +1,9 @@
+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-SNAPSHOT.jar
+src.includes = *
+jars.compile.order = .
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/build.properties
___________________________________________________________________
Added: svn:mime-type
+ text/plain
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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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/img/forge.ico
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/img/forge.ico
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/img/forge.png
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/img/forge.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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/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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="org.apache.commons.logging">
+ <resources>
+ <resource-root path="commons-logging-1.1.1.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ </dependencies>
+</module>
Property changes on: 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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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/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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="org.apache.log4j">
+ <resources>
+ <resource-root path="log4j-1.2.16.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api"/>
+ </dependencies>
+</module>
Property changes on: 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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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.0-SNAPSHOT.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.0-SNAPSHOT.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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<module xmlns="urn:jboss:module:1.0" name="org.jboss.forge.event-bus">
+
+ <resources>
+ <resource-root path="forge-event-bus-1.0.0-SNAPSHOT.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api" />
+ <module name="javax.enterprise.api" />
+ </dependencies>
+
+</module>
Property changes on: 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/args4j-2.0.12.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/args4j-2.0.12.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/forge-git-tools-1.0.0-SNAPSHOT.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/forge-git-tools-1.0.0-SNAPSHOT.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/jsch-0.1.41.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/jsch-0.1.41.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: 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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<module xmlns="urn:jboss:module:1.0" name="org.jboss.forge.git">
+
+ <resources>
+ <resource-root path="args4j-2.0.12.jar"/>
+ <resource-root path="jsch-0.1.41.jar"/>
+ <resource-root path="forge-git-tools-1.0.0-SNAPSHOT.jar"/>
+ <resource-root path="org.eclipse.jgit-0.10.1.jar"/>
+ <resource-root path="org.eclipse.jgit.console-0.10.1.jar"/>
+ <resource-root path="org.eclipse.jgit.iplog-0.10.1.jar"/>
+ <resource-root path="org.eclipse.jgit.pgm-0.10.1.jar"/>
+ <resource-root path="org.eclipse.jgit.ui-0.10.1.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api" />
+ <module name="org.jboss.forge.shell.api"/>
+ </dependencies>
+
+</module>
Property changes on: 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-0.10.1.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/org.eclipse.jgit-0.10.1.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/org.eclipse.jgit.console-0.10.1.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/org.eclipse.jgit.console-0.10.1.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/org.eclipse.jgit.iplog-0.10.1.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/org.eclipse.jgit.iplog-0.10.1.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/org.eclipse.jgit.pgm-0.10.1.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/org.eclipse.jgit.pgm-0.10.1.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/org.eclipse.jgit.ui-0.10.1.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/git/main/org.eclipse.jgit.ui-0.10.1.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/api/main/forge-javaee-api-1.0.0-SNAPSHOT.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/javaee/api/main/forge-javaee-api-1.0.0-SNAPSHOT.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: 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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<module xmlns="urn:jboss:module:1.0" name="org.jboss.forge.javaee.api">
+
+ <resources>
+ <resource-root path="forge-javaee-api-1.0.0-SNAPSHOT.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javaee.api" export="true" />
+ <module name="org.jboss.forge.shell.api" />
+ <module name="org.jboss.shrinkwrap.descriptors" services="export" export="true" />
+
+ <module name="javax.api" />
+ </dependencies>
+
+</module>
Property changes on: 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.0-SNAPSHOT.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.0-SNAPSHOT.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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<module xmlns="urn:jboss:module:1.0" name="org.jboss.forge.javaee.impl">
+
+ <resources>
+ <resource-root path="forge-javaee-impl-1.0.0-SNAPSHOT.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="org.jboss.seam.render" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.forge.shell.api" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.forge.javaee.api" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.slf4j" />
+ <module name="org.slf4j.ext" />
+
+ <module name="javax.api" />
+ </dependencies>
+
+</module>
Property changes on: 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.0-SNAPSHOT.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.0-SNAPSHOT.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.0-SNAPSHOT.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/main/forge-shell-1.0.0-SNAPSHOT.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: 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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -0,0 +1,137 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<module xmlns="urn:jboss:module:1.0" name="org.jboss.forge">
+
+ <main-class name="org.jboss.forge.shell.Bootstrap" />
+
+ <resources>
+ <resource-root path="forge-shell-1.0.0-SNAPSHOT.jar"/>
+ <resource-root path="forge-dev-plugins-1.0.0-SNAPSHOT.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="com.sun.xml.bind" />
+
+ <module name="javax.annotation.api" />
+ <module name="jline" />
+
+ <module name="org.apache.httpcomponents" />
+ <module name="org.javassist" />
+ <module name="org.jboss.interceptor" />
+ <module name="org.jboss.modules" />
+
+
+ <module name="org.jboss.forge.javaee.api" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.forge.javaee.impl" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.forge.git" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.forge.event-bus" services="import"
+ export="true">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.forge.maven.api" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.forge.maven.model" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.forge.parser.java.api" />
+ <module name="org.jboss.forge.parser.java.impl" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.forge.parser.xml" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.forge.scaffold.api" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.forge.scaffold.impl" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.forge.shell.api" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.seam.render" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.solder" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.tools.forge.runtime.ext" services="import"
+ optional="true">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.weld.core" services="import" />
+ <module name="org.jboss.weld.spi" services="import" />
+ <module name="org.jboss.weld.api" services="import" />
+
+ <module name="org.mvel" />
+ <module name="org.yaml" />
+ <module name="sun.misc" />
+
+ <module name="javax.api" />
+ </dependencies>
+
+</module>
Property changes on: 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.0-SNAPSHOT.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.0-SNAPSHOT.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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -0,0 +1,45 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<module xmlns="urn:jboss:module:1.0" name="org.jboss.forge.maven.api">
+
+ <resources>
+ <resource-root path="forge-maven-api-1.0.0-SNAPSHOT.jar"/>
+ <resource-root path="commons-cli-1.2.jar"/>
+ <resource-root path="maven-aether-provider-3.0.3.jar"/>
+ <resource-root path="maven-artifact-3.0.3.jar"/>
+ <resource-root path="maven-compat-3.0.3.jar"/>
+ <resource-root path="maven-core-3.0.3.jar"/>
+ <resource-root path="maven-embedder-3.0.3.jar"/>
+ <resource-root path="maven-model-3.0.3.jar"/>
+ <resource-root path="maven-model-builder-3.0.3.jar"/>
+ <resource-root path="maven-plugin-api-3.0.3.jar"/>
+ <resource-root path="maven-repository-metadata-3.0.3.jar"/>
+ <resource-root path="maven-settings-3.0.3.jar"/>
+ <resource-root path="maven-settings-builder-3.0.3.jar"/>
+ <resource-root path="wagon-file-2.0.jar"/>
+ <resource-root path="wagon-http-lightweight-2.0.jar"/>
+ <resource-root path="wagon-http-shared4-2.0.jar"/>
+ <resource-root path="wagon-provider-api-1.0-beta-7.jar"/>
+ <resource-root path="plexus-classworlds-2.4.jar"/>
+ <resource-root path="plexus-component-annotations-1.5.5.jar"/>
+ <resource-root path="plexus-interpolation-1.14.jar"/>
+ <resource-root path="plexus-utils-2.0.6.jar"/>
+ <resource-root path="aether-api-1.11.jar"/>
+ <resource-root path="aether-connector-wagon-1.11.jar"/>
+ <resource-root path="aether-impl-1.11.jar"/>
+ <resource-root path="aether-spi-1.11.jar"/>
+ <resource-root path="aether-util-1.11.jar"/>
+ <resource-root path="plexus-cipher-1.4.jar"/>
+ <resource-root path="plexus-sec-dispatcher-1.3.jar"/>
+ <resource-root path="sisu-inject-bean-2.1.1.jar"/>
+ <resource-root path="sisu-inject-plexus-2.1.1.jar"/>
+ <resource-root path="sisu-guice-2.9.4-no_aop.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api" />
+ <module name="org.jboss.forge.shell.api" />
+ </dependencies>
+
+</module>
Property changes on: 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.0-SNAPSHOT.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.0-SNAPSHOT.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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<module xmlns="urn:jboss:module:1.0" name="org.jboss.forge.maven.model">
+
+ <resources>
+ <resource-root path="forge-project-model-maven-1.0.0-SNAPSHOT.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api" />
+ <module name="org.jboss.forge.shell.api"/>
+ <module name="org.jboss.forge.maven.api" services="import" />
+ </dependencies>
+
+</module>
Property changes on: 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.0-SNAPSHOT.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.0-SNAPSHOT.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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<module xmlns="urn:jboss:module:1.0" name="org.jboss.forge.parser.java.api">
+
+ <resources>
+ <resource-root path="forge-parser-java-api-1.0.0-SNAPSHOT.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api" />
+ </dependencies>
+
+</module>
Property changes on: 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.0-SNAPSHOT.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.0-SNAPSHOT.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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<module xmlns="urn:jboss:module:1.0" name="org.jboss.forge.parser.java.impl">
+
+ <resources>
+ <resource-root path="forge-parser-java-1.0.0-SNAPSHOT.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="org.eclipse.javaparser" />
+
+ <module name="org.jboss.forge.parser.java.api" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="javax.api" />
+ </dependencies>
+
+</module>
Property changes on: 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.0-SNAPSHOT.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.0-SNAPSHOT.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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<module xmlns="urn:jboss:module:1.0" name="org.jboss.forge.parser.xml">
+
+ <resources>
+ <resource-root path="forge-parser-xml-1.0.0-SNAPSHOT.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.api" />
+ </dependencies>
+
+</module>
Property changes on: 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.0-SNAPSHOT.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.0-SNAPSHOT.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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<module xmlns="urn:jboss:module:1.0" name="org.jboss.forge.scaffold.api">
+
+ <resources>
+ <resource-root path="forge-scaffold-api-1.0.0-SNAPSHOT.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="org.jboss.forge.shell.api" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="javax.api" />
+ </dependencies>
+
+</module>
Property changes on: 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.0-SNAPSHOT.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.0-SNAPSHOT.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.0-SNAPSHOT.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.0-SNAPSHOT.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-1.35-SNAPSHOT.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/jboss/forge/scaffold/impl/main/metawidget-all-1.35-SNAPSHOT.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: 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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -0,0 +1,52 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<module xmlns="urn:jboss:module:1.0" name="org.jboss.forge.scaffold.impl">
+
+ <resources>
+ <resource-root path="forge-scaffold-plugins-1.0.0-SNAPSHOT.jar"/>
+ <resource-root path="forge-scaffold-faces-1.0.0-SNAPSHOT.jar"/>
+ <resource-root path="metawidget-all-1.35-SNAPSHOT.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="org.jboss.forge.shell.api" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.forge.javaee.api" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.forge.javaee.impl" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.forge.scaffold.api" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.seam.render" services="import">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.mvel" />
+ <module name="javax.api" />
+ </dependencies>
+
+</module>
Property changes on: 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.0-SNAPSHOT.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.0-SNAPSHOT.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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<module xmlns="urn:jboss:module:1.0" name="org.jboss.forge.shell.api">
+
+ <resources>
+ <resource-root path="forge-shell-api-1.0.0-SNAPSHOT.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.annotation.api" export="true" />
+ <module name="javax.enterprise.api" export="true" />
+
+ <module name="org.javassist" export="true" />
+ <module name="org.jboss.interceptor" export="true" />
+ <module name="org.jboss.weld.core" export="true" />
+
+ <module name="org.jboss.forge.parser.java.api" export="true" services="export">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.forge.parser.java.impl" export="true" services="export">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.forge.parser.xml" export="true" services="export">
+ <imports>
+ <include path="**" />
+ <include path="META-INF" />
+ </imports>
+ </module>
+
+ <module name="org.jboss.forge.event-bus" export="true" />
+
+ <module name="org.jboss.solder" export="true" />
+
+ <module name="javax.api" />
+ </dependencies>
+
+</module>
Property changes on: 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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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/logmanager/main/jboss-logmanager-1.2.0.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.0.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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="org.jboss.logmanager">
+ <resources>
+ <resource-root path="jboss-logmanager-1.2.0.GA.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies/>
+</module>
Property changes on: 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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!-- ~ JBoss, Home of Professional Open Source. ~ Copyright 2011, Red Hat,
+ Inc., and individual contributors ~ as indicated by the @author tags. See
+ the copyright.txt file in the ~ distribution for a full listing of individual
+ contributors. ~ ~ This is free software; you can redistribute it and/or modify
+ it ~ under the terms of the GNU Lesser General Public License as ~ published
+ by the Free Software Foundation; either version 2.1 of ~ the License, or
+ (at your option) any later version. ~ ~ This software is distributed in the
+ hope that it will be useful, ~ but WITHOUT ANY WARRANTY; without even the
+ implied warranty of ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ See the GNU ~ Lesser General Public License for more details. ~ ~ You should
+ have received a copy of the GNU Lesser General Public ~ License along with
+ this software; if not, write to the Free ~ Software Foundation, Inc., 51
+ Franklin St, Fifth Floor, Boston, MA ~ 02110-1301 USA, or see the FSF site:
+ http://www.fsf.org. -->
+
+<module xmlns="urn:jboss:module:1.0" name="org.jboss.seam.render">
+ <resources>
+ <resource-root path="seam-render-1.0.0-SNAPSHOT.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.enterprise.api" />
+ <module name="org.jboss.forge" />
+ <module name="org.jboss.solder" />
+ <module name="org.mvel" />
+ <module name="javax.api" />
+ </dependencies>
+</module>
Property changes on: 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-SNAPSHOT.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-SNAPSHOT.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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!-- ~ JBoss, Home of Professional Open Source. ~ Copyright 2010, Red Hat,
+ Inc., and individual contributors ~ as indicated by the @author tags. See
+ the copyright.txt file in the ~ distribution for a full listing of individual
+ contributors. ~ ~ This is free software; you can redistribute it and/or modify
+ it ~ under the terms of the GNU Lesser General Public License as ~ published
+ by the Free Software Foundation; either version 2.1 of ~ the License, or
+ (at your option) any later version. ~ ~ This software is distributed in the
+ hope that it will be useful, ~ but WITHOUT ANY WARRANTY; without even the
+ implied warranty of ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ See the GNU ~ Lesser General Public License for more details. ~ ~ You should
+ have received a copy of the GNU Lesser General Public ~ License along with
+ this software; if not, write to the Free ~ Software Foundation, Inc., 51
+ Franklin St, Fifth Floor, Boston, MA ~ 02110-1301 USA, or see the FSF site:
+ http://www.fsf.org. -->
+
+<module xmlns="urn:jboss:module:1.0" name="org.jboss.solder">
+ <resources>
+ <resource-root path="solder-api-3.1.0.Beta3.jar"/>
+ <resource-root path="solder-impl-3.1.0.Beta3.jar"/>
+ <resource-root path="solder-logging-3.1.0.Beta3.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="javax.annotation.api" />
+ <module name="javax.el.api" />
+ <module name="javax.enterprise.api" />
+ <module name="javax.interceptor.api" />
+ <module name="javax.servlet.api" />
+ <module name="org.javassist" />
+ <module name="org.jboss.interceptor" />
+ <module name="org.jboss.logmanager" />
+ <module name="org.jboss.weld.core" />
+
+ <module name="javax.api" />
+ </dependencies>
+
+</module>
Property changes on: 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.Beta3.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.Beta3.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.Beta3.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.Beta3.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.Beta3.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.Beta3.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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ ~ JBoss, Home of Professional Open Source.
+ ~ Copyright 2010, Red Hat, Inc., and individual contributors
+ ~ as indicated by the @author tags. See the copyright.txt file in the
+ ~ distribution for a full listing of individual contributors.
+ ~
+ ~ This is free software; you can redistribute it and/or modify it
+ ~ under the terms of the GNU Lesser General Public License as
+ ~ published by the Free Software Foundation; either version 2.1 of
+ ~ the License, or (at your option) any later version.
+ ~
+ ~ This software is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ ~ Lesser General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public
+ ~ License along with this software; if not, write to the Free
+ ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ -->
+
+<module xmlns="urn:jboss:module:1.0" name="org.slf4j.impl">
+ <resources>
+ <resource-root path="slf4j-jboss-logmanager-1.0.0.CR4.jar"/>
+ <!-- Insert resources here -->
+ </resources>
+
+ <dependencies>
+ <module name="org.slf4j"/>
+ <module name="org.jboss.logmanager"/>
+ </dependencies>
+</module>
Property changes on: 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-jboss-logmanager-1.0.0.CR4.jar
===================================================================
(Binary files differ)
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/modules/org/slf4j/impl/main/slf4j-jboss-logmanager-1.0.0.CR4.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: 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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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 2011-12-12 13:53:40 UTC (rev 37214)
@@ -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
Added: trunk/forge/plugins/org.jboss.tools.forge.runtime/pom.xml
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.runtime/pom.xml (rev 0)
+++ trunk/forge/plugins/org.jboss.tools.forge.runtime/pom.xml 2011-12-12 13:53:40 UTC (rev 37214)
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.jboss.tools.forge</groupId>
+ <artifactId>plugins</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools.forge.plugins</groupId>
+ <artifactId>org.jboss.tools.forge.runtime</artifactId>
+
+ <packaging>eclipse-plugin</packaging>
+</project>
Property changes on: trunk/forge/plugins/org.jboss.tools.forge.runtime/pom.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
14 years, 4 months
JBoss Tools SVN: r37213 - trunk/forge/plugins.
by jbosstools-commits@lists.jboss.org
Author: koen.aers(a)jboss.com
Date: 2011-12-12 08:47:28 -0500 (Mon, 12 Dec 2011)
New Revision: 37213
Removed:
trunk/forge/plugins/org.jboss.tools.forge.runtime/
Log:
JBIDE-10403: remove beta3 runtime from trunk
14 years, 4 months