Author: pamarcelot
Date: Wed Jan 30 08:47:02 2008
New Revision: 616814
URL: http://svn.apache.org/viewvc?rev=616814&view=rev
Log:
Reorganization of the updatesite.
Added:
directory/studio/branches/studio-maven/updatesite/src/
directory/studio/branches/studio-maven/updatesite/src/main/
directory/studio/branches/studio-maven/updatesite/src/main/assembly/
directory/studio/branches/studio-maven/updatesite/src/main/assembly/bin.xml
directory/studio/branches/studio-maven/updatesite/src/main/resources/
directory/studio/branches/studio-maven/updatesite/src/main/resources/index.html
- copied unchanged from r616809, directory/studio/branches/studio-maven/updatesite/index.html
directory/studio/branches/studio-maven/updatesite/src/main/resources/site--xml.cgi
- copied unchanged from r616809, directory/studio/branches/studio-maven/updatesite/site--xml.cgi
directory/studio/branches/studio-maven/updatesite/src/main/resources/site--xml.html
- copied unchanged from r616809, directory/studio/branches/studio-maven/updatesite/site--xml.html
directory/studio/branches/studio-maven/updatesite/src/main/resources/site.xml
- copied unchanged from r616809, directory/studio/branches/studio-maven/updatesite/site.xml
directory/studio/branches/studio-maven/updatesite/src/main/resources/web/
- copied from r616809, directory/studio/branches/studio-maven/updatesite/web/
Removed:
directory/studio/branches/studio-maven/updatesite/index.html
directory/studio/branches/studio-maven/updatesite/site--xml.cgi
directory/studio/branches/studio-maven/updatesite/site--xml.html
directory/studio/branches/studio-maven/updatesite/site.xml
directory/studio/branches/studio-maven/updatesite/web/
Added: directory/studio/branches/studio-maven/updatesite/src/main/assembly/bin.xml
URL: http://svn.apache.org/viewvc/directory/studio/branches/studio-maven/updatesite/src/main/assembly/bin.xml?rev=616814&view=auto
==============================================================================
--- directory/studio/branches/studio-maven/updatesite/src/main/assembly/bin.xml (added)
+++ directory/studio/branches/studio-maven/updatesite/src/main/assembly/bin.xml Wed Jan 30
08:47:02 2008
@@ -0,0 +1,37 @@
+<?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.
+-->
+<!--
+ @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
+ @version $Id: pom.xml 353 2007-10-28 14:59:35Z felix $
+-->
+
+<assembly xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/assembly-1.1.0-SNAPSHOT.xsd">
+ <id>dist</id>
+ <formats>
+ <format>tar.gz</format>
+ <format>zip</format>
+ </formats>
+ <baseDirectory>updatesite</baseDirectory>
+ <fileSets>
+ <fileSet>
+ <directory>target/updatesite</directory>
+ <outputDirectory>/</outputDirectory>
+ </fileSet>
+ </fileSets>
+</assembly>
+
|