JBoss Tools SVN: r33925 - in trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test: wtp and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: jjankovi
Date: 2011-08-15 10:59:11 -0400 (Mon, 15 Aug 2011)
New Revision: 33925
Modified:
trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/jbt/SampleWSTest.java
trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/wtp/WSTestBase.java
Log:
Reorganized and simplified structure of WS bot tests
Modified: trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/jbt/SampleWSTest.java
===================================================================
--- trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/jbt/SampleWSTest.java 2011-08-15 14:02:37 UTC (rev 33924)
+++ trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/jbt/SampleWSTest.java 2011-08-15 14:59:11 UTC (rev 33925)
@@ -101,47 +101,7 @@
checkRESTService(project, "RESTSample", "rest.sample", "Sample", "Hello World!", "RESTApp");
}
- private void addRestSupport(String project) {
- SWTBotTree tree = projectExplorer.bot().tree();
- SWTBotTreeItem ti = tree.expandNode(project);
- new TreeItemAction(ti, "Configure","Add JAX-RS 1.1 support...").run();
- bot.sleep(500);
- util.waitForNonIgnoredJobs();
- try {
- ti.getNode("RESTful Web Services");
- }catch (WidgetNotFoundException exc) {
- fail("REST support was not configured properly");
- }
- }
- private void checkRestSupport(String project, String servName) {
- SWTBotTree tree = projectExplorer.bot().tree();
- SWTBotTreeItem ti = tree.expandNode(project,"RESTful Web Services");
- ArrayList<String> nodes = (ArrayList<String>)ti.getNodes();
-
-
- assertTrue("Should be 2 GET services instead of " +
- numberOfService(nodes,"GET"), numberOfService(nodes,"GET") == 2);
- assertTrue("Should be 1 DELETE service instead of " +
- numberOfService(nodes,"DELETE"), numberOfService(nodes,"DELETE") == 1);
- assertTrue("Should be 1 POST service instead of " +
- numberOfService(nodes,"POST"), numberOfService(nodes,"POST") == 1);
- assertTrue("Should be 1 PUT service instead of " +
- numberOfService(nodes,"PUT"), numberOfService(nodes,"PUT") == 1);
-
-
- assertTrue("Node's form should be {GET /RESTSample} instead of {" +
- nodes.get(0) + "}",nodes.get(0).equals("GET /" + servName));
- assertTrue("Node's form should be {DELETE /RESTSample/DeleteMethod} instead of {" +
- nodes.get(1) + "}",nodes.get(1).equals("DELETE /" + servName + "/DeleteMethod"));
- assertTrue("Node's form should be {POST /RESTSample/PostMethod} instead of {" +
- nodes.get(2) + "}",nodes.get(2).equals("POST /" + servName + "/PostMethod"));
- assertTrue("Node's form should be {PUT /RESTSample/PutMethod} instead of {" +
- nodes.get(3) + "}",nodes.get(3).equals("PUT /" + servName + "/PutMethod"));
- assertTrue("Node's form should be {GET /RESTSample/{name}} instead of {" +
- nodes.get(4) + "}",nodes.get(4).equals("GET /" + servName + "/{name}"));
-
- }
private int numberOfService(ArrayList<String> services, String serviceType) {
int count = 0;
@@ -174,18 +134,12 @@
private void checkRESTService(String project, String svcName, String svcPkg, String svcClass, String msgContent, String appCls) {
checkService(Type.REST, project, svcName, svcPkg, svcClass, msgContent, appCls);
- addRestSupport(project);
- checkRestSupport(project,svcName);
+ checkRestSupport(project,svcName);
}
private void createSampleRESTWS(String project, String name, String pkg, String cls, String appCls) {
SWTBotEditor ed = createSampleService(Type.REST, project, name, pkg, cls, appCls);
- SWTBotEclipseEditor st = ed.toTextEditor();
- st.selectRange(0, 0, st.getText().length());
- InputStream javasrc = SampleWSTest.class.getResourceAsStream("/resources/jbossws/Rest.java.ws");
- String code = readStream(javasrc);
- st.setText(code);
- ed.save();
+ copyResourceToClass(ed, SampleWSTest.class.getResourceAsStream("/resources/jbossws/Rest.java.ws"),false);
}
@@ -244,6 +198,53 @@
break;
}
}
+
+ private void checkRestSupport(String project, String servName) {
+ addRestSupport(project);
+ testRestSupport(project, servName);
+ }
+
+ private void addRestSupport(String project) {
+ SWTBotTree tree = projectExplorer.bot().tree();
+ SWTBotTreeItem ti = tree.expandNode(project);
+ new TreeItemAction(ti, "Configure","Add JAX-RS 1.1 support...").run();
+ bot.sleep(500);
+ util.waitForNonIgnoredJobs();
+ try {
+ ti.getNode("RESTful Web Services");
+ }catch (WidgetNotFoundException exc) {
+ fail("REST support was not configured properly");
+ }
+ }
+
+ private void testRestSupport(String project, String servName) {
+ SWTBotTree tree = projectExplorer.bot().tree();
+ SWTBotTreeItem ti = tree.expandNode(project,"RESTful Web Services");
+ ArrayList<String> nodes = (ArrayList<String>)ti.getNodes();
+
+
+ assertTrue("Should be 2 GET services instead of " +
+ numberOfService(nodes,"GET"), numberOfService(nodes,"GET") == 2);
+ assertTrue("Should be 1 DELETE service instead of " +
+ numberOfService(nodes,"DELETE"), numberOfService(nodes,"DELETE") == 1);
+ assertTrue("Should be 1 POST service instead of " +
+ numberOfService(nodes,"POST"), numberOfService(nodes,"POST") == 1);
+ assertTrue("Should be 1 PUT service instead of " +
+ numberOfService(nodes,"PUT"), numberOfService(nodes,"PUT") == 1);
+
+
+ assertTrue("Node's form should be {GET /RESTSample} instead of {" +
+ nodes.get(0) + "}",nodes.get(0).equals("GET /" + servName));
+ assertTrue("Node's form should be {DELETE /RESTSample/DeleteMethod} instead of {" +
+ nodes.get(1) + "}",nodes.get(1).equals("DELETE /" + servName + "/DeleteMethod"));
+ assertTrue("Node's form should be {POST /RESTSample/PostMethod} instead of {" +
+ nodes.get(2) + "}",nodes.get(2).equals("POST /" + servName + "/PostMethod"));
+ assertTrue("Node's form should be {PUT /RESTSample/PutMethod} instead of {" +
+ nodes.get(3) + "}",nodes.get(3).equals("PUT /" + servName + "/PutMethod"));
+ assertTrue("Node's form should be {GET /RESTSample/{name}} instead of {" +
+ nodes.get(4) + "}",nodes.get(4).equals("GET /" + servName + "/{name}"));
+
+ }
private IProject getProject(String project) {
return ResourcesPlugin.getWorkspace().getRoot().getProject(project);
Modified: trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/wtp/WSTestBase.java
===================================================================
--- trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/wtp/WSTestBase.java 2011-08-15 14:02:37 UTC (rev 33924)
+++ trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/wtp/WSTestBase.java 2011-08-15 14:59:11 UTC (rev 33925)
@@ -36,6 +36,7 @@
import org.jboss.tools.ui.bot.ext.gen.ActionItem.NewObject.JavaEEEnterpriseApplicationProject;
import org.jboss.tools.ui.bot.ext.gen.ActionItem.NewObject.WebServicesWSDL;
import org.jboss.tools.ui.bot.ext.types.IDELabel;
+import org.jboss.tools.ws.ui.bot.test.jbt.SampleWSTest;
import org.jboss.tools.ws.ui.bot.test.uiutils.actions.NewFileWizardAction;
import org.jboss.tools.ws.ui.bot.test.uiutils.wizards.DynamicWebProjectWizard;
import org.jboss.tools.ws.ui.bot.test.uiutils.wizards.WebServiceClientWizard;
@@ -52,16 +53,16 @@
@RunWith(SWTBotJunit4ClassRunner.class)
public abstract class WSTestBase extends SWTTestExt {
- private static final String SOAP_REQUEST_TEMPLATE = "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\" ?>" +
- "<soap:Envelope xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\"" +
- " xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"" +
- " xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\">" +
- "<soap:Body>{0}</soap:Body>" +
- "</soap:Envelope>";
-
- private static final Logger L = Logger.getLogger(WSTestBase.class.getName());
+ private static final String SOAP_REQUEST_TEMPLATE = "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\" ?>"
+ + "<soap:Envelope xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\""
+ + " xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\""
+ + " xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\">"
+ + "<soap:Body>{0}</soap:Body>" + "</soap:Envelope>";
+
+ private static final Logger L = Logger
+ .getLogger(WSTestBase.class.getName());
private Slider_Level level;
-
+
@Before
public void setup() {
if (getEarProjectName() != null && !projectExists(getEarProjectName())) {
@@ -71,45 +72,49 @@
createProject(getWsProjectName());
}
}
-
+
protected boolean projectExists(String name) {
return projectExplorer.existsResource(name);
}
-
+
@After
public void cleanup() {
servers.removeAllProjectsFromServer();
}
-
+
@AfterClass
public static void cleanAll() {
L.info("cleanAll");
projectExplorer.deleteAllProjects();
}
-
+
protected abstract String getWsProjectName();
-
+
protected String getEarProjectName() {
return null;
}
-
+
protected abstract String getWsPackage();
+
protected abstract String getWsName();
-
+
protected void setLevel(Slider_Level level) {
this.level = level;
}
-
+
protected Slider_Level getLevel() {
return level;
}
-
+
protected String getWSDLUrl() {
- return "http://localhost:8080/" + getWsProjectName() + "/" + getWsName() + "?wsdl";
+ return "http://localhost:8080/" + getWsProjectName() + "/"
+ + getWsName() + "?wsdl";
}
-
- protected void createClient(String wsdl, String targetProject, Slider_Level level, String pkg) {
- new NewFileWizardAction().run().selectTemplate("Web Services", "Web Service Client").next();
+
+ protected void createClient(String wsdl, String targetProject,
+ Slider_Level level, String pkg) {
+ new NewFileWizardAction().run()
+ .selectTemplate("Web Services", "Web Service Client").next();
WebServiceClientWizard w = new WebServiceClientWizard();
w.setSource(wsdl);
util.waitForNonIgnoredJobs();
@@ -125,10 +130,10 @@
w.finish();
util.waitForNonIgnoredJobs();
bot.sleep(1000);
-
- //let's fail if there's some error in the wizard,
- //and close error dialog and the wizard so other tests
- //can continue
+
+ // let's fail if there's some error in the wizard,
+ // and close error dialog and the wizard so other tests
+ // can continue
if (bot.activeShell().getText().contains("Error")) {
SWTBotShell sh = bot.activeShell();
String msg = sh.bot().text().getText();
@@ -137,9 +142,10 @@
Assert.fail(msg);
}
}
-
- protected void createService(Service_Type t, String source, Slider_Level level, String pkg, String code) {
- //create ws source - java class or wsdl
+
+ protected void createService(Service_Type t, String source,
+ Slider_Level level, String pkg, String code) {
+ // create ws source - java class or wsdl
SWTBotEditor ed = null;
switch (t) {
case BOTTOM_UP:
@@ -150,20 +156,25 @@
break;
}
assertNotNull(ed);
- //replace default content of java class w/ code
- SWTBotEclipseEditor st = ed.toTextEditor();
- st.selectRange(0, 0, st.getText().length());
- st.setText(code);
- ed.saveAndClose();
- //refresh workspace - workaround for JBIDE-6731
- try {
- ResourcesPlugin.getWorkspace().getRoot().refreshLocal(IWorkspaceRoot.DEPTH_INFINITE, new NullProgressMonitor());
+ // replace default content of java class w/ code
+ SWTBotEclipseEditor st = ed.toTextEditor();
+ st.selectRange(0, 0, st.getText().length());
+ st.setText(code);
+ ed.saveAndClose();
+ // refresh workspace - workaround for JBIDE-6731
+ try {
+ ResourcesPlugin
+ .getWorkspace()
+ .getRoot()
+ .refreshLocal(IWorkspaceRoot.DEPTH_INFINITE,
+ new NullProgressMonitor());
} catch (CoreException e) {
L.log(Level.WARNING, e.getMessage(), e);
}
bot.sleep(500);
- //create a web service
- new NewFileWizardAction().run().selectTemplate("Web Services", "Web Service").next();
+ // create a web service
+ new NewFileWizardAction().run()
+ .selectTemplate("Web Services", "Web Service").next();
WebServiceWizard wsw = new WebServiceWizard();
wsw.setServiceType(t);
wsw.setSource(source);
@@ -182,10 +193,10 @@
wsw.finish();
util.waitForNonIgnoredJobs();
bot.sleep(1000);
-
- //let's fail if there's some error in the wizard,
- //and close error dialog and the wizard so other tests
- //can continue
+
+ // let's fail if there's some error in the wizard,
+ // and close error dialog and the wizard so other tests
+ // can continue
if (bot.activeShell().getText().contains("Error")) {
SWTBotShell sh = bot.activeShell();
String msg = sh.bot().text().getText();
@@ -194,42 +205,46 @@
Assert.fail(msg);
}
}
-
+
protected SWTBotEditor createClass(String pkg, String cName) {
new NewFileWizardAction().run().selectTemplate("Java", "Class").next();
Wizard w = new Wizard();
w.bot().textWithLabel("Package:").setText(pkg);
w.bot().textWithLabel("Name:").setText(cName);
- w.bot().textWithLabel("Source folder:").setText(getWsProjectName() + "/src");
+ w.bot().textWithLabel("Source folder:")
+ .setText(getWsProjectName() + "/src");
w.finish();
bot.sleep(4500);
return bot.editorByTitle(cName + ".java");
}
-
+
private SWTBotEditor createWsdl(String s) {
SWTBot wiz1 = open.newObject(WebServicesWSDL.LABEL);
wiz1.textWithLabel(WebServicesWSDL.TEXT_FILE_NAME).setText(s + ".wsdl");
- wiz1.textWithLabel(WebServicesWSDL.TEXT_ENTER_OR_SELECT_THE_PARENT_FOLDER)
- .setText(getWsProjectName() + "/src");
+ wiz1.textWithLabel(
+ WebServicesWSDL.TEXT_ENTER_OR_SELECT_THE_PARENT_FOLDER)
+ .setText(getWsProjectName() + "/src");
wiz1.button(IDELabel.Button.NEXT).click();
open.finish(wiz1);
return bot.editorByTitle(s + ".wsdl");
}
-
+
protected void createProject(String name) {
- new NewFileWizardAction().run().selectTemplate("Web", "Dynamic Web Project").next();
+ new NewFileWizardAction().run()
+ .selectTemplate("Web", "Dynamic Web Project").next();
new DynamicWebProjectWizard().setProjectName(name).finish();
util.waitForNonIgnoredJobs();
assertTrue(projectExplorer.existsResource(name));
projectExplorer.selectProject(name);
}
-
+
protected void createEARProject(String name) {
SWTBot wiz = open.newObject(JavaEEEnterpriseApplicationProject.LABEL);
- wiz.textWithLabel(JavaEEEnterpriseApplicationProject.TEXT_PROJECT_NAME).setText(name);
+ wiz.textWithLabel(JavaEEEnterpriseApplicationProject.TEXT_PROJECT_NAME)
+ .setText(name);
// set EAR version
SWTBotCombo combo = wiz.comboBox(1);
- combo.setSelection(combo.itemCount()-1);
+ combo.setSelection(combo.itemCount() - 1);
wiz.button(IDELabel.Button.NEXT).click();
wiz.checkBox("Generate application.xml deployment descriptor").click();
open.finish(wiz);
@@ -241,7 +256,8 @@
protected void bottomUpJbossWebService(InputStream javasrc) {
String s = readStream(javasrc);
String src = MessageFormat.format(s, getWsPackage(), getWsName());
- createService(Service_Type.BOTTOM_UP, getWsPackage() + "." + getWsName(), getLevel(), null, src);
+ createService(Service_Type.BOTTOM_UP, getWsPackage() + "."
+ + getWsName(), getLevel(), null, src);
}
protected void topDownWS(InputStream input, String pkg) {
@@ -254,13 +270,14 @@
}
sb.append(tns[0]);
String src = MessageFormat.format(s, sb.toString(), getWsName());
- createService(Service_Type.TOP_DOWN, "/" + getWsProjectName() + "/src/" + getWsName() + ".wsdl", getLevel(), pkg, src);
+ createService(Service_Type.TOP_DOWN, "/" + getWsProjectName() + "/src/"
+ + getWsName() + ".wsdl", getLevel(), pkg, src);
}
protected void assertServiceDeployed(String wsdlURL) {
assertServiceDeployed(wsdlURL, 5000);
}
-
+
protected void assertServiceDeployed(String wsdlURL, long timeout) {
long t = System.currentTimeMillis();
int rsp = -1;
@@ -276,7 +293,7 @@
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
- //ignore
+ // ignore
}
L.info("retrying...");
}
@@ -291,17 +308,19 @@
}
}
L.info("done after: " + (System.currentTimeMillis() - t) + "ms.");
- assertEquals("Service was not sucessfully deployed, WSDL '" + wsdlURL + "' was not found",
- HttpURLConnection.HTTP_OK, rsp);
+ assertEquals("Service was not sucessfully deployed, WSDL '" + wsdlURL
+ + "' was not found", HttpURLConnection.HTTP_OK, rsp);
}
-
+
protected void assertServiceNotDeployed(String wsdlURL) {
HttpURLConnection connection = null;
try {
URL u = new URL(wsdlURL);
connection = (HttpURLConnection) u.openConnection();
- assertEquals("Project was not sucessfully undeployed, WSDL '" + wsdlURL + "' is still available",
- HttpURLConnection.HTTP_NOT_FOUND, connection.getResponseCode());
+ assertEquals("Project was not sucessfully undeployed, WSDL '"
+ + wsdlURL + "' is still available",
+ HttpURLConnection.HTTP_NOT_FOUND,
+ connection.getResponseCode());
} catch (MalformedURLException e1) {
throw new RuntimeException(e1);
} catch (IOException e) {
@@ -313,10 +332,11 @@
}
}
- protected void assertServiceResponseToClient(String startServlet, String response) {
+ protected void assertServiceResponseToClient(String startServlet,
+ String response) {
assertContains(response, getPage(startServlet, 15000));
}
-
+
protected String getPage(String url, long timeout) {
long t = System.currentTimeMillis();
int rsp = -1;
@@ -328,13 +348,14 @@
connection = (HttpURLConnection) u.openConnection();
rsp = connection.getResponseCode();
if (rsp == HttpURLConnection.HTTP_OK) {
- page = new Scanner(connection.getInputStream()).useDelimiter("\\A").next();
+ page = new Scanner(connection.getInputStream())
+ .useDelimiter("\\A").next();
break;
} else {
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
- //ignore
+ // ignore
}
L.info("retrying...");
}
@@ -349,19 +370,21 @@
}
}
L.info("done after: " + (System.currentTimeMillis() - t) + "ms.");
- assertEquals("cannot connect to '" + url + "'", HttpURLConnection.HTTP_OK, rsp);
+ assertEquals("cannot connect to '" + url + "'",
+ HttpURLConnection.HTTP_OK, rsp);
return page;
}
-
+
public static String getSoapRequest(String body) {
return MessageFormat.format(SOAP_REQUEST_TEMPLATE, body);
}
-
+
protected String readStream(InputStream is) {
- //we don't care about performance in tests too much, so this should be OK
+ // we don't care about performance in tests too much, so this should be
+ // OK
return new Scanner(is).useDelimiter("\\A").next();
}
-
+
protected String readFile(IFile f) {
String content = null;
InputStream is = null;
@@ -382,11 +405,20 @@
}
return content;
}
-
+
+ protected void copyResourceToClass(SWTBotEditor classEdit,
+ InputStream resource, boolean closeEdit) {
+ SWTBotEclipseEditor st = classEdit.toTextEditor();
+ st.selectRange(0, 0, st.getText().length());
+ String code = readStream(resource);
+ st.setText(code);
+ classEdit.save();
+ if (closeEdit) classEdit.close();
+ }
+
protected void runProject(String project) {
open.viewOpen(ActionItem.View.ServerServers.LABEL);
projectExplorer.runOnServer(project);
}
-
}
14 years, 8 months
JBoss Tools SVN: r33924 - trunk/as/plugins/org.jboss.ide.eclipse.as.rse.core/src/org/jboss/ide/eclipse/as/rse/core.
by jbosstools-commits@lists.jboss.org
Author: adietish
Date: 2011-08-15 10:02:37 -0400 (Mon, 15 Aug 2011)
New Revision: 33924
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.rse.core/src/org/jboss/ide/eclipse/as/rse/core/RSEBehaviourDelegate.java
Log:
corrected warning, removed unneeded import
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.rse.core/src/org/jboss/ide/eclipse/as/rse/core/RSEBehaviourDelegate.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.rse.core/src/org/jboss/ide/eclipse/as/rse/core/RSEBehaviourDelegate.java 2011-08-15 13:22:02 UTC (rev 33923)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.rse.core/src/org/jboss/ide/eclipse/as/rse/core/RSEBehaviourDelegate.java 2011-08-15 14:02:37 UTC (rev 33924)
@@ -22,7 +22,6 @@
import org.eclipse.rse.services.shells.IHostShell;
import org.eclipse.wst.server.core.IServer;
import org.jboss.ide.eclipse.as.core.extensions.events.ServerLogger;
-import org.jboss.ide.eclipse.as.core.server.IServerStatePoller;
import org.jboss.ide.eclipse.as.core.util.ServerUtil;
import org.jboss.ide.eclipse.as.rse.core.RSEHostShellModel.ServerShellModel;
14 years, 8 months
JBoss Tools SVN: r33923 - in trunk/as/plugins: org.jboss.ide.eclipse.as.egit.core and 3 other directories.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2011-08-15 09:22:02 -0400 (Mon, 15 Aug 2011)
New Revision: 33923
Added:
trunk/as/plugins/org.jboss.ide.eclipse.as.egit.core/plugin.xml
trunk/as/plugins/org.jboss.ide.eclipse.as.egit.core/src/org/jboss/ide/eclipse/as/egit/core/module/
trunk/as/plugins/org.jboss.ide.eclipse.as.egit.core/src/org/jboss/ide/eclipse/as/egit/core/module/GitProjectModuleFactoryDelegate.java
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.core/plugin.xml
trunk/as/plugins/org.jboss.ide.eclipse.as.egit.core/META-INF/MANIFEST.MF
Log:
Initial attempt at trying to get as.egit.core to resolve. JBIDE-9510
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.core/plugin.xml
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.core/plugin.xml 2011-08-15 12:13:53 UTC (rev 33922)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.core/plugin.xml 2011-08-15 13:22:02 UTC (rev 33923)
@@ -639,6 +639,14 @@
types="jbt.bpel.module"
versions="1.1, 2.0">
</moduleType>
+ <moduleType
+ types="jbt.bpel.module"
+ versions="1.1, 2.0">
+ </moduleType>
+ <moduleType
+ types="jbt.egit"
+ versions="1.0">
+ </moduleType>
</runtimeType>
</extension>
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.egit.core/META-INF/MANIFEST.MF
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.egit.core/META-INF/MANIFEST.MF 2011-08-15 12:13:53 UTC (rev 33922)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.egit.core/META-INF/MANIFEST.MF 2011-08-15 13:22:02 UTC (rev 33923)
@@ -1,10 +1,24 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: EGit Integration Core
-Bundle-SymbolicName: org.jboss.ide.eclipse.as.egit.core
+Bundle-SymbolicName: org.jboss.ide.eclipse.as.egit.core;singleton:=true
Bundle-Version: 0.0.1.qualifier
Bundle-Activator: org.jboss.ide.eclipse.as.egit.core.Activator
-Require-Bundle: org.eclipse.core.runtime
+Require-Bundle: org.eclipse.core.runtime,
+ org.eclipse.wst.server.core;bundle-version="1.1.302",
+ org.eclipse.core.resources;bundle-version="3.7.100",
+ org.eclipse.egit;bundle-version="1.1.0",
+ org.eclipse.egit.core;bundle-version="1.1.0",
+ org.eclipse.egit.core.source;bundle-version="1.0.0",
+ org.eclipse.egit.doc;bundle-version="1.1.0",
+ org.eclipse.egit.fetchfactory;bundle-version="0.12.0",
+ org.eclipse.egit.github.core;bundle-version="1.1.0",
+ org.eclipse.egit.github.core.tests;bundle-version="1.1.0",
+ org.eclipse.egit.mylyn.ui;bundle-version="1.1.0",
+ org.eclipse.egit.mylyn.ui.source;bundle-version="1.0.0",
+ org.eclipse.egit.ui;bundle-version="1.1.0",
+ org.eclipse.egit.ui.source;bundle-version="1.0.0",
+ org.jboss.tools.as.egit.integration;bundle-version="1.0.0"
Bundle-ActivationPolicy: lazy
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Bundle-Vendor: JBoss by Red Hat
Added: trunk/as/plugins/org.jboss.ide.eclipse.as.egit.core/plugin.xml
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.egit.core/plugin.xml (rev 0)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.egit.core/plugin.xml 2011-08-15 13:22:02 UTC (rev 33923)
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?eclipse version="3.2"?>
+<plugin>
+ <extension
+ point="org.eclipse.wst.server.core.moduleFactories">
+ <moduleFactory
+ class="org.jboss.ide.eclipse.as.egit.core.module.GitProjectModuleFactoryDelegate"
+ id="org.jboss.ide.eclipse.as.egit.core.module.gitProjectModuleFactory"
+ projects="true">
+ <moduleType
+ types="jbt.egit"
+ versions="1.0">
+ </moduleType>
+ </moduleFactory>
+ </extension>
+ <extension
+ point="org.eclipse.wst.server.core.moduleTypes">
+ <moduleType
+ id="jbt.egit"
+ name="Egit">
+ </moduleType>
+ </extension>
+</plugin>
Added: trunk/as/plugins/org.jboss.ide.eclipse.as.egit.core/src/org/jboss/ide/eclipse/as/egit/core/module/GitProjectModuleFactoryDelegate.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.egit.core/src/org/jboss/ide/eclipse/as/egit/core/module/GitProjectModuleFactoryDelegate.java (rev 0)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.egit.core/src/org/jboss/ide/eclipse/as/egit/core/module/GitProjectModuleFactoryDelegate.java 2011-08-15 13:22:02 UTC (rev 33923)
@@ -0,0 +1,28 @@
+package org.jboss.ide.eclipse.as.egit.core.module;
+
+import org.eclipse.core.resources.IProject;
+import org.eclipse.egit.core.project.RepositoryMapping;
+import org.eclipse.wst.server.core.IModule;
+import org.eclipse.wst.server.core.model.ModuleDelegate;
+import org.eclipse.wst.server.core.util.ProjectModuleFactoryDelegate;
+
+public class GitProjectModuleFactoryDelegate extends ProjectModuleFactoryDelegate {
+
+ public GitProjectModuleFactoryDelegate() {
+ // TODO Auto-generated constructor stub
+ System.out.println("blah");
+ }
+
+ protected IModule createModule(IProject project) {
+ RepositoryMapping mapping = RepositoryMapping.getMapping(project);
+ System.out.println(mapping);
+ return null;
+ }
+
+ @Override
+ public ModuleDelegate getModuleDelegate(IModule module) {
+ // TODO Auto-generated method stub
+ return null;
+ }
+
+}
14 years, 8 months
JBoss Tools SVN: r33922 - trunk/hibernatetools/tests/org.jboss.tools.hibernate.jpt.core.test.
by jbosstools-commits@lists.jboss.org
Author: dgeraskov
Date: 2011-08-15 08:13:53 -0400 (Mon, 15 Aug 2011)
New Revision: 33922
Modified:
trunk/hibernatetools/tests/org.jboss.tools.hibernate.jpt.core.test/pom.xml
Log:
https://issues.jboss.org/browse/JBIDE-9490
Rename required feature
Modified: trunk/hibernatetools/tests/org.jboss.tools.hibernate.jpt.core.test/pom.xml
===================================================================
--- trunk/hibernatetools/tests/org.jboss.tools.hibernate.jpt.core.test/pom.xml 2011-08-15 11:48:40 UTC (rev 33921)
+++ trunk/hibernatetools/tests/org.jboss.tools.hibernate.jpt.core.test/pom.xml 2011-08-15 12:13:53 UTC (rev 33922)
@@ -28,7 +28,7 @@
<dependencies>
<dependency>
<type>p2-installable-unit</type>
- <artifactId>org.eclipse.jpt.feature.feature.group</artifactId>
+ <artifactId>org.eclipse.jpt.jpa.feature.group</artifactId>
<version>0.0.0</version>
</dependency>
</dependencies>
14 years, 8 months
JBoss Tools SVN: r33921 - in trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui: .settings and 9 other directories.
by jbosstools-commits@lists.jboss.org
Author: adietish
Date: 2011-08-15 07:48:40 -0400 (Mon, 15 Aug 2011)
New Revision: 33921
Added:
trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/.classpath
trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/.project
trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/.settings/
trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/.settings/org.eclipse.jdt.core.prefs
trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/META-INF/
trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/META-INF/MANIFEST.MF
trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/build.properties
trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/pom.xml
trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/src/
trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/src/org/
trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/src/org/jboss/
trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/src/org/jboss/ide/
trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/src/org/jboss/ide/eclipse/
trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/src/org/jboss/ide/eclipse/as/
trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/src/org/jboss/ide/eclipse/as/egit/
trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/src/org/jboss/ide/eclipse/as/egit/ui/
trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/src/org/jboss/ide/eclipse/as/egit/ui/Activator.java
Log:
[JBIDE-9511] initial commit
Added: trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/.classpath
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/.classpath (rev 0)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/.classpath 2011-08-15 11:48:40 UTC (rev 33921)
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+ <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="src" path="src"/>
+ <classpathentry kind="output" path="bin"/>
+</classpath>
Property changes on: trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/.classpath
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/.project
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/.project (rev 0)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/.project 2011-08-15 11:48:40 UTC (rev 33921)
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.jboss.ide.eclipse.as.egit.ui</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/as/plugins/org.jboss.ide.eclipse.as.egit.ui/.project
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/.settings/org.eclipse.jdt.core.prefs
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/.settings/org.eclipse.jdt.core.prefs (rev 0)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/.settings/org.eclipse.jdt.core.prefs 2011-08-15 11:48:40 UTC (rev 33921)
@@ -0,0 +1,8 @@
+#Mon Aug 15 11:58:18 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/as/plugins/org.jboss.ide.eclipse.as.egit.ui/.settings/org.eclipse.jdt.core.prefs
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/META-INF/MANIFEST.MF
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/META-INF/MANIFEST.MF (rev 0)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/META-INF/MANIFEST.MF 2011-08-15 11:48:40 UTC (rev 33921)
@@ -0,0 +1,10 @@
+Manifest-Version: 1.0
+Bundle-ManifestVersion: 2
+Bundle-Name: EGit integration UI
+Bundle-SymbolicName: org.jboss.ide.eclipse.as.egit.ui;singleton:=true
+Bundle-Version: 0.0.1.qualifier
+Bundle-Activator: org.jboss.ide.eclipse.as.egit.ui.Activator
+Require-Bundle: org.eclipse.ui,
+ org.eclipse.core.runtime
+Bundle-ActivationPolicy: lazy
+Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Property changes on: trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/META-INF/MANIFEST.MF
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/build.properties
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/build.properties (rev 0)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/build.properties 2011-08-15 11:48:40 UTC (rev 33921)
@@ -0,0 +1,4 @@
+source.. = src/
+output.. = bin/
+bin.includes = META-INF/,\
+ .
Property changes on: trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/build.properties
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/pom.xml
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/pom.xml (rev 0)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/pom.xml 2011-08-15 11:48:40 UTC (rev 33921)
@@ -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.as</groupId>
+ <artifactId>plugins</artifactId>
+ <version>2.3.0-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools.as.plugins</groupId>
+ <artifactId>org.jboss.ide.eclipse.as.egit.ui</artifactId>
+ <packaging>eclipse-plugin</packaging>
+ <version>0.0.1</version>
+</project>
Property changes on: trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/pom.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/src/org/jboss/ide/eclipse/as/egit/ui/Activator.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/src/org/jboss/ide/eclipse/as/egit/ui/Activator.java (rev 0)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/src/org/jboss/ide/eclipse/as/egit/ui/Activator.java 2011-08-15 11:48:40 UTC (rev 33921)
@@ -0,0 +1,50 @@
+package org.jboss.ide.eclipse.as.egit.ui;
+
+import org.eclipse.ui.plugin.AbstractUIPlugin;
+import org.osgi.framework.BundleContext;
+
+/**
+ * The activator class controls the plug-in life cycle
+ */
+public class Activator extends AbstractUIPlugin {
+
+ // The plug-in ID
+ public static final String PLUGIN_ID = "org.jboss.ide.eclipse.as.egit.ui"; //$NON-NLS-1$
+
+ // The shared instance
+ private static Activator plugin;
+
+ /**
+ * The constructor
+ */
+ public Activator() {
+ }
+
+ /*
+ * (non-Javadoc)
+ * @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext)
+ */
+ public void start(BundleContext context) throws Exception {
+ super.start(context);
+ plugin = this;
+ }
+
+ /*
+ * (non-Javadoc)
+ * @see org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext)
+ */
+ public void stop(BundleContext context) throws Exception {
+ plugin = null;
+ super.stop(context);
+ }
+
+ /**
+ * Returns the shared instance
+ *
+ * @return the shared instance
+ */
+ public static Activator getDefault() {
+ return plugin;
+ }
+
+}
Property changes on: trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/src/org/jboss/ide/eclipse/as/egit/ui/Activator.java
___________________________________________________________________
Added: svn:mime-type
+ text/plain
14 years, 8 months
JBoss Tools SVN: r33920 - trunk/as/plugins.
by jbosstools-commits@lists.jboss.org
Author: adietish
Date: 2011-08-15 07:47:49 -0400 (Mon, 15 Aug 2011)
New Revision: 33920
Added:
trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/
Log:
[JBIDE-9511] initial commit
14 years, 8 months
JBoss Tools SVN: r33919 - /.
by jbosstools-commits@lists.jboss.org
Author: adietish
Date: 2011-08-15 07:45:27 -0400 (Mon, 15 Aug 2011)
New Revision: 33919
Removed:
as/
Log:
removed erroneous checking
14 years, 8 months
JBoss Tools SVN: r33918 - trunk/as/plugins/org.jboss.ide.eclipse.as.egit.core and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: adietish
Date: 2011-08-15 06:45:59 -0400 (Mon, 15 Aug 2011)
New Revision: 33918
Added:
as/plugins/org.jboss.ide.eclipse.as.egit.ui/pom.xml
trunk/as/plugins/org.jboss.ide.eclipse.as.egit.core/pom.xml
Log:
[JBIDE-9511] initial commit
Added: as/plugins/org.jboss.ide.eclipse.as.egit.ui/pom.xml
===================================================================
--- as/plugins/org.jboss.ide.eclipse.as.egit.ui/pom.xml (rev 0)
+++ as/plugins/org.jboss.ide.eclipse.as.egit.ui/pom.xml 2011-08-15 10:45:59 UTC (rev 33918)
@@ -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.as</groupId>
+ <artifactId>plugins</artifactId>
+ <version>2.3.0-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools.as.plugins</groupId>
+ <artifactId>org.jboss.ide.eclipse.as.egit.ui</artifactId>
+ <packaging>eclipse-plugin</packaging>
+ <version>0.0.1</version>
+</project>
Property changes on: as/plugins/org.jboss.ide.eclipse.as.egit.ui/pom.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/as/plugins/org.jboss.ide.eclipse.as.egit.core/pom.xml
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.egit.core/pom.xml (rev 0)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.egit.core/pom.xml 2011-08-15 10:45:59 UTC (rev 33918)
@@ -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.as</groupId>
+ <artifactId>plugins</artifactId>
+ <version>2.3.0-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools.as.plugins</groupId>
+ <artifactId>org.jboss.ide.eclipse.as.egit.core</artifactId>
+ <packaging>eclipse-plugin</packaging>
+ <version>0.0.1</version>
+</project>
Property changes on: trunk/as/plugins/org.jboss.ide.eclipse.as.egit.core/pom.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
14 years, 8 months
JBoss Tools SVN: r33917 - trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.feature.
by jbosstools-commits@lists.jboss.org
Author: adietish
Date: 2011-08-15 06:36:17 -0400 (Mon, 15 Aug 2011)
New Revision: 33917
Added:
trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.feature/.project
trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.feature/build.properties
trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.feature/feature.xml
trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.feature/pom.xml
Log:
[JBIDE-9511] initial commit
Added: trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.feature/.project
===================================================================
--- trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.feature/.project (rev 0)
+++ trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.feature/.project 2011-08-15 10:36:17 UTC (rev 33917)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.jboss.ide.eclipse.as.server.egit.integration.feature</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.pde.FeatureBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.pde.FeatureNature</nature>
+ </natures>
+</projectDescription>
Property changes on: trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.feature/.project
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.feature/build.properties
===================================================================
--- trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.feature/build.properties (rev 0)
+++ trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.feature/build.properties 2011-08-15 10:36:17 UTC (rev 33917)
@@ -0,0 +1 @@
+bin.includes = feature.xml
Property changes on: trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.feature/build.properties
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.feature/feature.xml
===================================================================
--- trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.feature/feature.xml (rev 0)
+++ trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.feature/feature.xml 2011-08-15 10:36:17 UTC (rev 33917)
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+ id="org.jboss.ide.eclipse.as.server.egit.integration.feature"
+ label="Egit integration feature"
+ version="0.0.1.qualifier"
+ provider-name="JBoss by Red Hat">
+
+ <description url="http://www.example.com/description">
+ [Enter Feature Description here.]
+ </description>
+
+ <copyright url="http://www.example.com/copyright">
+ [Enter Copyright Description here.]
+ </copyright>
+
+ <license url="http://www.example.com/license">
+ [Enter License Description here.]
+ </license>
+
+ <plugin
+ id="org.jboss.ide.eclipse.as.egit.core"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+ <plugin
+ id="org.jboss.ide.eclipse.as.egit.ui"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+</feature>
Property changes on: trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.feature/feature.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.feature/pom.xml
===================================================================
--- trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.feature/pom.xml (rev 0)
+++ trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.feature/pom.xml 2011-08-15 10:36:17 UTC (rev 33917)
@@ -0,0 +1,12 @@
+<?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.as</groupId>
+ <artifactId>features</artifactId>
+ <version>2.3.0-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools.as.features</groupId>
+ <artifactId>org.jboss.ide.eclipse.as.server.egit.integration.feature</artifactId>
+ <packaging>eclipse-feature</packaging>
+</project>
Property changes on: trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.feature/pom.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
14 years, 8 months
JBoss Tools SVN: r33916 - trunk/as/features.
by jbosstools-commits@lists.jboss.org
Author: adietish
Date: 2011-08-15 06:35:26 -0400 (Mon, 15 Aug 2011)
New Revision: 33916
Added:
trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.feature/
Log:
[JBIDE-9511] initial commit
14 years, 8 months