Kerner Utilities.
Commonly used utility classes..
Here is the list of declaration for kerner-utils. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>net.sf.kerner-utils</groupId> <artifactId>kerner-utils</artifactId> <version>0.5.0</version> </dependency>
If you think this Maven repository POM file listing for kerner-utils 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 kerner-utils-0.5.0 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 |
---|---|---|
JUnit | junit 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 |
Log | slf4j-api 1.6.4 The slf4j API | 550 |
The following plugins are used in the kerner-utils-0.5.0.jar
The following packages are defined in the kerner-utils-0.5.0.jar
net.sf.kerner.utils net.sf.kerner.utils.async net.sf.kerner.utils.counter net.sf.kerner.utils.factory net.sf.kerner.utils.math net.sf.kerner.utils.modifier net.sf.kerner.utils.time net.sf.kerner.utils.transformer
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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>5</version> </parent> <groupId>net.sf.kerner-utils</groupId> <artifactId>kerner-utils</artifactId> <version>0.5.0</version> <name>Kerner Utilities</name> <description>Commonly used utility classes.</description> <url>http://kerner-utils.sourceforge.net/</url> <properties> <jdk.version>1.5</jdk.version> </properties> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <scm> <url>git://kerner-utils.git.sourceforge.net/gitroot/kerner-utils/kerner-utils </url> <connection>scm:git:git://kerner-utils.git.sourceforge.net/gitroot/kerner-utils/kerner-utils</connection> <developerConnection>scm:git:ssh://akerner@kerner-utils.git.sourceforge.net/gitroot/kerner-utils/kerner-utils</developerConnection> </scm> <distributionManagement> <site> <id>sourceforge-kerner-utils</id> <url>sftp://frs.sourceforge.net:/home/groups/k/ke/kerner-utils/htdocs</url> </site> </distributionManagement> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>${jdk.version}</source> <target>${jdk.version}</target> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <configuration> <formats> <format>html</format> <format>xml</format> </formats> <check> <lineRate>70</lineRate> <haltOnFailure>false</haltOnFailure> <totalLineRate>70</totalLineRate> <packageLineRate>70</packageLineRate> </check> <instrumentation> <ignores> <ignore>**.*Exception.class</ignore> </ignores> <excludes> <exclude>**/*Exception.class</exclude> </excludes> </instrumentation> </configuration> <executions> <execution> <goals> <goal>clean</goal> <goal>check</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.6.4</version> </dependency> </dependencies> <profiles> <profile> <id>doc</id> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>${jdk.version}</source> <target>${jdk.version}</target> </configuration> </plugin> <plugin> <artifactId>maven-install-plugin</artifactId> <executions> <execution> <goals> <goal>install</goal> </goals> <configuration> <createChecksum>true</createChecksum> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-install-plugin</artifactId> <executions> <execution> <goals> <goal>install</goal> </goals> <configuration> <createChecksum>true</createChecksum> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> </configuration> <executions> <execution> <id>dist-assembly</id> <phase>package</phase> <goals> <goal>single</goal> <!-- that's all :) --> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>