[picketlink-commits] Picketlink SVN: r435 - in federation/trunk: picketlink-fed-parser and 1 other directory.

picketlink-commits at lists.jboss.org picketlink-commits at lists.jboss.org
Wed Oct 6 13:38:16 EDT 2010


Author: anil.saldhana at jboss.com
Date: 2010-10-06 13:38:15 -0400 (Wed, 06 Oct 2010)
New Revision: 435

Added:
   federation/trunk/picketlink-fed-parser/pom.xml
Modified:
   federation/trunk/pom.xml
Log:
add pom

Added: federation/trunk/picketlink-fed-parser/pom.xml
===================================================================
--- federation/trunk/picketlink-fed-parser/pom.xml	                        (rev 0)
+++ federation/trunk/picketlink-fed-parser/pom.xml	2010-10-06 17:38:15 UTC (rev 435)
@@ -0,0 +1,103 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+   <parent>
+      <groupId>org.picketlink</groupId>
+      <artifactId>picketlink-fed-parent</artifactId>
+      <version>2.0.0-SNAPSHOT</version>
+      <relativePath>../parent</relativePath>
+   </parent>
+   <modelVersion>4.0.0</modelVersion>
+   <artifactId>picketlink-fed-parser</artifactId>
+   <packaging>jar</packaging>
+   <name>PicketLink Federation Parsers</name>
+   <url>http://labs.jboss.org/portal/picketlink/</url>
+   <description>PicketLink Federation Parsers contains the core parsing logic.</description>
+   <licenses>
+      <license>
+         <name>lgpl</name>
+         <url>http://repository.jboss.com/licenses/lgpl.txt</url>
+      </license>
+   </licenses>
+   <organization>
+      <name>JBoss Inc.</name>
+      <url>http://www.jboss.org</url>
+   </organization>
+   <build>
+     <plugins>
+       <plugin>
+          <artifactId>maven-surefire-plugin</artifactId>
+          <version>2.4.3</version>
+          <configuration>
+            <printSummary>true</printSummary>
+            <disableXmlReport>false</disableXmlReport>
+            <testFailureIgnore>false</testFailureIgnore>
+            <includes>
+              <include>**/**TestCase.java</include>
+            </includes>
+            <forkMode>pertest</forkMode>
+            <useFile>false</useFile>
+            <trimStackTrace>false</trimStackTrace>
+           </configuration>
+        </plugin>
+     </plugins>
+  </build>
+
+   <dependencies>
+      <dependency>
+         <groupId>org.picketlink</groupId>
+         <artifactId>picketlink-fed-model</artifactId>
+         <version>${project.version}</version>
+      </dependency>
+      <dependency>
+         <groupId>org.picketlink</groupId>
+         <artifactId>picketlink-xmlsec-model</artifactId>
+         <version>${project.version}</version>
+      </dependency>
+      <dependency>
+        <groupId>apache-log4j</groupId>
+        <artifactId>log4j</artifactId>
+      </dependency>
+      <dependency>
+        <groupId>org.apache</groupId>
+        <artifactId>xmlsec</artifactId>
+      </dependency>
+      <dependency>
+        <groupId>apache-logging</groupId>
+        <artifactId>commons-logging-api</artifactId>
+      </dependency>
+      <dependency>
+         <groupId>junit</groupId>
+         <artifactId>junit</artifactId>
+         <scope>test</scope>
+      </dependency>
+   </dependencies>
+   
+   <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <configuration>
+          <doclet>org.jboss.apiviz.APIviz</doclet>
+          <docletArtifact>
+            <groupId>org.jboss.apiviz</groupId>
+            <artifactId>apiviz</artifactId>
+            <version>1.2.5.GA</version>
+          </docletArtifact>
+          <additionalparam>
+            -charset UTF-8
+            -docencoding UTF-8
+            -version
+            -author
+            -breakiterator
+            -windowtitle "${project.name} ${project.version} API Reference"
+            -doctitle "${project.name} ${project.version} API Reference"
+            -bottom "Copyright © ${project.inceptionYear}-Present ${project.organization.name}. All Rights Reserved."
+            -link http://java.sun.com/javase/6/docs/api/
+            -sourceclasspath ${project.build.outputDirectory}
+          </additionalparam>
+          <encoding>UTF-8</encoding>
+        </configuration>
+      </plugin>
+    </plugins>
+  </reporting>
+</project>

Modified: federation/trunk/pom.xml
===================================================================
--- federation/trunk/pom.xml	2010-10-05 19:14:30 UTC (rev 434)
+++ federation/trunk/pom.xml	2010-10-06 17:38:15 UTC (rev 435)
@@ -17,6 +17,7 @@
      <module>parent</module>
      <module>picketlink-xmlsec-model</module>
      <module>picketlink-fed-model</module>
+     <module>picketlink-fed-parser</module>
      <module>picketlink-fed-core</module>
      <module>picketlink-fed-api</module>
      <module>picketlink-web</module>



More information about the picketlink-commits mailing list