Skip to content
Permalink
c30bd08709
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
1 contributor

Users who have contributed to this file

219 lines (192 sloc) 7.2 KB
<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>net.shibboleth</groupId>
<artifactId>parent-v3</artifactId>
<version>10</version>
</parent>
<groupId>uk.org.iay.incommon</groupId>
<artifactId>inc-mda</artifactId>
<version>0.9.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>InCommon Aggregator Beans</name>
<description>
Metadata aggregator beans for the InCommon federation.
</description>
<inceptionYear>2017</inceptionYear>
<properties>
<mda.version>0.9.2</mda.version>
<ukf-mda.version>0.9.4</ukf-mda.version>
<java-support.version>7.2.0</java-support.version>
<checkstyle.version>7.6</checkstyle.version>
</properties>
<dependencies>
<!-- Compile dependencies -->
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>net.shibboleth.metadata</groupId>
<artifactId>aggregator-pipeline</artifactId>
<version>${mda.version}</version>
</dependency>
<dependency>
<groupId>net.shibboleth.utilities</groupId>
<artifactId>java-support</artifactId>
<version>${java-support.version}</version>
</dependency>
<!-- Provided Dependencies -->
<!-- Runtime dependencies -->
<!-- Test dependencies -->
<dependency>
<groupId>uk.org.ukfederation</groupId>
<artifactId>ukf-mda</artifactId>
<version>${ukf-mda.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${spring.groupId}</groupId>
<artifactId>spring-beans</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${spring.groupId}</groupId>
<artifactId>spring-context</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>${spring.groupId}</groupId>
<artifactId>spring-core</artifactId>
<scope>test</scope>
</dependency>
<!-- Managed Dependencies -->
</dependencies>
<build>
<plugins>
<!--
Checkstyle configuration for checkstyle:* goals called directly
from the command line.
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<configLocation>${checkstyle.configLocation}</configLocation>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<dependencies>
<!-- add optional Markdown processor -->
<dependency>
<groupId>org.apache.maven.doxia</groupId>
<artifactId>doxia-module-markdown</artifactId>
<version>1.7</version>
</dependency>
<!-- support DAV protocol for site deploy -->
<dependency>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-webdav-jackrabbit</artifactId>
<version>2.10</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>${checkstyle-plugin.version}</version>
<configuration>
<configLocation>${checkstyle.configLocation}</configLocation>
</configuration>
</plugin>
</plugins>
</reporting>
<profiles>
<profile>
<id>lint</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
<debug>true</debug>
<compilerArgument>-Xlint:unchecked</compilerArgument>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<repositories>
<repository>
<id>shib-release</id>
<url>https://build.shibboleth.net/nexus/content/groups/public</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>shib-snapshot</id>
<url>https://build.shibboleth.net/nexus/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
</repository>
<repository>
<id>ukf-release</id>
<url>https://apps.iay.org.uk/nexus/content/repositories/ukf</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>ukf-snapshot</id>
<url>https://apps.iay.org.uk/nexus/content/repositories/ukf-snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
</repository>
</repositories>
<scm>
<connection>scm:git:https://gitlub.iay.org.uk/incommon/inc-mda.git</connection>
<developerConnection>scm:git:ssh:git@gitlab.iay.org.uk:incommon/inc-mda.git</developerConnection>
<url>https://gitlab.iay.org.uk/incommon/inc-mda</url>
</scm>
<developers>
<developer>
<id>iay</id>
<name>Ian Young</name>
<organizationUrl>http://iay.org.uk/</organizationUrl>
<timezone>0</timezone>
</developer>
</developers>
<distributionManagement>
<repository>
<id>iay-release</id>
<url>https://apps.iay.org.uk/nexus/content/repositories/releases</url>
</repository>
<snapshotRepository>
<id>iay-snapshot</id>
<url>https://apps.iay.org.uk/nexus/content/repositories/snapshots</url>
</snapshotRepository>
<site>
<id>iay-site</id>
<url>dav:https://apps.iay.org.uk/nexus/content/sites/site/${project.artifactId}/${project.version}/</url>
</site>
</distributionManagement>
</project>