dasein-util.
Utilities for writing Java applications.
Here is the list of declaration for dasein-util. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.dasein</groupId> <artifactId>dasein-util</artifactId> <version>2013.02</version> </dependency>
If you think this Maven repository POM file listing for dasein-util is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:Apache License 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.html.
The dasein-util-2013.02 has 5 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.9 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. | 117 |
Log | log4j 1.2.17 Apache Log4j 1.2 | 440 |
Testing Coding Style | jsr305 2.0.0 JSR305 Annotations for Findbugs | 79 |
The following table lists the most popular artifacts which are depending on dasein-util-2013.02. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Testing | dasein-cloud-test 2014.11.1 Unit tests for testing implementations of the Dasein Cloud API. | 21 |
Testing | dasein-cloud-test 2013.07.1 Unit tests for testing implementations of the Dasein Cloud API. | 12 |
The following plugins are used in the dasein-util-2013.02.jar
The following packages are defined in the dasein-util-2013.02.jar
org.dasein.attributes org.dasein.attributes.filter org.dasein.attributes.types org.dasein.examples.jiterator org.dasein.examples.uom org.dasein.media org.dasein.media.io org.dasein.net org.dasein.net.jsp org.dasein.net.jsp.date org.dasein.net.jsp.util org.dasein.util org.dasein.util.uom org.dasein.util.uom.area org.dasein.util.uom.length org.dasein.util.uom.storage org.dasein.util.uom.time
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/xsd/maven-4.0.0.xsd"> <!-- Copyright (C) 1998-2012 enStratus Networks Inc (http://www.enstratus.com) ==================================================================== Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==================================================================== --> <modelVersion>4.0.0</modelVersion> <groupId>org.dasein</groupId> <artifactId>dasein-util</artifactId> <version>2013.02</version> <name>dasein-util</name> <description> Utilities for writing Java applications </description> <url>https://github.com/greese/dasein-util</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <licenses> <license> <name>Apache License 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.html</url> </license> </licenses> <organization> <name>enStratus Networks Inc</name> <url>http://www.enstratus.com</url> </organization> <scm> <connection>scm:git:git://github.com/greese/dasein-util.git</connection> <developerConnection>scm:git:ssh://git@github.com/greese/dasein-util.git</developerConnection> <url>http://github.com/greese/dasein-util</url> </scm> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>5</version> </parent> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.9</version> <scope>test</scope> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.17</version> <scope>compile</scope> <optional>false</optional> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>jsp-api</artifactId> <version>2.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>2.0.0</version> <type>jar</type> <scope>compile</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.0.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.7</version> <executions> <execution> <id>javadoc</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <encoding>utf-8</encoding> <quiet>true</quiet> <links> <link>http://java.sun.com/javase/6/docs/api/</link> <link>http://java.sun.com/javaee/6/docs/api/</link> </links> <stylesheetfile>dasein-javadoc.css</stylesheetfile> <footer /> </configuration> </plugin> <plugin> <groupId>com.mycila.maven-license-plugin</groupId> <artifactId>maven-license-plugin</artifactId> <version>1.8.0</version> <configuration> <strictCheck>true</strictCheck> <encoding>utf-8</encoding> <aggregate>true</aggregate> <header>src/main/etc/header.txt</header> <mapping> <clj>SEMICOLON_STYLE</clj> </mapping> <excludes> <exclude>thirdparty/**</exclude> <exclude>**/src/**/resources/**</exclude> <exclude>**/LICENSE-APACHE.txt</exclude> </excludes> <properties> <year>1998-2013</year> <copyrightHolder>enStratus Networks Inc</copyrightHolder> </properties> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <executions> <execution> <id>source</id> <phase>package</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.1</version> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/lib</outputDirectory> </configuration> </execution> </executions> </plugin> </plugins> </build> <distributionManagement> <repository> <id>sonatype-nexus-staging</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> <uniqueVersion>false</uniqueVersion> </repository> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> </project>