Reverb.
Effective Utilities.
Here is the list of declaration for reverb. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.eiichiro.reverb</groupId> <artifactId>reverb</artifactId> <version>1.2.0</version> </dependency>
If you think this Maven repository POM file listing for reverb is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.
The reverb-1.2.0 has 1 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 |
---|---|---|
JUnit | junit 4.8.2 JUnit is a regression testing framework. It is used by the developer who implements unit tests in Java. | 919 |
The following plugins are used in the reverb-1.2.0.jar
The following packages are defined in the reverb-1.2.0.jar
org.eiichiro.reverb org.eiichiro.reverb.diagnostics org.eiichiro.reverb.lang org.eiichiro.reverb.reflection org.eiichiro.reverb.system org.eiichiro.reverb.time
Here is the content of the POM file.
<!-- * Copyright (C) 2009-2012 Eiichiro Uchiumi. All Rights Reserved. --> <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"> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.eiichiro.reverb</groupId> <artifactId>reverb</artifactId> <version>1.2.0</version> <packaging>jar</packaging> <name>Reverb</name> <description>Effective Utilities</description> <url>http://reverb.eiichiro.org/</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git@github.com:eiichiro/reverb.git</connection> <url>scm:git:git@github.com:eiichiro/reverb.git</url> <developerConnection>scm:git:git@github.com:eiichiro/reverb.git</developerConnection> </scm> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.8</version> <configuration> <bottom><![CDATA[Copyright ? 2009-2012 <a href="mailto:eiichiro@eiichiro.org">Eiichiro Uchiumi</a>. All Rights Reserved.]]></bottom> <doctitle>${project.name} ${project.version} API Specifications</doctitle> <source>1.6</source> </configuration> </plugin> </plugins> <pluginManagement> <plugins> <!-- This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself. --> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <versionRange>1.0</versionRange> <goals> <goal>enforce</goal> </goals> </pluginExecutionFilter> <action> <ignore /> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.2</version> <type>jar</type> <scope>test</scope> </dependency> </dependencies> </project>