[utilities COMMIT] in /xmlsectool/trunk: ./ .checkstyle .classpath .project pom.xml src/main/assembly/bin.xml src/tes...
noreply at shibboleth.net
noreply at shibboleth.net
Sat Aug 6 15:29:16 BST 2011
Author: lajoie
Date: Sat Aug 6 15:29:16 2011
New Revision: 157
URL: http://svn.shibboleth.net/view/utilities?rev=157&view=rev
Log:
migrate to eclipse 3.7 and parent-project configs
add schema info to assembly file
Added:
xmlsectool/trunk/.checkstyle
xmlsectool/trunk/.classpath
xmlsectool/trunk/src/test/resources/
Modified:
xmlsectool/trunk/ (props changed)
xmlsectool/trunk/.project
xmlsectool/trunk/pom.xml
xmlsectool/trunk/src/main/assembly/bin.xml
Modified: xmlsectool/trunk/.project
URL: http://svn.shibboleth.net/view/utilities/xmlsectool/trunk/.project?rev=157&r1=156&r2=157&view=diff
==============================================================================
--- xmlsectool/trunk/.project (original)
+++ xmlsectool/trunk/.project Sat Aug 6 15:29:16 2011
@@ -16,14 +16,14 @@
</arguments>
</buildCommand>
<buildCommand>
- <name>org.maven.ide.eclipse.maven2Builder</name>
+ <name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
- <nature>org.eclipse.jdt.core.javanature</nature>
- <nature>org.maven.ide.eclipse.maven2Nature</nature>
- <nature>net.sf.eclipsecs.core.CheckstyleNature</nature>
+ <nature>org.eclipse.jdt.core.javanature</nature>
+ <nature>net.sf.eclipsecs.core.CheckstyleNature</nature>
+ <nature>org.eclipse.m2e.core.maven2Nature</nature>
</natures>
</projectDescription>
Modified: xmlsectool/trunk/pom.xml
URL: http://svn.shibboleth.net/view/utilities/xmlsectool/trunk/pom.xml?rev=157&r1=156&r2=157&view=diff
==============================================================================
--- xmlsectool/trunk/pom.xml (original)
+++ xmlsectool/trunk/pom.xml Sat Aug 6 15:29:16 2011
@@ -1,203 +1,86 @@
<?xml version="1.0" encoding="UTF-8"?>
-<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">
-
- <modelVersion>4.0.0</modelVersion>
-
- <groupId>net.shibboleth.tool</groupId>
- <artifactId>xmlsectool</artifactId>
- <version>1.1.5</version>
- <packaging>jar</packaging>
+<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">
- <name>XmlSecTool</name>
- <description>
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>net.shibboleth</groupId>
+ <artifactId>parent</artifactId>
+ <version>1</version>
+ </parent>
+
+ <groupId>net.shibboleth.tool</groupId>
+ <artifactId>xmlsectool</artifactId>
+ <version>1.1.5</version>
+ <packaging>jar</packaging>
+
+ <name>XmlSecTool</name>
+ <description>
A command line tool for checking an XML file for well-formedness and validity as well as
signing and checking signatures.
</description>
-
+
<properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <slf4j.groupId>org.slf4j</slf4j.groupId>
- <slf4j.version>1.6.1</slf4j.version>
- <xerces.groupId>org.apache.xerces</xerces.groupId>
- <xerces.version>2.10.0</xerces.version>
- <xalan.groupId>xalan</xalan.groupId>
- <xalan.version>2.7.1</xalan.version>
+ <svn.relative.location>utilities/xmlsectool</svn.relative.location>
</properties>
- <repositories>
- <repository>
- <id>shib-release</id>
- <url>https://shibboleth.net/nexus/content/groups/public</url>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- </repository>
- <repository>
- <id>shib-snapshot</id>
- <url>https://shibboleth.net/nexus/content/repositories/snapshots</url>
- <releases>
- <enabled>false</enabled>
- </releases>
- </repository>
- </repositories>
-
- <dependencies>
- <!-- Compile dependencies -->
- <dependency>
- <groupId>org.opensaml</groupId>
- <artifactId>openws</artifactId>
- <version>1.4.2</version>
+ <dependencies>
+ <!-- Compile dependencies -->
+ <dependency>
+ <groupId>org.opensaml</groupId>
+ <artifactId>openws</artifactId>
+ <version>1.4.2</version>
<exclusions>
<exclusion>
- <groupId>commons-logging</groupId>
- <artifactId>commons-logging</artifactId>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
</exclusion>
<exclusion>
<groupId>velocity</groupId>
<artifactId>velocity</artifactId>
- </exclusion>
+ </exclusion>
</exclusions>
- </dependency>
+ </dependency>
<dependency>
[... 262 lines stripped ...]
More information about the commits
mailing list