Task Scanner Plug-in.
This plug-in scans the workspace files for open tasks and generates a trend report..
Here is the list of declaration for tasks. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.jvnet.hudson.plugins</groupId> <artifactId>tasks</artifactId> <version>4.4</version> </dependency>
If you think this Maven repository POM file listing for tasks is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:MIT licenseName:LGPLName:BSD license.
The tasks-4.4 has 2 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Library | analysis-core 1.5 This plug-in provides utilities for the static code analysis plug-ins. | 5 |
Testing | analysis-test 1.3 This plug-in provides test utilities for the static code analysis plug-ins. | 9 |
The following packages are defined in the tasks-4.4.jar
hudson.plugins.tasks hudson.plugins.tasks.dashboard hudson.plugins.tasks.parser
Here is the content of the POM file.
<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.jvnet.hudson.plugins</groupId> <artifactId>analysis-pom</artifactId> <version>1.2</version> <relativePath>../analysis-pom/pom.xml</relativePath> </parent> <artifactId>tasks</artifactId> <packaging>hpi</packaging> <name>Task Scanner Plug-in</name> <version>4.4</version> <url>http://wiki.hudson-ci.org/display/HUDSON/Task+Scanner+Plugin</url> <description>This plug-in scans the workspace files for open tasks and generates a trend report.</description> <licenses> <license> <name>MIT license</name> <comments>All source code is under the MIT license.</comments> </license> <license> <name>LGPL</name> <comments>All icons are made by Carlitus (Carles Carbonell Bernado) and are under the LGPL.</comments> </license> <license> <name>BSD license</name> <comments>All YUI source code is under the BSD license.</comments> </license> </licenses> <dependencies> <dependency> <groupId>org.jvnet.hudson.plugins</groupId> <artifactId>analysis-core</artifactId> <version>1.5</version> </dependency> <dependency> <groupId>org.jvnet.hudson.plugins</groupId> <artifactId>analysis-test</artifactId> <version>1.3</version> <scope>test</scope> </dependency> </dependencies> <scm> <connection>scm:svn:https://guest@svn.dev.java.net/svn/hudson/tags/tasks-4.4</connection> <developerConnection>scm:svn:https://svn.dev.java.net/svn/hudson/tags/tasks-4.4</developerConnection> <url>https://hudson.dev.java.net/source/browse/hudson/tags/tasks-4.4</url> </scm> </project>