You are viewing a plain text version of this content. The canonical link for it is here.
Posted to photark-commits@incubator.apache.org by lr...@apache.org on 2009/01/09 08:38:57 UTC

svn commit: r732978 [1/3] - in /incubator/photark/trunk/distribution: ./ src/ src/main/ src/main/assembly/ src/main/release/ src/main/release/bin/ src/main/release/src/

Author: lresende
Date: Fri Jan  9 00:38:56 2009
New Revision: 732978

URL: http://svn.apache.org/viewvc?rev=732978&view=rev
Log:
PhotArk binary and source distribution in preparation for initial release

Added:
    incubator/photark/trunk/distribution/
    incubator/photark/trunk/distribution/pom.xml   (with props)
    incubator/photark/trunk/distribution/src/
    incubator/photark/trunk/distribution/src/main/
    incubator/photark/trunk/distribution/src/main/assembly/
    incubator/photark/trunk/distribution/src/main/assembly/bin.xml   (with props)
    incubator/photark/trunk/distribution/src/main/assembly/src.xml   (with props)
    incubator/photark/trunk/distribution/src/main/release/
    incubator/photark/trunk/distribution/src/main/release/CHANGES
    incubator/photark/trunk/distribution/src/main/release/README   (with props)
    incubator/photark/trunk/distribution/src/main/release/RELEASE_NOTES
    incubator/photark/trunk/distribution/src/main/release/bin/
    incubator/photark/trunk/distribution/src/main/release/bin/INSTALL   (with props)
    incubator/photark/trunk/distribution/src/main/release/bin/LICENSE   (with props)
    incubator/photark/trunk/distribution/src/main/release/bin/NOTICE   (with props)
    incubator/photark/trunk/distribution/src/main/release/src/
    incubator/photark/trunk/distribution/src/main/release/src/BUILDING
    incubator/photark/trunk/distribution/src/main/release/src/LICENSE   (with props)
    incubator/photark/trunk/distribution/src/main/release/src/NOTICE   (with props)

Added: incubator/photark/trunk/distribution/pom.xml
URL: http://svn.apache.org/viewvc/incubator/photark/trunk/distribution/pom.xml?rev=732978&view=auto
==============================================================================
--- incubator/photark/trunk/distribution/pom.xml (added)
+++ incubator/photark/trunk/distribution/pom.xml Fri Jan  9 00:38:56 2009
@@ -0,0 +1,96 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * 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.    
+-->
+<project>
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.photark</groupId>
+        <artifactId>photark-parent</artifactId>
+        <version>1.0-incubating-SNAPSHOT</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+
+    <artifactId>photark-distribution</artifactId>
+    <name>Apache PhotArk Distribution</name>
+    <packaging>pom</packaging>
+
+    <properties>
+        <maven.test.skip>true</maven.test.skip>
+        <photark.version>${pom.version}</photark.version>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.photark</groupId>
+            <artifactId>photoark-assets</artifactId>
+            <version>1.0-incubating-SNAPSHOT</version>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.photark</groupId>
+            <artifactId>photoark-gallery-webapp</artifactId>
+            <version>1.0-incubating-SNAPSHOT</version>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.photark</groupId>
+            <artifactId>photoark-gallery-webapp</artifactId>
+            <version>1.0-incubating-SNAPSHOT</version>
+        </dependency>
+    </dependencies>
+
+    <build>
+
+        <resources>
+            <resource>
+                <directory>src/main/java</directory>
+                <includes>
+                    <include>**/*</include>
+                </includes>
+            </resource>
+        </resources>
+
+        <plugins>
+
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-assembly-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>distribution-package</id>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>single</goal>
+                        </goals>
+                        <configuration>
+                            <descriptors>
+                                <descriptor>src/main/assembly/bin.xml</descriptor>
+                                <descriptor>src/main/assembly/src.xml</descriptor>
+                            </descriptors>
+                            <tarLongFileMode>gnu</tarLongFileMode>
+                            <finalName>apache-photark-${photark.version}</finalName>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+
+    </build>
+
+</project>

Propchange: incubator/photark/trunk/distribution/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/photark/trunk/distribution/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: incubator/photark/trunk/distribution/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: incubator/photark/trunk/distribution/src/main/assembly/bin.xml
URL: http://svn.apache.org/viewvc/incubator/photark/trunk/distribution/src/main/assembly/bin.xml?rev=732978&view=auto
==============================================================================
--- incubator/photark/trunk/distribution/src/main/assembly/bin.xml (added)
+++ incubator/photark/trunk/distribution/src/main/assembly/bin.xml Fri Jan  9 00:38:56 2009
@@ -0,0 +1,59 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    * 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.
+-->
+<assembly>
+    <!-- id typically identifies the "type" (src vs bin etc) of the assembly -->
+    <id></id>
+    <includeBaseDirectory>false</includeBaseDirectory>
+    <formats>
+        <format>dir</format>
+        <format>tar.gz</format>
+        <format>zip</format>
+    </formats>
+
+    <fileSets>
+        <!-- Add the text files to the top-level directroy -->
+        <fileSet>
+            <directory>src/main/release</directory>
+            <outputDirectory>photark-${photark.version}</outputDirectory>
+            <includes>
+                <include>CHANGES</include>
+                <include>README</include>
+                <include>RELEASE_NOTES</include>
+            </includes>
+        </fileSet>
+        <fileSet>
+            <directory>src/main/release/bin</directory>
+            <outputDirectory>photark-${photark.version}</outputDirectory>
+            <includes>
+                <include>INSTALL</include>
+                <include>LICENSE</include>
+                <include>NOTICE</include>
+            </includes>
+        </fileSet>
+        <!-- Add the photark webapp to bin directory -->
+        <fileSet>
+            <directory>../photark-webapp/target</directory>
+            <outputDirectory>photark-${photark.version}/webapp</outputDirectory>
+            <includes>
+                <include>**/*.war</include>
+            </includes>
+        </fileSet>
+    </fileSets>
+</assembly>

Propchange: incubator/photark/trunk/distribution/src/main/assembly/bin.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/photark/trunk/distribution/src/main/assembly/bin.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: incubator/photark/trunk/distribution/src/main/assembly/bin.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: incubator/photark/trunk/distribution/src/main/assembly/src.xml
URL: http://svn.apache.org/viewvc/incubator/photark/trunk/distribution/src/main/assembly/src.xml?rev=732978&view=auto
==============================================================================
--- incubator/photark/trunk/distribution/src/main/assembly/src.xml (added)
+++ incubator/photark/trunk/distribution/src/main/assembly/src.xml Fri Jan  9 00:38:56 2009
@@ -0,0 +1,67 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * 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.
+-->
+<assembly>
+    <!-- id typically identifies the "type" (src vs bin etc) of the assembly -->
+    <id>src</id>
+    <includeBaseDirectory>false</includeBaseDirectory>
+    <formats>
+        <format>tar.gz</format>
+	<format>zip</format>
+    </formats>
+
+    <fileSets>
+	 <fileSet>
+             <directory>src/main/release</directory>
+	     <outputDirectory>photark-${photark.version}-src</outputDirectory>
+	     <includes>
+             <include>CHANGES</include>
+             <include>README</include>
+             <include>RELEASE_NOTES</include>
+             </includes>
+	 </fileSet>
+	 <fileSet>
+             <directory>src/main/release/src</directory>
+	     <outputDirectory>photark-${photark.version}-src</outputDirectory>
+	     <includes>
+		 <include>BUILDING</include>
+		 <include>LICENSE</include>
+		 <include>NOTICE</include>
+             </includes>
+	 </fileSet>
+         <fileSet>
+             <directory>target/maven-shared-archive-resources/META-INF</directory>
+             <outputDirectory>photark-${photark.version}-src</outputDirectory>
+             <includes>
+                 <include>NOTICE</include>
+             </includes>
+         </fileSet>
+	 <fileSet>
+	     <directory>..</directory>
+	     <outputDirectory>photark-${photark.version}-src</outputDirectory>
+	     <includes>
+	         <include>**/*</include>
+             </includes>
+             <excludes>
+    		<exclude>xxx</exclude>
+    		<exclude>xxx/**/*</exclude>
+             </excludes>
+	 </fileSet>
+     </fileSets>
+</assembly>

Propchange: incubator/photark/trunk/distribution/src/main/assembly/src.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/photark/trunk/distribution/src/main/assembly/src.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: incubator/photark/trunk/distribution/src/main/assembly/src.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: incubator/photark/trunk/distribution/src/main/release/CHANGES
URL: http://svn.apache.org/viewvc/incubator/photark/trunk/distribution/src/main/release/CHANGES?rev=732978&view=auto
==============================================================================
--- incubator/photark/trunk/distribution/src/main/release/CHANGES (added)
+++ incubator/photark/trunk/distribution/src/main/release/CHANGES Fri Jan  9 00:38:56 2009
@@ -0,0 +1,2 @@
+Changes With Apache PhotArk 0.1 January 2009
+==================================================

Added: incubator/photark/trunk/distribution/src/main/release/README
URL: http://svn.apache.org/viewvc/incubator/photark/trunk/distribution/src/main/release/README?rev=732978&view=auto
==============================================================================
--- incubator/photark/trunk/distribution/src/main/release/README (added)
+++ incubator/photark/trunk/distribution/src/main/release/README Fri Jan  9 00:38:56 2009
@@ -0,0 +1,19 @@
+Apache PhotArk 0.1 January 2009 Readme
+============================================================
+
+Welcome to the PhotArk 1.4 release. 
+
+See the RELEASE_NOTES file for information specific to this release.
+
+In the binary release see the INSTALL file for information on how to 
+install the release.
+
+In the source distribution see the BUILDING file for information on
+building the source code.
+
+
+
+
+
+
+

Propchange: incubator/photark/trunk/distribution/src/main/release/README
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/photark/trunk/distribution/src/main/release/README
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: incubator/photark/trunk/distribution/src/main/release/RELEASE_NOTES
URL: http://svn.apache.org/viewvc/incubator/photark/trunk/distribution/src/main/release/RELEASE_NOTES?rev=732978&view=auto
==============================================================================
--- incubator/photark/trunk/distribution/src/main/release/RELEASE_NOTES (added)
+++ incubator/photark/trunk/distribution/src/main/release/RELEASE_NOTES Fri Jan  9 00:38:56 2009
@@ -0,0 +1,43 @@
+Apache PhotArk 0.1 January 2009 Release Notes
+============================================================
+
+Apache PhotArk will be a complete open source photo gallery 
+application including a content repository for the images, 
+a display piece, an access control layer, and upload capabilities. 
+The idea is to have a rigid design for the content repository 
+with a very flexible display piece. The images in the content
+repository will be protected with granular access control.
+
+
+See the CHANGES file for a detailed list of the features in this release.
+
+Support
+-------
+
+For more information on Apache PhotArk visit the website at:
+
+    http://incubator.apache.org/photark
+ 
+Any issues with this release can be reported to Apache PhotArk
+using the mailing lists or in the JIRA issue tracker.
+
+    Mailing list archives:
+
+       http://mail-archives.apache.org/mod_mbox/incubator-photark-user/
+       http://mail-archives.apache.org/mod_mbox/incubator-photark-dev/
+
+    Jira:
+
+       http://issues.apache.org/jira/browse/PHOTARK
+
+To join the project's mailing lists follow the instructions at:
+
+    http://incubator.apache.org/photark/mail-lists.html
+
+Apache PhotArk welcomes your help. Any contribution, including code,
+testing, improving the documentation, or bug reporting is always
+appreciated. 
+
+Thank you for using Apache PhotArk!
+
+- The PhotArk Team.

Added: incubator/photark/trunk/distribution/src/main/release/bin/INSTALL
URL: http://svn.apache.org/viewvc/incubator/photark/trunk/distribution/src/main/release/bin/INSTALL?rev=732978&view=auto
==============================================================================
--- incubator/photark/trunk/distribution/src/main/release/bin/INSTALL (added)
+++ incubator/photark/trunk/distribution/src/main/release/bin/INSTALL Fri Jan  9 00:38:56 2009
@@ -0,0 +1,26 @@
+Installing the Apache PhotArk 0.1 January 2009 Release binary distribution
+=========================================================================================
+
+Unzip Apache PhotArk binary distribution archive and you get the following:
+
+tuscany-sca-1.4        
+   INSTALL       - this help file
+   LICENSE       - the Apache License and any dependecy licenses
+   NOTICE        - attribution notices associated with the licenses
+   README        - readme for the release
+   RELEASE_NOTES - description of this release 
+   CHANGES       - A note of the major changes in this release
+
+   /demos        - Demo applications showcasing the use of Apache Tuscany 
+
+   /lib          - The tuscany-sca-all and tuscany-sca-manifest jars and all their dependencies
+
+   /modules      - all of the individual Tuscany jars
+
+   /samples      - all the Tuscany samples, see the README in that directory
+
+   /tutorial     - The store tutorial, see the README in that directory
+
+
+
+

Propchange: incubator/photark/trunk/distribution/src/main/release/bin/INSTALL
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/photark/trunk/distribution/src/main/release/bin/INSTALL
------------------------------------------------------------------------------
    svn:mime-type = text/plain