atlassian-util-concurrent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.atlassian.util.concurrent</groupId> <artifactId>atlassian-util-concurrent</artifactId> <version>4.0.1</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/maven-v4_0_0.xsd"> <parent> <groupId>com.atlassian.pom</groupId> <artifactId>central-pom</artifactId> <version>4.0.5</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>io.atlassian.util.concurrent</groupId> <artifactId>atlassian-util-concurrent</artifactId> <name>Atlassian Concurrency Utilities</name> <version>4.0.1</version> <description>This project contains utility classes that are used by various products and projects inside Atlassian and may have some utility to the world at large.</description> <url>https://labs.atlassian.com/wiki/display/CONCURRENT/Home</url> <issueManagement> <system>JIRA</system> <url>http://labs.atlassian.com/browse/CONCURRENT</url> </issueManagement> <developers> <developer> <name>Jed Wesley-Smith</name> <email>jed@atlassian.com</email> </developer> </developers> <scm> <connection>scm:git:git@bitbucket.org:atlassian/atlassian-util-concurrent.git</connection> <developerConnection>scm:git:git@bitbucket.org:atlassian/atlassian-util-concurrent.git</developerConnection> <url>https://bitbucket.org/atlassian/atlassian-util-concurrent</url> <tag>atlassian-util-concurrent-4.0.1</tag> </scm> <licenses> <license> <name>Apache 2</name> <distribution>repo</distribution> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <build> <plugins> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>2.5.3</version> <executions> <execution> <id>bundle-manifest</id> <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> </execution> </executions> <configuration> <instructions> <Export-Package> io.atlassian.util.concurrent.*;version="${project.version}" </Export-Package> <Import-Package> * </Import-Package> </instructions> </configuration> </plugin> <plugin> <groupId>net.revelc.code</groupId> <artifactId>formatter-maven-plugin</artifactId> <version>0.5.2</version> <executions> <execution> <phase>process-sources</phase> <goals> <goal>format</goal> </goals> </execution> </executions> <configuration> <configFile>${project.basedir}/src/eclipse/code-format.xml</configFile> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>net.jcip</groupId> <artifactId>jcip-annotations</artifactId> <version>1.0</version> <optional>true</optional> </dependency> <!-- Test dependencies --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> <version>1.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> <version>1.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>1.9.5</version> <scope>test</scope> <exclusions> <exclusion> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>1.4</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.4</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>annotations</artifactId> <version>3.0.0</version> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>3.0.0</version> <scope>provided</scope> <optional>true</optional> </dependency> </dependencies> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <jdkLevel>1.8</jdkLevel> <maven.compiler.source>8</maven.compiler.source> <maven.compiler.target>8</maven.compiler.target> </properties> <distributionManagement> <site> <id>atlassian-documentation</id> <url>scpexe://docs-app.internal.atlassian.com/var/www/domains/docs.atlassian.com/${project.artifactId}/${project.version}</url> </site> </distributionManagement> </project>