| Commit in servicemix/tooling/jboss-deployer/src/main/java/org/servicemix/jboss/deployment on MAIN | |||
| JBIDeployer.java | +2 | -1 | 1.1 -> 1.2 |
Corrected comment
servicemix/tooling/jboss-deployer/src/main/java/org/servicemix/jboss/deployment
diff -u -r1.1 -r1.2 --- JBIDeployer.java 2 Aug 2005 19:09:26 -0000 1.1 +++ JBIDeployer.java 2 Aug 2005 23:03:26 -0000 1.2 @@ -50,12 +50,13 @@
*/
public boolean accepts(DeploymentInfo di) {
// To be accepted the deployment's root name must end in jar
+ // TODO Should we be picking up ZIP files?
String urlStr = di.url.getFile();
if (!urlStr.endsWith(".jar") && !urlStr.endsWith(".jar/")) {
return false;
}
- // However the jar must also contain an META-INF/application-client.xml
+ // However the jar must also contain an META-INF/jbi.xml
boolean accepts = false;
try {
URL dd = di.localCl.findResource("META-INF/jbi.xml");
