You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by kr...@apache.org on 2013/08/28 19:32:29 UTC

svn commit: r1518293 - /maven/plugins/trunk/maven-war-plugin/src/it/MWAR-128/prebuild.groovy

Author: krosenvold
Date: Wed Aug 28 17:32:29 2013
New Revision: 1518293

URL: http://svn.apache.org/r1518293
Log:
Made sure the war plugin IT's work in git svn clone too

Added:
    maven/plugins/trunk/maven-war-plugin/src/it/MWAR-128/prebuild.groovy

Added: maven/plugins/trunk/maven-war-plugin/src/it/MWAR-128/prebuild.groovy
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-war-plugin/src/it/MWAR-128/prebuild.groovy?rev=1518293&view=auto
==============================================================================
--- maven/plugins/trunk/maven-war-plugin/src/it/MWAR-128/prebuild.groovy (added)
+++ maven/plugins/trunk/maven-war-plugin/src/it/MWAR-128/prebuild.groovy Wed Aug 28 17:32:29 2013
@@ -0,0 +1,23 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+def dir = new File( basedir, "src/main/webapp/WEB-INF/logs" )
+dir.mkdirs()
+return true;
+