fullstop-plugin-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.zalando.stups</groupId> <artifactId>fullstop-plugin-api</artifactId> <version>1.1.0</version> </dependency>
<!--~ ~ Copyright 2015 Zalando SE ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. --> <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.zalando.stups</groupId> <artifactId>fullstop-parent</artifactId> <version>2</version> <relativePath /> </parent> <artifactId>fullstop-plugin-api</artifactId> <name>Fullstop -- Plugin API</name> <version>1.1.0</version> <!-- <properties> <main.basedir>${basedir}/..</main.basedir> </properties> --> <dependencies> <dependency> <groupId>org.springframework.plugin</groupId> <artifactId>spring-plugin-core</artifactId> </dependency> <dependency> <groupId>org.springframework.plugin</groupId> <artifactId>spring-plugin-metadata</artifactId> <version>1.2.0.RELEASE</version> </dependency> <dependency> <groupId>org.zalando.stups</groupId> <artifactId>aws-cloudtrail-processing-library</artifactId> <exclusions> <exclusion> <artifactId>aws-java-sdk</artifactId> <groupId>com.amazonaws</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> </plugin> </plugins> </build> <scm> <url>https://github.com/zalando-stups/fullstop.git</url> <connection>scm:git:git@github.com:zalando-stups/fullstop.git</connection> <developerConnection>scm:git:git@github.com:zalando-stups/fullstop.git</developerConnection> <tag>fullstop-plugin-api-1.1.0</tag> </scm> </project>