Author: adietish
Date: 2012-01-20 04:45:15 -0500 (Fri, 20 Jan 2012)
New Revision: 37993
Modified:
trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/appimport/ConfigureGitSharedProject.java
Log:
[JBIDE-10479] now copying pom.xml, too so that it gets created if we have a non-maven
project
Modified:
trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/appimport/ConfigureGitSharedProject.java
===================================================================
---
trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/appimport/ConfigureGitSharedProject.java 2012-01-20
09:23:42 UTC (rev 37992)
+++
trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/appimport/ConfigureGitSharedProject.java 2012-01-20
09:45:15 UTC (rev 37993)
@@ -161,7 +161,10 @@
cloneRepository(application, remoteName, tmpFolder, false, monitor);
Collection<IResource> copiedResources =
- copyResources(tmpFolder, new String[] { ".openshift",
"deployments" }, project);
+ copyResources(tmpFolder, new String[] {
+ ".openshift",
+ "deployments",
+ "pom.xml" }, project);
FileUtil.safeDelete(tmpFolder);
project.refreshLocal(IResource.DEPTH_INFINITE, monitor);
return copiedResources;
Show replies by date