--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>edu.internet2.shibboleth</groupId>
+ <artifactId>identityprovider</artifactId>
+ <version>2.1.0</version>
+ <!-- We bundle as a jar here, the installer creates the WAR -->
+ <packaging>jar</packaging>
+
+ <name>Shibboleth Identity Provider</name>
+ <description>
+ The Shibboleth Identity Provider is used by an organization to securely assert information, via SAML, about
+ their users. This information is then read and acted upon by Service Providers.
+ </description>
+
+ <repositories>
+ <repository>
+ <id>shibboleth.internet2.edu</id>
+ <name>Internet2</name>
+ <layout>default</layout>
+ <url>http://shibboleth.internet2.edu/downloads/maven2</url>
+ <snapshots>
+ <enabled>false</enabled>
+ </snapshots>
+ </repository>
+ </repositories>
+
+ <dependencies>
+ <!-- Compile dependencies -->
+ <dependency>
+ <groupId>edu.internet2.shibboleth</groupId>
+ <artifactId>shibboleth-common</artifactId>
+ <version>1.1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ <version>1.5.0</version>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>jcl104-over-slf4j</artifactId>
+ <version>1.5.0</version>
+ </dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>log4j-over-slf4j</artifactId>
+ <version>1.5.0</version>
+ </dependency>
+ <dependency>
+ <groupId>ch.qos.logback</groupId>
+ <artifactId>logback-classic</artifactId>
+ <version>0.9.8</version>
+ </dependency>
+ <dependency>
+ <groupId>ch.qos.logback</groupId>
+ <artifactId>logback-core</artifactId>
+ <version>0.9.8</version>
+ </dependency>
+
+ <!-- Provided dependencies -->
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.4</version>
+ <scope>provided</scope>
+ </dependency>
+
+ <!-- Runtime dependencies -->
+ <dependency>
+ <groupId>org.apache.xerces</groupId>
+ <artifactId>xml-apis</artifactId>
+ <version>2.9.1</version>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.xerces</groupId>
+ <artifactId>xercesImpl</artifactId>
+ <version>2.9.1</version>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.xerces</groupId>
+ <artifactId>resolver</artifactId>
+ <version>2.9.1</version>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.xerces</groupId>
+ <artifactId>serializer</artifactId>
+ <version>2.9.1</version>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.xalan</groupId>
+ <artifactId>xalan</artifactId>
+ <version>2.7.1</version>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant</artifactId>
+ <version>1.7.0</version>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant-nodeps</artifactId>
+ <version>1.7.0</version>
+ <scope>runtime</scope>
+ </dependency>
+ <dependency>
+ <groupId>ant-contrib</groupId>
+ <artifactId>ant-contrib</artifactId>
+ <version>1.0b2</version>
+ <scope>runtime</scope>
+ <exclusions>
+ <exclusion>
+ <groupId>ant</groupId>
+ <artifactId>ant</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+
+ <!-- Test dependencies -->
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>xmlunit</groupId>
+ <artifactId>xmlunit</artifactId>
+ <version>1.0</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ <debug>true</debug>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <configuration>
+ <descriptors>
+ <descriptor>src/main/assembly/bin.xml</descriptor>
+ <descriptor>src/main/assembly/src.xml</descriptor>
+ </descriptors>
+ </configuration>
+ <executions>
+ <execution>
+ <id>make-assembly</id>
+ <phase>package</phase>
+ <goals>
+ <goal>attached</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
+ <reporting>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <configuration>
+ <links>
+ <link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
+ </links>
+ <quiet>true</quiet>
+ <author>false</author>
+ <version>true</version>
+ <doctitle>${project.name} ${project.version} Java API.</doctitle>
+ <windowtitle>${project.name} ${project.version} Java API.</windowtitle>
+ <overview>src/main/java/overview.html</overview>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jxr-plugin</artifactId>
+ <configuration>
+ <outputDirectory>${project.reporting.outputDirectory}/xref</outputDirectory>
+ <doctitle>${project.name} ${project.version} Code Cross-Reference</doctitle>
+ <windowtitle>${project.name} ${project.version} Java API.</windowtitle>
+ <javadocDir>${project.reporting.outputDirectory}/apidocs</javadocDir>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-checkstyle-plugin</artifactId>
+ <configuration>
+ <configLocation>checkstyle.xml</configLocation>
+ <outputDirectory>${project.reporting.outputDirectory}/style</outputDirectory>
+ <enableRSS>false</enableRSS>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-report-plugin</artifactId>
+ <configuration>
+ <outputDirectory>${project.reporting.outputDirectory}/unitTest</outputDirectory>
+ <xrefLocation>${project.reporting.outputDirectory}/xref</xrefLocation>
+ </configuration>
+ </plugin>
+ </plugins>
+ </reporting>
+
+ <profiles>
+ <profile>
+ <id>release</id>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>release-javadoc</id>
+ <phase>package</phase>
+ <goals>
+ <goal>javadoc</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jxr-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>release-jxr</id>
+ <phase>package</phase>
+ <goals>
+ <goal>jxr</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-checkstyle-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>release-checkstyle</id>
+ <phase>package</phase>
+ <goals>
+ <goal>checkstyle</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-report-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>release-unitTest</id>
+ <phase>package</phase>
+ <goals>
+ <goal>report-only</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>make-assembly</id>
+ <phase>package</phase>
+ <goals>
+ <goal>attached</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-gpg-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>sign-artifacts</id>
+ <phase>verify</phase>
+ <goals>
+ <goal>sign</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+
+ <!-- Project Metadata -->
+ <url>https://opensaml.org/</url>
+
+ <inceptionYear>2006</inceptionYear>
+
+ <licenses>
+ <license>
+ <name>Apache 2</name>
+ <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+ <distribution>repo</distribution>
+ </license>
+ </licenses>
+
+ <organization>
+ <name>Internet2</name>
+ <url>http://www.internet2.edu/</url>
+ </organization>
+
+ <issueManagement>
+ <system>JIRA</system>
+ <url>http://bugs.internet2.edu/</url>
+ </issueManagement>
+
+ <mailingLists>
+ <mailingList>
+ <name>OpenSAML Users</name>
+ <subscribe>https://spaces.internet2.edu/display/OpenSAML/MailingList</subscribe>
+ <unsubscribe>https://spaces.internet2.edu/display/OpenSAML/MailingList</unsubscribe>
+ <post>mace-opensaml-users@internet2.edu</post>
+ <archive>https://mail.internet2.edu/wws/arc/mace-opensaml-users</archive>
+ <otherArchives>
+ <otherArchive>http://groups.google.com/group/opensaml-users</otherArchive>
+ </otherArchives>
+ </mailingList>
+ </mailingLists>
+
+ <scm>
+ <connection>scm:svn:https://svn.middleware.georgetown.edu/java-xmltooling/</connection>
+ <developerConnection>scm:svn:https://svn.middleware.georgetown.edu/java-xmltooling/</developerConnection>
+ <tag>HEAD</tag>
+ <url>http://svn.middleware.georgetown.edu/view/?root=java-xmltooling</url>
+ </scm>
+
+ <developers>
+ <developer>
+ <id>cantor</id>
+ <name>Scott Cantor</name>
+ <organization>The Ohio State University</organization>
+ <organizationUrl>http://www.ohio-state.edu/</organizationUrl>
+ <roles>
+ <role>developer</role>
+ </roles>
+ <timezone>-5</timezone>
+ </developer>
+ <developer>
+ <id>ndk</id>
+ <name>Nate Klingenstein</name>
+ <organization>Internet2</organization>
+ <organizationUrl>http://www.internet2.edu/</organizationUrl>
+ <roles>
+ <role>documentation</role>
+ </roles>
+ <timezone>-7</timezone>
+ </developer>
+ <developer>
+ <id>lajoie</id>
+ <name>Chad La Joie</name>
+ <organization>SWITCH</organization>
+ <organizationUrl>http://www.switch.ch/</organizationUrl>
+ <roles>
+ <role>developer</role>
+ <role>documentation</role>
+ </roles>
+ <timezone>+1</timezone>
+ </developer>
+ <developer>
+ <id>wnorris</id>
+ <name>Will Norris</name>
+ <organization>University of Southern California</organization>
+ <organizationUrl>http://www.usc.edu/</organizationUrl>
+ <roles>
+ <role>developer</role>
+ </roles>
+ <timezone>-8</timezone>
+ </developer>
+ <developer>
+ <id>rdw</id>
+ <name>Rod Widdowson</name>
+ <organization>University of Edinburgh</organization>
+ <organizationUrl>http://www.ed.ac.uk/</organizationUrl>
+ <roles>
+ <role>developer</role>
+ </roles>
+ <timezone>0</timezone>
+ </developer>
+ </developers>
+
+</project>
\ No newline at end of file
--- /dev/null
+<!-- Binary distribution, along with dependency jar files -->
+<assembly>
+ <id>bin</id>
+ <formats>
+ <format>tar.gz</format>
+ <format>zip</format>
+ </formats>
+
+ <dependencySets>
+ <dependencySet>
+ <outputDirectory>/lib</outputDirectory>
+ <excludes>
+ <exclude>org.apache.xerces:*</exclude>
+ <exclude>org.apache.xalan:*</exclude>
+ <exclude>org.apache.ant:*</exclude>
+ <exclude>ant-contrib:*</exclude>
+ </excludes>
+ <includes>
+ <include>*:jar:*</include>
+ </includes>
+ </dependencySet>
+ <dependencySet>
+ <outputDirectory>src/installer/lib</outputDirectory>
+ <includes>
+ <include>org.apache.ant:*</include>
+ <include>ant-contrib:*</include>
+ </includes>
+ </dependencySet>
+ <dependencySet>
+ <outputDirectory>/endorsed</outputDirectory>
+ <includes>
+ <include>org.apache.xerces:*</include>
+ <include>org.apache.xalan:*</include>
+ </includes>
+ </dependencySet>
+ </dependencySets>
+
+ <fileSets>
+ <!-- Copy up our installer srcipts into the root of the package -->
+ <fileSet>
+ <directory>src/installer/bash</directory>
+ <outputDirectory></outputDirectory>
+ <includes>
+ <include>*.sh</include>
+ </includes>
+ </fileSet>
+ <fileSet>
+ <directory>src/installer/bat</directory>
+ <outputDirectory></outputDirectory>
+ <includes>
+ <include>*.bat</include>
+ </includes>
+ </fileSet>
+
+ <!-- Keep our various resource files in the package -->
+ <fileSet>
+ <directory>src/installer/resources</directory>
+ <outputDirectory>/src/installer/resources</outputDirectory>
+ </fileSet>
+ <fileSet>
+ <directory>src/main/webapp</directory>
+ <outputDirectory>/src/main/webapp</outputDirectory>
+ </fileSet>
+
+ <!-- Docs -->
+ <fileSet>
+ <includes>
+ <include>RELEASE-NOTES*</include>
+ <include>LICENSE*</include>
+ </includes>
+ </fileSet>
+
+ <!-- Documentation -->
+ <fileSet>
+ <directory>doc/</directory>
+ <outputDirectory>/doc</outputDirectory>
+ </fileSet>
+ <fileSet>
+ <directory>target/site/apidocs</directory>
+ <outputDirectory>/doc/api</outputDirectory>
+ </fileSet>
+ <fileSet>
+ <directory>target/site/style</directory>
+ <outputDirectory>/doc/style</outputDirectory>
+ </fileSet>
+ <fileSet>
+ <directory>target/site/unitTest</directory>
+ <outputDirectory>/doc/unitTest</outputDirectory>
+ </fileSet>
+ <fileSet>
+ <directory>target/site/xref</directory>
+ <outputDirectory>/doc/src-xref</outputDirectory>
+ </fileSet>
+ </fileSets>
+
+</assembly>
\ No newline at end of file