[jboss-cvs] JBossAS SVN: r85886 - trunk/system/src/main/org/jboss/system/deployers.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Mar 16 06:13:57 EDT 2009


Author: alesj
Date: 2009-03-16 06:13:57 -0400 (Mon, 16 Mar 2009)
New Revision: 85886

Modified:
   trunk/system/src/main/org/jboss/system/deployers/LegacyDeploymentContextComparator.java
Log:
[JBAS-6626]; order .jar before .war

Modified: trunk/system/src/main/org/jboss/system/deployers/LegacyDeploymentContextComparator.java
===================================================================
--- trunk/system/src/main/org/jboss/system/deployers/LegacyDeploymentContextComparator.java	2009-03-16 07:26:32 UTC (rev 85885)
+++ trunk/system/src/main/org/jboss/system/deployers/LegacyDeploymentContextComparator.java	2009-03-16 10:13:57 UTC (rev 85886)
@@ -2,7 +2,7 @@
 * JBoss, Home of Professional Open Source.
 * Copyright 2006, Red Hat Middleware LLC, and individual contributors
 * as indicated by the @author tags. See the copyright.txt file in the
-* distribution for a full listing of individual contributors. 
+* 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
@@ -55,12 +55,12 @@
       legacyOrder.put(".rar", 250);
       legacyOrder.put("-ds.xml", 300);
       legacyOrder.put(".har", 350);
+      legacyOrder.put(".jar", 400);
       legacyOrder.put(".ejb3", 400);
       legacyOrder.put(".par", 400);
       legacyOrder.put(".war", 500);
       legacyOrder.put(".wsr", 600);
       legacyOrder.put(".ear", 650);
-      legacyOrder.put(".jar", 700);
       legacyOrder.put(".zip", 750);
       legacyOrder.put(".bsh", 800);
       legacyOrder.put(".last", 900);




More information about the jboss-cvs-commits mailing list