<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.javalite</groupId>
    <artifactId>activejdbc-root</artifactId>
    <packaging>pom</packaging>
    <version>1.2</version>
    <name>ActiveJDBC Framework Root</name>
    <url>http://code.google.com/p/activejdbc/</url>

    <parent>
        <groupId>org.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>7</version>
    </parent>

    <scm>
       <connection>scm:svn:https://activejdbc.googlecode.com/svn/tags/activejdbc-root-1.2</connection>
       <developerConnection>scm:svn:https://activejdbc.googlecode.com/svn/tags/activejdbc-root-1.2</developerConnection>
       <url>https://activejdbc.googlecode.com/svn/tags/activejdbc-root-1.2</url>
     </scm>

    <build>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.3.2</version>
                <configuration>
                    <source>1.5</source>
                    <target>1.5</target>
                    <fork>true</fork>
                    <meminitial>128m</meminitial>
                    <maxmem>512m</maxmem>
                </configuration>
            </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>
    <modules>
        <module>activejdbc</module>
    </modules>
    <dependencyManagement>
        <dependencies>
            <dependency><groupId>junit</groupId>        <artifactId>junit</artifactId><version>4.8.1</version><scope>test</scope></dependency>
            <dependency><groupId>javassist</groupId>    <artifactId>javassist</artifactId><version>3.8.0.GA</version><scope>provided</scope></dependency>
            <dependency><groupId>javax.servlet</groupId><artifactId>servlet-api</artifactId><version>2.5</version><scope>provided</scope></dependency>
            <dependency><groupId>org.slf4j</groupId>    <artifactId>slf4j-api</artifactId><version>1.5.10</version></dependency>
            <dependency><groupId>org.slf4j</groupId>    <artifactId>jcl-over-slf4j</artifactId><version>1.5.10</version></dependency>
            <dependency><groupId>org.slf4j</groupId>    <artifactId>slf4j-simple</artifactId><version>1.5.10</version><scope>test</scope></dependency>
            <dependency><groupId>dom4j</groupId>        <artifactId>dom4j</artifactId><version>1.6.1</version></dependency>
            <dependency><groupId>jaxen</groupId>        <artifactId>jaxen</artifactId><version>1.1.1</version></dependency>
            <dependency><groupId>opensymphony</groupId> <artifactId>oscache</artifactId><version>2.4</version>
                <exclusions>
                  <exclusion>
                    <groupId>javax.jms</groupId>
                    <artifactId>jms</artifactId>
                  </exclusion>
                    <exclusion>
                        <groupId>javax.servlet</groupId>
                        <artifactId>servlet-api</artifactId>
                    </exclusion>
                    <exclusion>
                        <groupId>org.hibernate</groupId>
                        <artifactId>hibernate</artifactId>
                    </exclusion>
                  <exclusion>
                    <groupId>commons-logging</groupId>
                    <artifactId>commons-logging</artifactId>
                  </exclusion>
                </exclusions>
            </dependency>

        </dependencies>
    </dependencyManagement>

    <pluginRepositories>
        <pluginRepository>
			<id>sonatype-nexus-plugin-snapshots</id>
			<name>Sonatype Nexus Plugin Snapshots</name>
			<url>https://oss.sonatype.org/content/repositories/snapshots</url>
			<releases>
				<enabled>false</enabled>
			</releases>
			<snapshots>
				<enabled>true</enabled>
			</snapshots>
		</pluginRepository>
    </pluginRepositories>
    

</project>
