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

	<parent>
		<groupId>edu.wisc.cae.caeauth</groupId>
		<artifactId>caeauth-parent</artifactId>
		<version>1.0.0-SNAPSHOT</version>
	</parent>
		
	<artifactId>caeauth-internals</artifactId>	
	<packaging>pom</packaging>  	
  
	<name>caeauth-internals</name>
	<description>Parent project for internal (not customer facing) projects</description>
  
	<modules>
		<module>caeauth-internal-model</module>
		<module>caeauth-internal-api</module>
		<module>caeauth-internal-spi</module>
	</modules>

    <scm>
        <connection>scm:svn:https://subversion.cae.wisc.edu/svn/cae-shared-tools/caeauth-internals/trunk</connection>
        <developerConnection>scm:svn:https://subversion.cae.wisc.edu/svn/cae-shared-tools/caeauth-internals/trunk</developerConnection>
        <url>https://subversion.cae.wisc.edu/svn/cae-shared-tools/caeauth-internals/trunk</url>
    </scm>
	
	<distributionManagement>
		<repository>
            <id>code.cae-public-releases</id>
            <url>sftp://best-tux.cae.wisc.edu/home/vhosts/schema.cae.wisc.edu/html/maven/content/repositories/public-releases/</url>
        </repository>
        <snapshotRepository>
            <id>code.cae-public-snapshots</id>
            <url>sftp://best-tux.cae.wisc.edu/home/vhosts/schema.cae.wisc.edu/html/maven/content/repositories/public-snapshots/</url>
        </snapshotRepository>  
		<site>
			<id>schema.cae.wisc.edu</id>
			<url>scp://best-tux.cae.wisc.edu/home/vhosts/schema.cae.wisc.edu/html/docs/internals</url>
		</site>            
    </distributionManagement>
    
	<repositories>
        <repository>
            <id>code.cae-public-releases</id>
            <url>https://schema.cae.wisc.edu/maven/content/repositories/public-releases/</url>
        </repository>
        <repository>
            <id>code.cae-public-snapshots</id>
            <url>https://schema.cae.wisc.edu/maven/content/repositories/public-snapshots/</url>
            <releases><enabled>false</enabled></releases>
            <snapshots><enabled>true</enabled></snapshots>
        </repository>
	</repositories>
    
	<build>
		<pluginManagement>
			<plugins>
				<plugin>
					<groupId>com.mycila.maven-license-plugin</groupId>
					<artifactId>maven-license-plugin</artifactId>
					<configuration>
						<excludes combine.children="append">
							<exclude>**/src/main/resources/**/queryLibrary/**/*.xml</exclude>
							<exclude>**/build.xml</exclude>
							<exclude>**/bootstrap/*.xml</exclude>
						</excludes>
					</configuration>
				</plugin>
				<plugin>
					<groupId>org.jasig.maven</groupId>
					<artifactId>maven-notice-plugin</artifactId>
					<configuration>
						<licenseMapping>
							<param>license-mappings.xml</param>
						</licenseMapping>
					</configuration>
					<executions>
						<execution>
							<id>default-cli</id>
							<phase>none</phase>
						</execution>
					</executions>
				</plugin>
			</plugins>
		</pluginManagement>
	</build>
	    
</project>
