Author: ludwig
Date: Tue Jan 25 12:43:17 2011
New Revision: 1063258
URL: http://svn.apache.org/viewvc?rev=1063258&view=rev
Log:
Added a pom.xml file so that the project can be build and tests pass.
Added:
turbine/fulcrum/trunk/security/nt/pom.xml
Added: turbine/fulcrum/trunk/security/nt/pom.xml
URL:
http://svn.apache.org/viewvc/turbine/fulcrum/trunk/security/nt/pom.xml?rev=1063258&view=auto
==============================================================================
--- turbine/fulcrum/trunk/security/nt/pom.xml (added)
+++ turbine/fulcrum/trunk/security/nt/pom.xml Tue Jan 25 12:43:17 2011
@@ -0,0 +1,54 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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>fulcrum-security-nt</groupId>
+ <artifactId>fulcrum-security-nt</artifactId>
+ <name>Fulcrum Security NT Impl</name>
+ <version>1.1.0-SNAPSHOT</version>
+ <dependencies>
+ <dependency>
+ <groupId>fulcrum</groupId>
+ <artifactId>fulcrum-security-api</artifactId>
+ <version>1.0.7</version>
+ </dependency>
+ <dependency>
+ <groupId>tagishauth</groupId>
+ <artifactId>tagishauth</artifactId>
+ <version>1.0.3</version>
+ </dependency>
+ <dependency>
+ <groupId>fulcrum</groupId>
+ <artifactId>fulcrum-security-memory</artifactId>
+ <version>1.0.7</version>
+ </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-crypto</artifactId>
+ <version>1.0.7</version>
+ <type>jar</type>
+ <scope>compile</scope>
+ </dependency>
+ </dependencies>
+ <reporting>
+ <plugins>
+ <plugin>
+ <artifactId>maven-changes-plugin</artifactId>
+ <configuration>
+ <xmlPath>${basedir}/xdocs/changes.xml</xmlPath>
+ </configuration>
+ </plugin>
+ </plugins>
+ </reporting>
+</project>