secgateway/ControlPlatform/aaa/dependency-check/pom.xml

155 lines
5.3 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright © 2018 Red Hat, Inc. and others.
This program and the accompanying materials are made available under the
terms of the Eclipse Public License v1.0 which accompanies this distribution,
and is available at http://www.eclipse.org/legal/epl-v10.html
-->
<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>org.opendaylight.aaa</groupId>
<artifactId>aaa-artifacts</artifactId>
<version>0.7.4</version>
<relativePath>../artifacts</relativePath>
</parent>
<groupId>org.opendaylight.aaa</groupId>
<artifactId>dependency-check</artifactId>
<version>0.7.4</version>
<name>ODL :: aaa :: ${project.artifactId}</name>
<!--
This POM serves to check that all the dependencies in AAAs dependency management are available.
It should contain all the dependencies in management.
-->
<!--
To simplify maintenance, all dependencies are listed in alphabetical order of groupId and artifactId.
This list of dependencies can be updated using the update-dependencies script.
-->
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>aaa-authn-api</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>aaa-cert</artifactId>
<classifier>config</classifier>
<type>xml</type>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>aaa-cert</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>aaa-cli</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>aaa-cli-jar</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>aaa-encrypt-service</artifactId>
<classifier>config</classifier>
<type>xml</type>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>aaa-encrypt-service</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>aaa-filterchain</artifactId>
<classifier>config</classifier>
<type>cfg</type>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>aaa-filterchain</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>aaa-shiro-act</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>aaa-shiro-api</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>aaa-shiro</artifactId>
<classifier>aaa-app-config</classifier>
<type>xml</type>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>aaa-shiro</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>features-aaa</artifactId>
<classifier>features</classifier>
<type>xml</type>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>odl-aaa-api</artifactId>
<classifier>features</classifier>
<type>xml</type>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>odl-aaa-cert</artifactId>
<classifier>features</classifier>
<type>xml</type>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>odl-aaa-cli</artifactId>
<classifier>features</classifier>
<type>xml</type>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>odl-aaa-encryption-service</artifactId>
<classifier>features</classifier>
<type>xml</type>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>odl-aaa-shiro</artifactId>
<classifier>features</classifier>
<type>xml</type>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>