<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>

   <parent>
      <groupId>org.rhq</groupId>
      <artifactId>rhq-parent</artifactId>
      <version>3.0.0</version>
   </parent>

   <groupId>org.rhq</groupId>
   <artifactId>safe-invoker</artifactId>
   <packaging>jar</packaging>

   <name>RHQ Enterprise Safe WebService Invoker</name>
   <description>A webservice invoker that safely calls returns ejb3 pojo's with lazy attributes</description>

   <scm>
      <connection>scm:git:ssh://git.fedorahosted.org/git/rhq.git/modules/enterprise/server/safe-invoker/</connection>
      <developerConnection>scm:git:ssh://git.fedorahosted.org/git/rhq.git/modules/enterprise/server/safe-invoker/</developerConnection>
   </scm>

   <properties>
      <scm.module.path>modules/enterprise/server/safe-invoker/</scm.module.path>
   </properties>

   <dependencies>

      <dependency>
         <groupId>org.jboss.jbossws</groupId>
         <artifactId>jbossws-native-core</artifactId>
         <version>${jbossws-native-dist.version}</version>
      </dependency>

      <dependency>
         <groupId>org.jboss</groupId>
         <artifactId>jbossws-spi</artifactId>
         <version>1.1.1.GA</version>
      </dependency>

      <dependency>
         <groupId>hibernate</groupId>
         <artifactId>hibernate3</artifactId>
         <!-- NOTE: The version is defined in the root POM's dependencyManagement section. -->
         <scope>provided</scope> <!-- by JBossAS -->
      </dependency>

   </dependencies>

</project>