You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@santuario.apache.org by co...@apache.org on 2012/06/27 12:49:42 UTC

svn commit: r1354415 - /santuario/xml-security-java/trunk/pom.xml

Author: coheigea
Date: Wed Jun 27 10:49:42 2012
New Revision: 1354415

URL: http://svn.apache.org/viewvc?rev=1354415&view=rev
Log:
Fixing build

Modified:
    santuario/xml-security-java/trunk/pom.xml

Modified: santuario/xml-security-java/trunk/pom.xml
URL: http://svn.apache.org/viewvc/santuario/xml-security-java/trunk/pom.xml?rev=1354415&r1=1354414&r2=1354415&view=diff
==============================================================================
--- santuario/xml-security-java/trunk/pom.xml (original)
+++ santuario/xml-security-java/trunk/pom.xml Wed Jun 27 10:49:42 2012
@@ -233,6 +233,23 @@
                             <strict>false</strict>
                         </configuration>
                     </execution>
+                    <execution>
+                        <id>schema</id>
+                        <phase>generate-sources</phase>
+                        <goals>
+                            <goal>generate</goal>
+                        </goals>
+                        <configuration>
+                            <forceRegenerate>true</forceRegenerate>
+                            <schemaDirectory>
+                                ${basedir}/src/main/resources/schemas
+                            </schemaDirectory>
+                            <schemaIncludes>
+                                <schemaInclude>security-config.xsd</schemaInclude>
+                            </schemaIncludes>
+                            <readOnly>true</readOnly>
+                         </configuration>
+                    </execution>
                 </executions>
             </plugin>
             
@@ -273,7 +290,7 @@
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-surefire-plugin</artifactId>
-                    <version>2.6</version>
+                    <version>2.9</version>
                     <configuration>
                         <reportFormat>brief</reportFormat>
                         <useFile>false</useFile>
@@ -284,6 +301,7 @@
                         </includes>
                         <systemPropertyVariables>
                             <product.version>${project.version}</product.version>
+                            <log4j.configuration>log4j-xmlsec.xml</log4j.configuration>
                         </systemPropertyVariables>
                     </configuration>
                 </plugin>
@@ -343,13 +361,18 @@
     </profiles>
 
     <properties>
-        <xml.apis.version>1.3.04</xml.apis.version>
+        <xml.apis.version>1.4.01</xml.apis.version>
         <commons.logging.version>1.1.1</commons.logging.version>
         <xalan.version>2.7.1</xalan.version>
         <xerces.version>2.9.1</xerces.version>
         <junit.version>4.8.2</junit.version>
-        <log4j.version>1.2.16</log4j.version>
+        <log4j.version>1.2.17</log4j.version>
         <bcprov.version>1.46</bcprov.version>
+        <testng.version>6.5.2</testng.version>
+        <xmlunit.version>1.3</xmlunit.version>
+        <commons.codec.version>1.6</commons.codec.version>
+        <commons.compress.version>1.4.1</commons.compress.version>
+        <woodstox.core.asl.version>4.1.3</woodstox.core.asl.version>
     </properties>
     
     <dependencies>
@@ -360,6 +383,24 @@
             <scope>compile</scope>
         </dependency>
         <dependency>
+            <groupId>org.codehaus.woodstox</groupId>
+            <artifactId>woodstox-core-asl</artifactId>
+            <version>${woodstox.core.asl.version}</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>commons-codec</groupId>
+            <artifactId>commons-codec</artifactId>
+            <version>${commons.codec.version}</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.commons</groupId>
+            <artifactId>commons-compress</artifactId>
+            <version>${commons.compress.version}</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
             <groupId>junit</groupId>
             <artifactId>junit</artifactId>
             <version>${junit.version}</version>
@@ -371,6 +412,20 @@
             <version>${log4j.version}</version>
             <scope>test</scope>
         </dependency>
+        <!--
+        <dependency>
+            <groupId>org.testng</groupId>
+            <artifactId>testng</artifactId>
+            <version>${testng.version}</version>
+            <scope>test</scope>
+        </dependency>
+        -->
+        <dependency>
+            <groupId>xmlunit</groupId>
+            <artifactId>xmlunit</artifactId>
+            <version>${xmlunit.version}</version>
+            <scope>test</scope>
+        </dependency>
         <dependency>
             <groupId>xalan</groupId>
             <artifactId>xalan</artifactId>