<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>org.apache.jackrabbit</groupId>
  <artifactId>SimpleJbossAccessManager</artifactId>
  <packaging>jar</packaging>
  <name>Simple role-based mapper and Jboss Access Manager for Jackrabbit</name>
  <version>1.0-SNAPSHOT</version>
  <description></description>
  
  
<build>
<plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <target>1.5</target>
          <source>1.5</source>
        </configuration>
      </plugin>
</plugins>
</build>  
    <dependencies>
    <!-- 
    note that jackrabbit-core pom.xml lists jsr170/jcr-1.0 dependency
    instead of javax.jcr/jcr-1.0 dependency. Require
    local/manual fix. -->
  	<dependency>
	    <groupId>org.apache.jackrabbit</groupId>
	    <artifactId>jackrabbit-core</artifactId>
	    <version>1.1</version>
	</dependency>

  </dependencies>




</project>