You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@struts.apache.org by ws...@apache.org on 2006/03/08 23:43:54 UTC

svn commit: r384356 - in /struts/shale/trunk/build: designtime/ designtime/project.properties designtime/project.xml maven2/shale-designtime.pom

Author: wsmoak
Date: Wed Mar  8 14:43:53 2006
New Revision: 384356

URL: http://svn.apache.org/viewcvs?rev=384356&view=rev
Log:
Added placeholder build files for Shale Designtime.  
TODO:  Update the list of dependencies and see if they can be located in a Maven repository.

Added:
    struts/shale/trunk/build/designtime/
    struts/shale/trunk/build/designtime/project.properties   (with props)
    struts/shale/trunk/build/designtime/project.xml   (with props)
    struts/shale/trunk/build/maven2/shale-designtime.pom   (with props)

Added: struts/shale/trunk/build/designtime/project.properties
URL: http://svn.apache.org/viewcvs/struts/shale/trunk/build/designtime/project.properties?rev=384356&view=auto
==============================================================================
--- struts/shale/trunk/build/designtime/project.properties (added)
+++ struts/shale/trunk/build/designtime/project.properties Wed Mar  8 14:43:53 2006
@@ -0,0 +1,8 @@
+
+shale.subdir=core-library
+
+maven.src.dir=../../${shale.subdir}/src
+
+maven.checkstyle.header.file=../${shale.subdir}/LICENSE.txt
+
+maven.docs.src=../${shale.subdir}/xdocs

Propchange: struts/shale/trunk/build/designtime/project.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/shale/trunk/build/designtime/project.properties
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: struts/shale/trunk/build/designtime/project.xml
URL: http://svn.apache.org/viewcvs/struts/shale/trunk/build/designtime/project.xml?rev=384356&view=auto
==============================================================================
--- struts/shale/trunk/build/designtime/project.xml (added)
+++ struts/shale/trunk/build/designtime/project.xml Wed Mar  8 14:43:53 2006
@@ -0,0 +1,51 @@
+<?xml version="1.0"?>
+
+<!--
+
+ Copyright 2006 The Apache Software Foundation.
+ 
+ Licensed 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.
+
+-->
+
+<project>
+  <extend>../project.xml</extend>
+  <artifactId>shale-designtime</artifactId>
+  <name>Shale Designtime</name>
+  <currentVersion>1.0.1-SNAPSHOT</currentVersion>
+
+  <siteAddress>people.apache.org</siteAddress>
+  <siteDirectory>/www/struts.apache.org/struts-shale/shale-designtime/</siteDirectory>
+
+  <build>
+
+    <!--sourceDirectory>${maven.src.dir}/designtime</sourceDirectory-->
+
+    <unitTestSourceDirectory/>
+
+    <unitTest/>
+
+  </build>
+
+  <dependencies>
+
+      <dependency>
+        <groupId>struts</groupId>
+        <artifactId>shale-core</artifactId>
+        <version>1.0.1-SNAPSHOT</version>
+        <url>http://struts.apache.org/struts-shale</url>
+      </dependency>
+
+  </dependencies>
+
+</project>

Propchange: struts/shale/trunk/build/designtime/project.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/shale/trunk/build/designtime/project.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: struts/shale/trunk/build/maven2/shale-designtime.pom
URL: http://svn.apache.org/viewcvs/struts/shale/trunk/build/maven2/shale-designtime.pom?rev=384356&view=auto
==============================================================================
--- struts/shale/trunk/build/maven2/shale-designtime.pom (added)
+++ struts/shale/trunk/build/maven2/shale-designtime.pom Wed Mar  8 14:43:53 2006
@@ -0,0 +1,40 @@
+<!--
+/*
+ * Copyright 2006 The Apache Software Foundation.
+ *
+ * Licensed 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.
+ *
+ * $Id$
+ */
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+      xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+   <modelVersion>4.0.0</modelVersion>
+   <groupId>struts</groupId>
+   <artifactId>shale-designtime</artifactId>
+   <version>1.0.1-SNAPSHOT</version>
+   <packaging>jar</packaging>
+   <name>Shale Designtime</name>
+   <url>http://struts.apache.org/struts-shale</url>
+
+   <dependencies>
+
+      <dependency>
+         <groupId>struts</groupId>
+         <artifactId>shale-core</artifactId>
+         <version>1.0.1-SNAPSHOT</version>
+      </dependency>
+
+   </dependencies>
+
+</project>

Propchange: struts/shale/trunk/build/maven2/shale-designtime.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: struts/shale/trunk/build/maven2/shale-designtime.pom
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@struts.apache.org
For additional commands, e-mail: dev-help@struts.apache.org


Re: svn commit: r384356 - in /struts/shale/trunk/build: designtime/ designtime/project.properties designtime/project.xml maven2/shale-designtime.pom

Posted by Craig McClanahan <cr...@apache.org>.
On 3/8/06, wsmoak@apache.org <ws...@apache.org> wrote:

TODO:  Update the list of dependencies and see if they can be located in a
> Maven repository.


Unfortunately, not at the moment.  Working on that.

Craig