Maven Repository - POM file for Library monitorablefutures 1.5 1.5

Summary

monitorablefutures.

Futures as in java.util.concurrent, but with the ability to report progress..

Declaration

Here is the list of declaration for monitorablefutures. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>com.github.rickyclarkson</groupId>
   <artifactId>monitorablefutures</artifactId>
   <version>1.5</version>
</dependency>

If you think this Maven repository POM file listing for monitorablefutures is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

License

Name:BSD-2-Clause
URL: BSD-2-Clause.txt.





Depends on

The monitorablefutures-1.5 has 1 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
JUnitjunit 4.8.1
JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java.
1256

Plugin

The following plugins are used in the monitorablefutures-1.5.jar

  1. maven-compiler-plugin
  2. maven-release-plugin

Packages

The following packages are defined in the monitorablefutures-1.5.jar

com.github.rickyclarkson.monitorablefutures

POM File Source

Here is the content of the POM file.

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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>
        <groupId>org.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>7</version>
    </parent>
  <groupId>com.github.rickyclarkson</groupId>
  <artifactId>monitorablefutures</artifactId>
  <version>1.5</version>
    <packaging>jar</packaging>
    <name>monitorablefutures</name>
    <description>Futures as in java.util.concurrent, but with the ability to report progress.</description>
    <url>http://github.com/rickyclarkson/monitorablefutures</url>
    <licenses>
        <license>
            <name>BSD-2-Clause</name>
            <url>BSD-2-Clause.txt</url>
            <distribution>repo</distribution>
            <comments>A business-friendly OSS license</comments>
        </license>
    </licenses>
    <scm>
        <connection>scm:git:ssh://git@github.com/rickyclarkson/monitorablefutures.git</connection>
        <developerConnection>scm:git:ssh://git@github.com/rickyclarkson/monitorablefutures.git</developerConnection>
        <url>http://github.com/rickyclarkson/monitorablefutures</url>
    <tag>monitorablefutures-1.5</tag>
  </scm>
    
    <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.8.1</version>
      <scope>test</scope>
    </dependency>
    </dependencies>
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>2.1</version>
        <configuration>
          <source>1.6</source>
          <target>1.6</target>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-release-plugin</artifactId>
        <version>2.3.2</version>
      </plugin>
    </plugins>
    </build>
</project>