Author: tv
Date: Sun Jul 12 19:46:47 2015
New Revision: 1690514

URL: http://svn.apache.org/r1690514
Log:
Add distribution build

Added:
    turbine/fulcrum/trunk/security/dist/
    turbine/fulcrum/trunk/security/dist/pom.xml   (with props)
    turbine/fulcrum/trunk/security/dist/src/
    turbine/fulcrum/trunk/security/dist/src/assembly/
    turbine/fulcrum/trunk/security/dist/src/assembly/bin.xml   (with props)
Modified:
    turbine/fulcrum/trunk/security/api/pom.xml
    turbine/fulcrum/trunk/security/hibernate/pom.xml
    turbine/fulcrum/trunk/security/memory/pom.xml
    turbine/fulcrum/trunk/security/nt/pom.xml
    turbine/fulcrum/trunk/security/pom.xml
    turbine/fulcrum/trunk/security/torque/pom.xml

Modified: turbine/fulcrum/trunk/security/api/pom.xml
URL: 
http://svn.apache.org/viewvc/turbine/fulcrum/trunk/security/api/pom.xml?rev=1690514&r1=1690513&r2=1690514&view=diff
==============================================================================
--- turbine/fulcrum/trunk/security/api/pom.xml (original)
+++ turbine/fulcrum/trunk/security/api/pom.xml Sun Jul 12 19:46:47 2015
@@ -17,7 +17,7 @@
 -->
 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd"; 
xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
     <parent>
-        <artifactId>fulcrum-security-parent</artifactId>
+        <artifactId>fulcrum-security</artifactId>
         <groupId>org.apache.fulcrum</groupId>
         <version>1.1.0-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>

Added: turbine/fulcrum/trunk/security/dist/pom.xml
URL: 
http://svn.apache.org/viewvc/turbine/fulcrum/trunk/security/dist/pom.xml?rev=1690514&view=auto
==============================================================================
--- turbine/fulcrum/trunk/security/dist/pom.xml (added)
+++ turbine/fulcrum/trunk/security/dist/pom.xml Sun Jul 12 19:46:47 2015
@@ -0,0 +1,79 @@
+<?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
+    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd";
+    xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
+    <parent>
+        <artifactId>fulcrum-security</artifactId>
+        <groupId>org.apache.fulcrum</groupId>
+        <version>1.1.0-SNAPSHOT</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>org.apache.fulcrum</groupId>
+    <artifactId>fulcrum-security-dist</artifactId>
+    <version>1.1.0-SNAPSHOT</version>
+    <packaging>pom</packaging>
+    <name>Fulcrum Security Distribution Build</name>
+    <url>http://turbine.apache.org/fulcrum/fulcrum-security/</url>
+    
+    <!-- NOTE: These dependency declarations are only required to sort this 
project to the 
+         end of the line in the multimodule build. 
+    -->
+    <dependencies>
+      <dependency>
+        <groupId>org.apache.fulcrum</groupId>
+        <artifactId>fulcrum-security-api</artifactId>
+        <version>1.1.0-SNAPSHOT</version>
+      </dependency>
+    </dependencies>
+
+    <profiles>
+        <profile>
+            <id>apache-release</id>
+            <build>
+                <plugins>
+                    <plugin>
+                        <!-- build the source and binary distribution packages 
-->
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-assembly-plugin</artifactId>
+                        <version>2.5.3</version>
+                        <executions>
+                            <execution>
+                                <id>fulcrum-release-assembly</id>
+                                <phase>package</phase>
+                                <goals>
+                                    <goal>single</goal>
+                                </goals>
+                                <configuration>
+                                    
<runOnlyAtExecutionRoot>false</runOnlyAtExecutionRoot>
+                                    <descriptors>
+                                      
<descriptor>src/assembly/bin.xml</descriptor>
+                                    </descriptors>
+                                    <tarLongFileFormat>gnu</tarLongFileFormat>
+                                </configuration>
+                            </execution>
+                        </executions>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
+</project>

Propchange: turbine/fulcrum/trunk/security/dist/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: turbine/fulcrum/trunk/security/dist/src/assembly/bin.xml
URL: 
http://svn.apache.org/viewvc/turbine/fulcrum/trunk/security/dist/src/assembly/bin.xml?rev=1690514&view=auto
==============================================================================
--- turbine/fulcrum/trunk/security/dist/src/assembly/bin.xml (added)
+++ turbine/fulcrum/trunk/security/dist/src/assembly/bin.xml Sun Jul 12 
19:46:47 2015
@@ -0,0 +1,68 @@
+<?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 
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3"; 
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+  
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3
 http://maven.apache.org/xsd/assembly-1.1.3.xsd";>
+  <id>bin</id>
+  <formats>
+    <format>tar.gz</format>
+    <format>zip</format>
+  </formats>
+  <moduleSets>
+    <moduleSet>
+      <useAllReactorProjects>true</useAllReactorProjects>
+      <includes>
+        <include>org.apache.fulcrum:fulcrum-security-api</include>
+        <include>org.apache.fulcrum:fulcrum-security-hibernate</include>
+        <include>org.apache.fulcrum:fulcrum-security-memory</include>
+        <include>org.apache.fulcrum:fulcrum-security-torque</include>
+      </includes>
+      <binaries>
+        <includeDependencies>false</includeDependencies>
+        <outputDirectory></outputDirectory>
+        <dependencySets>
+          <dependencySet>
+            <useProjectArtifact>true</useProjectArtifact>
+            <useProjectAttachments>true</useProjectAttachments>
+            <useTransitiveDependencies>false</useTransitiveDependencies>
+          </dependencySet>
+        </dependencySets>
+        <unpack>false</unpack>
+      </binaries>
+    </moduleSet>
+  </moduleSets>
+  <fileSets>
+    <fileSet>
+      <directory>${project.basedir}</directory>
+      <outputDirectory></outputDirectory>
+      <includes>
+        <include>README*</include>
+      </includes>
+    </fileSet>
+    <fileSet>
+      
<directory>${project.build.directory}/maven-shared-archive-resources/META-INF</directory>
+      <outputDirectory></outputDirectory>
+      <includes>
+        <include>LICENSE*</include>
+        <include>NOTICE*</include>
+      </includes>
+    </fileSet>
+  </fileSets>
+</assembly>
\ No newline at end of file

Propchange: turbine/fulcrum/trunk/security/dist/src/assembly/bin.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: turbine/fulcrum/trunk/security/hibernate/pom.xml
URL: 
http://svn.apache.org/viewvc/turbine/fulcrum/trunk/security/hibernate/pom.xml?rev=1690514&r1=1690513&r2=1690514&view=diff
==============================================================================
--- turbine/fulcrum/trunk/security/hibernate/pom.xml (original)
+++ turbine/fulcrum/trunk/security/hibernate/pom.xml Sun Jul 12 19:46:47 2015
@@ -21,7 +21,7 @@
     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd";
     xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
     <parent>
-        <artifactId>fulcrum-security-parent</artifactId>
+        <artifactId>fulcrum-security</artifactId>
         <groupId>org.apache.fulcrum</groupId>
         <version>1.1.0-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
@@ -137,15 +137,4 @@
                <scope>test</scope>
         </dependency>
     </dependencies>
-    
-    <reporting>
-        <plugins>
-            <plugin>
-                <artifactId>maven-changes-plugin</artifactId>
-                <configuration>
-                    <xmlPath>${basedir}/xdocs/changes.xml</xmlPath>
-                </configuration>
-            </plugin>
-        </plugins>
-    </reporting>
 </project>

Modified: turbine/fulcrum/trunk/security/memory/pom.xml
URL: 
http://svn.apache.org/viewvc/turbine/fulcrum/trunk/security/memory/pom.xml?rev=1690514&r1=1690513&r2=1690514&view=diff
==============================================================================
--- turbine/fulcrum/trunk/security/memory/pom.xml (original)
+++ turbine/fulcrum/trunk/security/memory/pom.xml Sun Jul 12 19:46:47 2015
@@ -17,7 +17,7 @@
 -->
 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd"; 
xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
     <parent>
-        <artifactId>fulcrum-security-parent</artifactId>
+        <artifactId>fulcrum-security</artifactId>
         <groupId>org.apache.fulcrum</groupId>
         <version>1.1.0-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
@@ -105,15 +105,4 @@
             <scope>test</scope>
         </dependency>
     </dependencies>
-    
-    <reporting>
-        <plugins>
-            <plugin>
-                <artifactId>maven-changes-plugin</artifactId>
-                <configuration>
-                    <xmlPath>${basedir}/xdocs/changes.xml</xmlPath>
-                </configuration>
-            </plugin>
-        </plugins>
-    </reporting>
 </project>

Modified: turbine/fulcrum/trunk/security/nt/pom.xml
URL: 
http://svn.apache.org/viewvc/turbine/fulcrum/trunk/security/nt/pom.xml?rev=1690514&r1=1690513&r2=1690514&view=diff
==============================================================================
--- turbine/fulcrum/trunk/security/nt/pom.xml (original)
+++ turbine/fulcrum/trunk/security/nt/pom.xml Sun Jul 12 19:46:47 2015
@@ -1,29 +1,22 @@
 <?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 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd"; 
xmlns="http://maven.apache.org/POM/4.0.0";
-    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
-       <parent>
-               <artifactId>fulcrum-security-parent</artifactId>
-               <groupId>org.apache.fulcrum</groupId>
-               <version>1.1.0-SNAPSHOT</version>
-        <relativePath>../pom.xml</relativePath>
-       </parent>
-       <modelVersion>4.0.0</modelVersion>
+<!-- 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 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd"; 
xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
+  <parent>
+    <artifactId>fulcrum-security</artifactId>
+    <groupId>org.apache.fulcrum</groupId>
+    <version>1.1.0-SNAPSHOT</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.fulcrum</groupId>
   <artifactId>fulcrum-security-nt</artifactId>
   <version>1.1.0-SNAPSHOT</version>
@@ -51,36 +44,36 @@
       <version>1.0.3</version>
     </dependency>
     <dependency>
-        <groupId>org.apache.fulcrum</groupId>
-        <artifactId>fulcrum-security-api</artifactId>
-        <version>1.1.0-SNAPSHOT</version>
-        <type>test-jar</type>
-        <scope>test</scope>
-    </dependency>
-    <dependency>
-        <groupId>junit</groupId>
-        <artifactId>junit</artifactId>
-        <version>3.8.2</version>
-        <scope>test</scope>
-    </dependency>
-    <dependency>
-        <groupId>org.apache.fulcrum</groupId>
-        <artifactId>fulcrum-testcontainer</artifactId>
-        <scope>test</scope>
-        <version>1.0.6</version>
-    </dependency>
-    <dependency>
-        <groupId>org.apache.fulcrum</groupId>
-        <artifactId>fulcrum-yaafi</artifactId>
-        <version>1.0.6</version>
-        <scope>test</scope>
-    </dependency> 
-    <dependency>
-        <groupId>org.apache.fulcrum</groupId>
-        <artifactId>fulcrum-security-memory</artifactId>
-        <version>1.1.0-SNAPSHOT</version>
-        <scope>test</scope>
-    </dependency>           
+      <groupId>org.apache.fulcrum</groupId>
+      <artifactId>fulcrum-security-api</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+      <type>test-jar</type>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.2</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.fulcrum</groupId>
+      <artifactId>fulcrum-testcontainer</artifactId>
+      <scope>test</scope>
+      <version>1.0.6</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.fulcrum</groupId>
+      <artifactId>fulcrum-yaafi</artifactId>
+      <version>1.0.6</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.fulcrum</groupId>
+      <artifactId>fulcrum-security-memory</artifactId>
+      <version>1.1.0-SNAPSHOT</version>
+      <scope>test</scope>
+    </dependency>
   </dependencies>
 
 </project>

Modified: turbine/fulcrum/trunk/security/pom.xml
URL: 
http://svn.apache.org/viewvc/turbine/fulcrum/trunk/security/pom.xml?rev=1690514&r1=1690513&r2=1690514&view=diff
==============================================================================
--- turbine/fulcrum/trunk/security/pom.xml (original)
+++ turbine/fulcrum/trunk/security/pom.xml Sun Jul 12 19:46:47 2015
@@ -27,7 +27,7 @@
    </parent>
     <modelVersion>4.0.0</modelVersion>
     <groupId>org.apache.fulcrum</groupId>
-    <artifactId>fulcrum-security-parent</artifactId>
+    <artifactId>fulcrum-security</artifactId>
     <version>1.1.0-SNAPSHOT</version>
     <packaging>pom</packaging>
     <name>Fulcrum Security Master Build</name>
@@ -102,50 +102,15 @@
         </plugins>
     </build>
 
-    <profiles>
-        <profile>
-            <id>build-modules</id>
-          
-            <modules>
-                <module>api</module>
-                <module>hibernate</module>
-                <module>memory</module>
-                <module>nt</module>
-                <!-- module>ldap</module -->
-                <module>torque</module>
-            </modules>
-        </profile>
-        <profile>
-            <id>apache-release</id>
-            <build>
-                <plugins>
-                    <plugin>
-                        <!-- build the source and binary distribution packages 
-->
-                        <groupId>org.apache.maven.plugins</groupId>
-                        <artifactId>maven-assembly-plugin</artifactId>
-                        <executions>
-                            <execution>
-                                <id>fulcrum-source-release-assembly</id>
-                                <phase>package</phase>
-                                <goals>
-                                    <goal>single</goal>
-                                </goals>
-                                <configuration>
-                                    
<runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
-                                    <descriptorRefs>
-                                        <descriptorRef>bin</descriptorRef>
-                                        <descriptorRef>project</descriptorRef>
-                                        <descriptorRef>src</descriptorRef>
-                                    </descriptorRefs>
-                                    <tarLongFileFormat>gnu</tarLongFileFormat>
-                                </configuration>
-                            </execution>
-                        </executions>
-                    </plugin>
-                </plugins>
-            </build>
-        </profile>
-    </profiles>
+    <modules>
+        <module>api</module>
+        <module>hibernate</module>
+        <module>memory</module>
+        <!-- module>nt</module -->
+        <!-- module>ldap</module -->
+        <module>torque</module>
+        <module>dist</module>
+    </modules>
     
     <properties>
         <turbine.site.path>fulcrum/fulcrum-security</turbine.site.path>

Modified: turbine/fulcrum/trunk/security/torque/pom.xml
URL: 
http://svn.apache.org/viewvc/turbine/fulcrum/trunk/security/torque/pom.xml?rev=1690514&r1=1690513&r2=1690514&view=diff
==============================================================================
--- turbine/fulcrum/trunk/security/torque/pom.xml (original)
+++ turbine/fulcrum/trunk/security/torque/pom.xml Sun Jul 12 19:46:47 2015
@@ -18,7 +18,7 @@
 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd"; 
xmlns="http://maven.apache.org/POM/4.0.0";
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
        <parent>
-               <artifactId>fulcrum-security-parent</artifactId>
+               <artifactId>fulcrum-security</artifactId>
                <groupId>org.apache.fulcrum</groupId>
                <version>1.1.0-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>


Reply via email to