You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2015/04/03 13:40:43 UTC

[2/2] directory-fortress-core git commit: removed the assembly files, they are not used anymore

removed the assembly files, they are not used anymore


Project: http://git-wip-us.apache.org/repos/asf/directory-fortress-core/repo
Commit: http://git-wip-us.apache.org/repos/asf/directory-fortress-core/commit/7f1f90d2
Tree: http://git-wip-us.apache.org/repos/asf/directory-fortress-core/tree/7f1f90d2
Diff: http://git-wip-us.apache.org/repos/asf/directory-fortress-core/diff/7f1f90d2

Branch: refs/heads/master
Commit: 7f1f90d2ba75a28a0cd83482d511c1fd849b2d6a
Parents: 3717865
Author: Emmanuel Lécharny <el...@symas.com>
Authored: Fri Apr 3 13:40:28 2015 +0200
Committer: Emmanuel Lécharny <el...@symas.com>
Committed: Fri Apr 3 13:40:28 2015 +0200

----------------------------------------------------------------------
 src/main/assembly/bin.xml | 78 ----------------------------------------
 src/main/assembly/src.xml | 80 ------------------------------------------
 2 files changed, 158 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/7f1f90d2/src/main/assembly/bin.xml
----------------------------------------------------------------------
diff --git a/src/main/assembly/bin.xml b/src/main/assembly/bin.xml
deleted file mode 100644
index a8f55f6..0000000
--- a/src/main/assembly/bin.xml
+++ /dev/null
@@ -1,78 +0,0 @@
-<?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>bin</id>
-  <formats>
-    <format>tar.gz</format>
-    <format>zip</format>
-  </formats>
- 
-  <!-- Now copy the other files, excluding the files we don't want -->
-  <fileSets>
-    <!-- Copy licenses into '/' -->
-    <fileSet>
-      <directory>..</directory>
-      <outputDirectory/>
-      <includes>
-        <include>LICENSE*</include>
-        <include>NOTICE</include>
-      </includes>
-    </fileSet>
-    
-    <!-- Copy Javadoc into '/docs' -->
-    <fileSet>
-      <directory>../target/site</directory>
-      <outputDirectory>docs</outputDirectory>
-      <includes>
-        <include>apidocs*/**</include>
-        <include>xref*/**</include>
-      </includes>
-    </fileSet>
-  </fileSets>
-
-  <dependencySets>
-    <!-- Copy Fortress Core modules into '/dist' -->
-    <dependencySet>
-      <outputDirectory>dist</outputDirectory>
-      <includes>
-        <!-- Including only Fortress Core modules -->
-        <include>${project.groupId}:*</include>
-      </includes>
-      
-      <excludes>
-        <!-- Excluding sources jars -->
-        <exclude>*:sources</exclude>
-      </excludes> 
-    </dependencySet>
-    
-    <!-- Copy Fortress Core dependencies into '/lib' -->
-    <dependencySet>
-      <outputDirectory>lib</outputDirectory>
-      <excludes>
-        <!-- Excluding Fortress Core modules -->
-        <exclude>${project.groupId}:*</exclude>
-      
-        <!-- Excluding sources jars -->
-        <exclude>*:sources</exclude>
-      </excludes> 
-    </dependencySet>
-  </dependencySets>
-</assembly>

http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/7f1f90d2/src/main/assembly/src.xml
----------------------------------------------------------------------
diff --git a/src/main/assembly/src.xml b/src/main/assembly/src.xml
deleted file mode 100644
index bf20858..0000000
--- a/src/main/assembly/src.xml
+++ /dev/null
@@ -1,80 +0,0 @@
-<?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>src</id>
-  <formats>
-    <format>tar.gz</format>
-    <format>tar.bz2</format> 
-    <format>zip</format>
-  </formats>
-  
-  <fileSets>
-    <!-- Copy licenses into '/' -->
-    <fileSet>
-      <directory>.</directory>
-      <outputDirectory/>
-      <includes>
-        <include>README*</include>
-        <include>LICENSE*</include>
-        <include>NOTICE</include>
-      </includes>
-    </fileSet>
-    
-    <!-- Copy Javadoc into '/docs' -->
-    <fileSet>
-      <directory>./target/site</directory>
-      <outputDirectory>docs</outputDirectory>
-      <includes>
-        <include>apidocs*/**</include>
-        <include>xref*/**</include>
-      </includes>
-    </fileSet>
-      
-    <!-- Copy sources into '/src' -->
-    <fileSet>
-      <directory>.</directory>
-      <outputDirectory/>
-      <includes>
-        <include>**/*</include>
-      </includes>
-      <excludes>
-        <exclude>.git/**</exclude>
-        <exclude>KEYS</exclude>
-        <exclude>LICENSE-bin</exclude>
-        <exclude>NOTICE</exclude>
-        <exclude>**/target</exclude>
-        <exclude>**/target/**</exclude>
-        <exclude>**/.settings</exclude>
-        <exclude>**/.settings/**</exclude>
-        <exclude>**/.classpath</exclude>
-        <exclude>**/.project</exclude>
-        <exclude>**/*.gen</exclude>
-        <exclude>**/.wtpmodules</exclude>
-        <exclude>**/surefire*</exclude>
-        <exclude>**/cobertura.ser</exclude>
-        <exclude>**/velocity.log</exclude>
-        <exclude>**/release.properties</exclude>
-        <exclude>**/pom.xml.releaseBackup</exclude>
-      </excludes>
-    </fileSet>
-  </fileSets>
-  
-</assembly>