ratelimit-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.atlassian.ratelimit</groupId> <artifactId>ratelimit-parent</artifactId> <version>0.10</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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>com.atlassian.pom</groupId> <artifactId>central-pom</artifactId> <version>5.0.20</version> </parent> <groupId>com.atlassian.ratelimit</groupId> <artifactId>ratelimit-parent</artifactId> <packaging>pom</packaging> <version>0.10</version> <name>Rate Limit - Parent POM</name> <description>Java library that implements Rate Limit</description> <organization> <name>Atlassian</name> <url>https://www.atlassian.com/</url> </organization> <scm> <connection>scm:git:ssh://git@bitbucket.org/atlassian/atlassian-ratelimit.git</connection> <developerConnection>scm:git:ssh://git@bitbucket.org/atlassian/atlassian-ratelimit.git</developerConnection> <url>https://bitbucket.org/atlassian/atlassian-ratelimit</url> <tag>ratelimit-parent-0.10</tag> </scm> <modules> <module>core</module> <module>asap</module> <module>jaxrs2</module> <module>javax</module> <module>redis</module> <module>all</module> </modules> <properties> <slf4j.version>1.7.18</slf4j.version> </properties> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>annotations</artifactId> <version>3.0.1</version> <optional>true</optional> </dependency> <!-- test dependencies --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>1.10.19</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>${slf4j.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>2.4.3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.4</version> </plugin> </plugins> </pluginManagement> </build> </project>