<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/xsd/maven-4.0.0.xsd">
    
    <modelVersion>4.0.0</modelVersion>
    
    <groupId>com.danhaywood.mavendeps</groupId>
    <artifactId>isistesting</artifactId>
    <version>0.0.2</version>

    <packaging>pom</packaging>
    
    <name>${project.groupId}:${project.artifactId}</name>
    <description>
        Defines a module that can be used as a single dependency for a set of common testing libraries.
    </description>
    
    <url>https://github.com/danhaywood/java-mavendeps-isistesting</url>
    <licenses>
        <license>
            <name>The Apache Software License, Version 2.0</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
            <distribution>repo</distribution>
        </license>
    </licenses>
    <scm>
        <connection>scm:git:git@github.com:danhaywood/java-mavendeps-isistesting.git</connection>
        <developerConnection>scm:git:git@github.com:danhaywood/java-mavendeps-isistesting.git</developerConnection>
        <url>git@github.com:danhaywood/java-mavendeps-isistesting.git</url>
    </scm>
    <developers>
        <developer>
            <id>danhaywood</id>
            <name>Dan Haywood</name>
            <email>dan@haywood-associates.co.uk</email>
        </developer>
    </developers>    

    <properties>
        <isis.version>1.13.1</isis.version>
		<assertj-core.version>3.6.0</assertj-core.version>
        <hamcrest.version>1.3</hamcrest.version>
        <objenesis.version>2.2</objenesis.version>
    </properties>
        
    <profiles>
        <profile>
            <id>danhaywood-mavendeps-isistesting</id>
            <activation>
                <property>
                    <name>!skip.danhaywood-mavendeps-isistesting</name>
                </property>
            </activation>
		
			<dependencies>
				<dependency>
					<groupId>org.apache.isis.core</groupId>
					<artifactId>isis-core-unittestsupport</artifactId>
					<version>${isis.version}</version>
				</dependency>
				<dependency>
					<groupId>org.apache.isis.core</groupId>
					<artifactId>isis-core-integtestsupport</artifactId>
					<version>${isis.version}</version>
				</dependency>
				<dependency>
					<groupId>org.apache.isis.core</groupId>
					<artifactId>isis-core-specsupport</artifactId>
					<version>${isis.version}</version>
				</dependency>

				<dependency>
					<groupId>org.objenesis</groupId>
					<artifactId>objenesis</artifactId>
					<version>${objenesis.version}</version>
				</dependency>
				<dependency>
					<groupId>org.hamcrest</groupId>
					<artifactId>hamcrest-library</artifactId>
					<version>${hamcrest.version}</version>
				</dependency>
				<dependency>
					<groupId>org.assertj</groupId>
					<artifactId>assertj-core</artifactId>
					<version>${assertj-core.version}</version>
				</dependency>
			</dependencies>

        </profile>
        <profile>
            <id>danhaywood-mavenmixin-sonatyperelease</id>
            <!-- 
            this profile is not part of the mixin, but is required to be defined as a profile
            in order to release this mixin pom.xml to Maven Central repo
            -->
            <build>
                <plugins>
                    <!-- http://central.sonatype.org/pages/apache-maven.html -->
                    <plugin>
                        <groupId>org.sonatype.plugins</groupId>
                        <artifactId>nexus-staging-maven-plugin</artifactId>
                        <version>1.6.2</version>
                        <extensions>true</extensions>
                        <configuration>
                            <serverId>ossrh</serverId>
                            <nexusUrl>https://oss.sonatype.org/</nexusUrl>
                            <autoReleaseAfterClose>true</autoReleaseAfterClose>
                        </configuration>
                    </plugin>
                    <!-- http://kohsuke.org/pgp-maven-plugin/secretkey.html instead of maven-gpg-plugin -->
                    <plugin>
                        <groupId>org.kohsuke</groupId>
                        <artifactId>pgp-maven-plugin</artifactId>
                        <version>1.1</version>
                        <executions>
                            <execution>
                                <id>sign-artifacts</id>
                                <phase>verify</phase>
                                <goals>
                                    <goal>sign</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
            <distributionManagement>
                <snapshotRepository>
                    <id>ossrh</id>
                    <url>https://oss.sonatype.org/content/repositories/snapshots</url>
                </snapshotRepository>
            </distributionManagement>
        </profile>
    </profiles>


    
</project>
