<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.jboss.identity</groupId>
      <artifactId>jboss-identity-build-parent</artifactId>
      <version>1.0.0.alpha5</version>
      <relativePath>../parent</relativePath>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <artifactId>jboss-identity-build-openid</artifactId>
   <packaging>pom</packaging>
   <name>JBoss Identity dependency pack for OpenID</name>
   <url>http://labs.jboss.org/portal/jbossidentity/</url>
   <description>JBoss Identity build provides a collection of individual projects as a unified solution.</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>
   
   
   <dependencies>

      <dependency>
         <groupId>nekohtml</groupId>
         <artifactId>nekohtml</artifactId>
         <version>1.9.12</version>
      </dependency>
      <dependency>
         <groupId>org.openid4java</groupId>
         <artifactId>openid4java</artifactId>
         <version>0.9.5</version>
      </dependency>
      <dependency>
         <groupId>apache-logging</groupId>
         <artifactId>commons-logging-api</artifactId>
         <version>1.0.3</version>
      </dependency>
      <dependency>
         <groupId>org.apache.commons</groupId>
         <artifactId>commons-codec</artifactId>
         <version>1.3</version>
      </dependency>
      <dependency>
         <groupId>org.apache</groupId>
         <artifactId>httpclient</artifactId>
         <version>3.0.1</version>
      </dependency>
      <dependency>
         <groupId>jstl</groupId>
         <artifactId>jstl</artifactId>
         <version>1.2</version>
      </dependency>
   </dependencies>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-assembly-plugin</artifactId>
        <version>2.2-beta-3</version>
        <executions>
          <execution>
            <id>bundle-project-sources</id>
            <phase>package</phase>
            <goals>
              <goal>single</goal>
            </goals>
            <configuration>
	      <archive>
               <manifestEntries>
                 <Specification-Title>JBoss Identity</Specification-Title>
                 <Specification-Version>${project.version}</Specification-Version>
                 <Specification-Vendor>Red Hat Middleware LLC</Specification-Vendor>
                 <Implementation-Title>JBoss Identity</Implementation-Title>
                 <Implementation-Version>${project.version}</Implementation-Version>
                 <Implementation-VendorId>org.jboss.security</Implementation-VendorId>
                 <Implementation-Vendor>Red Hat Middleware LLC</Implementation-Vendor>
                 <Implementation-URL>http://labs.jboss.org/portal/jbosssecurity/</Implementation-URL>
               </manifestEntries>
              </archive>
              <descriptors>
                 <descriptor>bin.xml</descriptor>
              </descriptors>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>
