security.security-rest-api.3.0.source-code.pom.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of security-rest-api Show documentation
Show all versions of security-rest-api Show documentation
Security CRUD operations published over REST, using the plexus-restlet-bridge and PlexusResources.
<!-- Copyright (c) 2007-2012 Sonatype, Inc. All rights reserved. This program is licensed to you under the Apache License Version 2.0, and you may not use this file except in compliance with the Apache License Version 2.0. You may obtain a copy of the Apache License Version 2.0 at http://www.apache.org/licenses/LICENSE-2.0. Unless required by applicable law or agreed to in writing, software distributed under the Apache License Version 2.0 is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the Apache License Version 2.0 for the specific language governing permissions and limitations there under. --> <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> <parent> <artifactId>security-rest</artifactId> <groupId>org.sonatype.security</groupId> <version>3.0</version> </parent> <artifactId>security-rest-api</artifactId> <description>Security CRUD operations published over REST, using the plexus-restlet-bridge and PlexusResources.</description> <properties> <plexus-restlet-bridge.version>1.24</plexus-restlet-bridge.version> </properties> <dependencies> <dependency> <groupId>org.sonatype.sisu</groupId> <artifactId>sisu-inject-plexus</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.sonatype.plexus</groupId> <artifactId>plexus-restlet-bridge</artifactId> <version>${plexus-restlet-bridge.version}</version> <exclusions> <exclusion> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-container-default</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.sonatype.security</groupId> <artifactId>security-system</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.sonatype.security.realms</groupId> <artifactId>security-xml-realm</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.sonatype.security</groupId> <artifactId>security-rest-model</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.sonatype.security.realms</groupId> <artifactId>security-xml-realm</artifactId> <version>${project.version}</version> <scope>test</scope> <classifier>tests</classifier> </dependency> <dependency> <groupId>org.sonatype.security</groupId> <artifactId>security-web</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <!-- Using a simple jetty server --> <dependency> <groupId>org.sonatype.plexus</groupId> <artifactId>plexus-jetty-testsuite</artifactId> <version>1.5</version> <scope>test</scope> <exclusions> <exclusion> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-container-default</artifactId> </exclusion> </exclusions> </dependency> <!-- Enunciate --> <dependency> <groupId>org.codehaus.enunciate</groupId> <artifactId>enunciate-core</artifactId> <version>${enunciate.version}</version> <scope>provided</scope> <exclusions> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> <exclusion> <groupId>com.sun</groupId> <artifactId>tools</artifactId> </exclusion> </exclusions> </dependency> <!-- A backend for testing --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>edu.umd.cs.mtc</groupId> <artifactId>multithreadedtc</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <executions> <execution> <goals> <goal>enforce</goal> </goals> <!-- we don't need these until JUST BEFORE integration testing, so moving to a later phase to get out of the way of m2eclipse. --> <phase>package</phase> <id>enforce</id> <configuration> <rules> <bannedDependencies> <excludes> <exclude>org.codehaus.plexus:plexus-container-default:*</exclude> </excludes> <message>The Plexus Container is banned, use org.sonatype.sisu:sisu-inject-plexus. </message> </bannedDependencies> </rules> <fail>true</fail> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-component-metadata</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <excludes> <exclude>**/SampleAppTest*</exclude> </excludes> </configuration> </plugin> </plugins> </build> </project>