svn commit: r960693 - /axis/axis2/java/core/trunk/modules/parent/pom.xml
Author: veithen Date: Mon Jul 5 20:52:09 2010 New Revision: 960693 URL: http://svn.apache.org/viewvc?rev=960693&view=rev Log: Use SNAPSHOT versions of the mar and aar plugins because usage of the 1.5.1 versions results in corruption of the local Maven repository (when starting the build with a local repository that does not contain all the dependencies of the plugins yet). See the comment inside the POM for more details. Modified: axis/axis2/java/core/trunk/modules/parent/pom.xml Modified: axis/axis2/java/core/trunk/modules/parent/pom.xml URL: http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/parent/pom.xml?rev=960693&r1=960692&r2=960693&view=diff == --- axis/axis2/java/core/trunk/modules/parent/pom.xml (original) +++ axis/axis2/java/core/trunk/modules/parent/pom.xml Mon Jul 5 20:52:09 2010 @@ -88,8 +88,16 @@ 1.4.6 1.0-SNAPSHOT -1.5 -1.5 + +SNAPSHOT +SNAPSHOT 1.7.0 @@ -550,6 +558,18 @@ +apache.snapshots +Apache Snapshot Repository +http://repository.apache.org/snapshots + +true +daily + + +false + + + ws-zones Apache WS Zones Repository http://ws.zones.apache.org/repository2
svn commit: r960818 - /axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/AbstractDeployer.java
Author: azeez Date: Tue Jul 6 06:52:59 2010 New Revision: 960818 URL: http://svn.apache.org/viewvc?rev=960818&view=rev Log: Removing default cleanup behavior. This has to be implemented by the relevant deployers. Modified: axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/AbstractDeployer.java Modified: axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/AbstractDeployer.java URL: http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/AbstractDeployer.java?rev=960818&r1=960817&r2=960818&view=diff == --- axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/AbstractDeployer.java (original) +++ axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/AbstractDeployer.java Tue Jul 6 06:52:59 2010 @@ -25,7 +25,11 @@ import java.util.concurrent.ConcurrentHa */ public abstract class AbstractDeployer implements Deployer{ -private Map deploymentFileDataMap +/** + * The Map of all artifacts deployed by this + * deployer. + */ +protected Map deploymentFileDataMap = new ConcurrentHashMap(); public void deploy(DeploymentFileData deploymentFileData) throws DeploymentException { @@ -37,8 +41,6 @@ public abstract class AbstractDeployer i } public void cleanup() throws DeploymentException { -for (String filePath : deploymentFileDataMap.keySet()) { -undeploy(filePath); -} +// Deployers which require cleaning up should override this method } }