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/01/29 02:48:03 UTC

svn commit: r373270 - in /struts/shale/trunk/build/maven2: ./ README.txt shale-clay.pom shale-core.pom shale-remoting.pom shale-spring.pom shale-test.pom shale-tiger.pom shale-tiles.pom

Author: wsmoak
Date: Sat Jan 28 17:47:55 2006
New Revision: 373270

URL: http://svn.apache.org/viewcvs?rev=373270&view=rev
Log:
Added Maven 2 repository poms for Shale.  These are intended for use with 'mvn deploy:deploy-file'.

Added:
    struts/shale/trunk/build/maven2/
    struts/shale/trunk/build/maven2/README.txt   (with props)
    struts/shale/trunk/build/maven2/shale-clay.pom
    struts/shale/trunk/build/maven2/shale-core.pom
    struts/shale/trunk/build/maven2/shale-remoting.pom
    struts/shale/trunk/build/maven2/shale-spring.pom
    struts/shale/trunk/build/maven2/shale-test.pom
    struts/shale/trunk/build/maven2/shale-tiger.pom
    struts/shale/trunk/build/maven2/shale-tiles.pom

Added: struts/shale/trunk/build/maven2/README.txt
URL: http://svn.apache.org/viewcvs/struts/shale/trunk/build/maven2/README.txt?rev=373270&view=auto
==============================================================================
--- struts/shale/trunk/build/maven2/README.txt (added)
+++ struts/shale/trunk/build/maven2/README.txt Sat Jan 28 17:47:55 2006
@@ -0,0 +1,42 @@
+
+Apache Shale Framework - Maven 2 POMs
+=====================================
+
+This directory contains Maven 2 repository POMs for the Apache Shale Framework.
+
+The files contain minimal project information and dependencies to enable
+Maven 2's transitive dependency mechanism.
+
+The files are not intended to be used to build the project.
+
+
+Deploying Maven 2 Snapshots
+---------------------------
+
+$ mvn deploy:deploy-file 
+      -Dfile=/path/to/shale-core.jar
+      -DpomFile=/path/to/shale-core.pom 
+      -DrepositoryId=apache-snapshot 
+      -Durl=scp://people.apache.org/www/cvs.apache.org/maven-snapshot-repository
+
+
+Configuration
+-------------
+      
+In ~/.m2/settings.xml
+
+   <servers>
+      <server>
+         <id>apache-snapshot</id>
+         <username>yourid</username>
+         <privateKey>/path/to/privatekey</privateKey>
+      </server>
+      ...
+   </servers>
+
+Ensure that the ~/.ssh directory exists.
+
+Windows+Cygwin users may need to create C:\Documents and Settings\yourid\.ssh
+in addition to C:\cygwin\home\yourid\.ssh.
+
+

Propchange: struts/shale/trunk/build/maven2/README.txt
------------------------------------------------------------------------------
    svn:eol-style = native

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

Added: struts/shale/trunk/build/maven2/shale-clay.pom
URL: http://svn.apache.org/viewcvs/struts/shale/trunk/build/maven2/shale-clay.pom?rev=373270&view=auto
==============================================================================
--- struts/shale/trunk/build/maven2/shale-clay.pom (added)
+++ struts/shale/trunk/build/maven2/shale-clay.pom Sat Jan 28 17:47:55 2006
@@ -0,0 +1,47 @@
+<!--
+/*
+ * 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-clay</artifactId>
+   <version>1.0.1-SNAPSHOT</version>
+   <packaging>jar</packaging>
+   <name>Shale Clay View Plugin</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>
+
+      <dependency>
+         <groupId>struts</groupId>
+         <artifactId>shale-test</artifactId>
+         <version>1.0.1-SNAPSHOT</version>
+         <scope>test</scope>
+      </dependency>
+
+   </dependencies>
+
+</project>

Added: struts/shale/trunk/build/maven2/shale-core.pom
URL: http://svn.apache.org/viewcvs/struts/shale/trunk/build/maven2/shale-core.pom?rev=373270&view=auto
==============================================================================
--- struts/shale/trunk/build/maven2/shale-core.pom (added)
+++ struts/shale/trunk/build/maven2/shale-core.pom Sat Jan 28 17:47:55 2006
@@ -0,0 +1,117 @@
+<!--
+/*
+ * 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-core</artifactId>
+   <version>1.0.1-SNAPSHOT</version>
+   <packaging>jar</packaging>
+   <name>Shale Framework Core Library</name>
+   <url>http://struts.apache.org/struts-shale</url>
+
+   <dependencies>
+
+      <dependency>
+         <groupId>antlr</groupId>
+         <artifactId>antlr</artifactId>
+         <version>2.7.2</version>
+      </dependency>
+
+      <dependency>
+         <groupId>commons-beanutils</groupId>
+         <artifactId>commons-beanutils</artifactId>
+         <version>1.7.0</version>
+      </dependency>
+
+      <dependency>
+         <groupId>commons-chain</groupId>
+         <artifactId>commons-chain</artifactId>
+         <version>1.0</version>
+      </dependency>
+
+      <dependency>
+         <groupId>commons-collections</groupId>
+         <artifactId>commons-collections</artifactId>
+         <version>3.0</version>
+      </dependency>
+
+      <dependency>
+         <groupId>commons-digester</groupId>
+         <artifactId>commons-digester</artifactId>
+         <version>1.6</version>
+      </dependency>
+
+      <dependency>
+         <groupId>commons-logging</groupId>
+         <artifactId>commons-logging</artifactId>
+         <version>1.0.4</version>
+      </dependency>
+
+      <dependency>
+         <groupId>commons-validator</groupId>
+         <artifactId>commons-validator</artifactId>
+         <version>1.2.0</version>
+      </dependency>
+
+      <dependency>
+         <groupId>javax.servlet</groupId>
+         <artifactId>jsp-api</artifactId>
+         <version>2.0</version>
+         <scope>provided</scope>
+      </dependency>
+
+      <dependency>
+         <groupId>javax.servlet</groupId>
+         <artifactId>servlet-api</artifactId>
+         <version>2.4</version>
+         <scope>provided</scope>
+      </dependency>
+
+      <dependency>
+         <groupId>junit</groupId>
+         <artifactId>junit</artifactId>
+         <version>3.8.1</version>
+         <scope>test</scope>
+      </dependency>
+
+      <dependency>
+         <groupId>myfaces</groupId>
+         <artifactId>myfaces-api</artifactId>
+         <version>1.1.1</version>
+         <scope>provided</scope>
+      </dependency>
+
+      <dependency>
+         <groupId>myfaces</groupId>
+         <artifactId>myfaces-impl</artifactId>
+         <version>1.1.1</version>
+         <scope>provided</scope>
+      </dependency>
+
+      <dependency>
+         <groupId>oro</groupId>
+         <artifactId>oro</artifactId>
+         <version>2.0.8</version>
+      </dependency>
+
+   </dependencies>
+
+</project>

Added: struts/shale/trunk/build/maven2/shale-remoting.pom
URL: http://svn.apache.org/viewcvs/struts/shale/trunk/build/maven2/shale-remoting.pom?rev=373270&view=auto
==============================================================================
--- struts/shale/trunk/build/maven2/shale-remoting.pom (added)
+++ struts/shale/trunk/build/maven2/shale-remoting.pom Sat Jan 28 17:47:55 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-remoting</artifactId>
+   <version>1.0.1-SNAPSHOT</version>
+   <packaging>jar</packaging>
+   <name>Shale Remoting</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>

Added: struts/shale/trunk/build/maven2/shale-spring.pom
URL: http://svn.apache.org/viewcvs/struts/shale/trunk/build/maven2/shale-spring.pom?rev=373270&view=auto
==============================================================================
--- struts/shale/trunk/build/maven2/shale-spring.pom (added)
+++ struts/shale/trunk/build/maven2/shale-spring.pom Sat Jan 28 17:47:55 2006
@@ -0,0 +1,64 @@
+<!--
+/*
+ * 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-spring</artifactId>
+   <version>1.0.1-SNAPSHOT</version>
+   <packaging>jar</packaging>
+   <name>Shale-Spring Integration</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>
+
+      <dependency>
+         <groupId>org.springframework</groupId>
+         <artifactId>spring-beans</artifactId>
+         <version>1.2.2</version>
+      </dependency>
+
+      <dependency>
+         <groupId>org.springframework</groupId>
+         <artifactId>spring-context</artifactId>
+         <version>1.2.2</version>
+      </dependency>
+
+      <dependency>
+         <groupId>org.springframework</groupId>
+         <artifactId>spring-core</artifactId>
+         <version>1.2.2</version>
+      </dependency>
+
+      <dependency>
+         <groupId>org.springframework</groupId>
+         <artifactId>spring-web</artifactId>
+         <version>1.2.2</version>
+      </dependency>
+
+   </dependencies>
+
+</project>

Added: struts/shale/trunk/build/maven2/shale-test.pom
URL: http://svn.apache.org/viewcvs/struts/shale/trunk/build/maven2/shale-test.pom?rev=373270&view=auto
==============================================================================
--- struts/shale/trunk/build/maven2/shale-test.pom (added)
+++ struts/shale/trunk/build/maven2/shale-test.pom Sat Jan 28 17:47:55 2006
@@ -0,0 +1,41 @@
+<!--
+/*
+ * 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-test</artifactId>
+   <version>1.0.1-SNAPSHOT</version>
+   <packaging>jar</packaging>
+   <name>Shale Test Framework</name>
+   <url>http://struts.apache.org/struts-shale</url>
+
+   <dependencies>
+
+      <dependency>
+         <groupId>htmlunit</groupId>
+         <artifactId>htmlunit</artifactId>
+         <version>1.6</version>
+         <optional>true</optional>
+      </dependency>
+
+   </dependencies>
+
+</project>

Added: struts/shale/trunk/build/maven2/shale-tiger.pom
URL: http://svn.apache.org/viewcvs/struts/shale/trunk/build/maven2/shale-tiger.pom?rev=373270&view=auto
==============================================================================
--- struts/shale/trunk/build/maven2/shale-tiger.pom (added)
+++ struts/shale/trunk/build/maven2/shale-tiger.pom Sat Jan 28 17:47:55 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-tiger</artifactId>
+   <version>1.0.1-SNAPSHOT</version>
+   <packaging>jar</packaging>
+   <name>Shale Tiger Extensions</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>

Added: struts/shale/trunk/build/maven2/shale-tiles.pom
URL: http://svn.apache.org/viewcvs/struts/shale/trunk/build/maven2/shale-tiles.pom?rev=373270&view=auto
==============================================================================
--- struts/shale/trunk/build/maven2/shale-tiles.pom (added)
+++ struts/shale/trunk/build/maven2/shale-tiles.pom Sat Jan 28 17:47:55 2006
@@ -0,0 +1,46 @@
+<!--
+/*
+ * 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-tiles</artifactId>
+   <version>1.0.1-SNAPSHOT</version>
+   <packaging>jar</packaging>
+   <name>Shale Tiles Integration</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>
+
+      <dependency>
+         <groupId>org.apache.tiles</groupId>
+         <artifactId>tiles-core</artifactId>
+         <version>0.2-SNAPSHOT</version>
+      </dependency>
+
+   </dependencies>
+
+</project>



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