Author: tv
Date: Wed Nov 24 18:08:23 2010
New Revision: 1038733

URL: http://svn.apache.org/viewvc?rev=1038733&view=rev
Log:
Moved security api build to maven2

Added:
    turbine/fulcrum/trunk/security/api/pom.xml   (with props)
Removed:
    turbine/fulcrum/trunk/security/api/maven.xml
    turbine/fulcrum/trunk/security/api/project.properties
    turbine/fulcrum/trunk/security/api/project.xml
Modified:
    turbine/fulcrum/trunk/pom.xml
    turbine/fulcrum/trunk/security/xdocs/changes.xml

Modified: turbine/fulcrum/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/turbine/fulcrum/trunk/pom.xml?rev=1038733&r1=1038732&r2=1038733&view=diff
==============================================================================
--- turbine/fulcrum/trunk/pom.xml (original)
+++ turbine/fulcrum/trunk/pom.xml Wed Nov 24 18:08:23 2010
@@ -47,6 +47,7 @@
     <module>pool</module>    
     <module>quartz</module>        
     <module>resourcemanager</module>    
+    <module>security/api</module>    
     <module>servicemanager</module>    
     <module>spring</module>            
     <module>testcontainer</module>    

Added: turbine/fulcrum/trunk/security/api/pom.xml
URL: 
http://svn.apache.org/viewvc/turbine/fulcrum/trunk/security/api/pom.xml?rev=1038733&view=auto
==============================================================================
--- turbine/fulcrum/trunk/security/api/pom.xml (added)
+++ turbine/fulcrum/trunk/security/api/pom.xml Wed Nov 24 18:08:23 2010
@@ -0,0 +1,113 @@
+<?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-parent</artifactId>
+       <groupId>org.apache.fulcrum</groupId>
+       <version>1</version>
+   </parent>
+   <modelVersion>4.0.0</modelVersion>
+   <groupId>org.apache.fulcrum</groupId>
+   <artifactId>fulcrum-security-api</artifactId>
+   <name>Fulcrum Security API</name>
+   <version>1.1.0-SNAPSHOT</version>
+   <dependencies>
+       <dependency>
+           <groupId>commons-codec</groupId>
+           <artifactId>commons-codec</artifactId>
+           <version>1.4</version>
+       </dependency>
+       <dependency>
+           <groupId>commons-lang</groupId>
+           <artifactId>commons-lang</artifactId>
+           <version>2.5</version>
+       </dependency>
+       <dependency>
+           <groupId>junit</groupId>
+           <artifactId>junit</artifactId>
+           <version>3.8.1</version>
+           <scope>test</scope>
+       </dependency>
+       <dependency>
+           <groupId>org.apache.fulcrum</groupId>
+           <artifactId>fulcrum-testcontainer</artifactId>
+           <version>1.0.6</version>
+           <scope>test</scope>
+       </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-crypto</artifactId>
+           <version>1.0.7</version>
+       </dependency>
+       <dependency>
+           <groupId>org.apache.avalon.framework</groupId>
+           <artifactId>avalon-framework-api</artifactId>
+           <version>4.3.1</version>
+       </dependency>
+   </dependencies>
+   <build>
+       <sourceDirectory>src/java</sourceDirectory>
+       <testSourceDirectory>src/test</testSourceDirectory>
+       <plugins>
+           <plugin>
+               <artifactId>maven-surefire-plugin</artifactId>
+               <configuration>
+                   <useFile>true</useFile>
+               </configuration>
+           </plugin>
+           <plugin>
+               <groupId>org.apache.maven.plugins</groupId>
+               <artifactId>maven-eclipse-plugin</artifactId>
+               <version>2.8</version>
+               <configuration>
+                   <downloadSources>true</downloadSources>
+                   <downloadJavadocs>true</downloadJavadocs>
+               </configuration>
+           </plugin>
+           <plugin>
+               <groupId>org.apache.maven.plugins</groupId>
+               <artifactId>maven-compiler-plugin</artifactId>
+               <version>2.3.2</version>
+               <configuration>
+                   <source>1.5</source>
+                   <target>1.5</target>
+               </configuration>
+           </plugin>
+       </plugins>
+   </build>
+   <reporting>
+       <plugins>
+           <plugin>
+               <artifactId>maven-changes-plugin</artifactId>
+               <configuration>
+                   <xmlPath>${basedir}/xdocs/changes.xml</xmlPath>
+               </configuration>
+           </plugin>
+       </plugins>
+   </reporting>
+</project>

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

Modified: turbine/fulcrum/trunk/security/xdocs/changes.xml
URL: 
http://svn.apache.org/viewvc/turbine/fulcrum/trunk/security/xdocs/changes.xml?rev=1038733&r1=1038732&r2=1038733&view=diff
==============================================================================
--- turbine/fulcrum/trunk/security/xdocs/changes.xml (original)
+++ turbine/fulcrum/trunk/security/xdocs/changes.xml Wed Nov 24 18:08:23 2010
@@ -24,10 +24,16 @@
   </properties>
 
   <body>
-    <release version="1.0.8" date="">
-    <action type="update" dev="tv">
+    <release version="1.1.0" date="">
+      <action type="update" dev="tv" issue="TRB-78" due-to="Ludwig Magnusson">
+        Move API build to Maven-2.
+      </action>
+      <action type="update" dev="tv">
+        Moved tests to src/test
+      </action>
+      <action type="update" dev="tv">
         Update to latest release of Torque (3.3).
-    </action>
+      </action>
       <action dev="tv" type="update" fixes="TRB-40">
         Changed BasicUser, BasicGroup, DynamicUser, DynamicGroup, DynamicRole,
         DynamicPermission, TurbineUser, TurbineGroup, TurbineRole and 
TurbinePermission to


Reply via email to