Kerner-Utils-IO.
Commonly used utility classes (IO related)..
Here is the list of declaration for kerner-utils-io. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>net.sf.kerner-utils-io</groupId> <artifactId>kerner-utils-io</artifactId> <version>0.2.0</version> </dependency>
If you think this Maven repository POM file listing for kerner-utils-io 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-io-0.2.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 |
The following plugins are used in the kerner-utils-io-0.2.0.jar
The following packages are defined in the kerner-utils-io-0.2.0.jar
net.sf.kerner.utils.io net.sf.kerner.utils.io.buffered net.sf.kerner.utils.io.buffered.impl net.sf.kerner.utils.io.lazy
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-io</groupId> <artifactId>kerner-utils-io</artifactId> <version>0.2.0</version> <name>Kerner-Utils-IO</name> <description>Commonly used utility classes (IO related).</description> <url>http://kerner-utils-io.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-io </url> <connection>scm:git:git://kerner-utils-io.git.sourceforge.net/gitroot/kerner-utils-io/kerner-utils-io</connection> <developerConnection>scm:git:ssh://akerner@kerner-utils-io.git.sourceforge.net/gitroot/kerner-utils-io/kerner-utils-io</developerConnection> </scm> <distributionManagement> <site> <id>sourceforge-kerner-utils-io</id> <url>sftp://frs.sourceforge.net:/home/groups/k/ke/kerner-utils-io/htdocs</url> </site> </distributionManagement> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>${jdk.version}</source> <target>${jdk.version}</target> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.1</version> <scope>test</scope> </dependency> <dependency> <groupId>net.sf.kerner-utils</groupId> <artifactId>kerner-utils</artifactId> <version>0.0.5</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> <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> <ignore>net.sf.kerner.utils.io.AbstractGenericReader*</ignore> <ignore>net.sf.kerner.utils.io.buffered.AbstractBufferedReader*</ignore> <ignore>net.sf.kerner.utils.io.buffered.AbstractBufferedWriter*</ignore> </ignores> <excludes> <exclude>*Exception.class</exclude> <exclude>net/sf/kerner/utils/io/AbstractGenericReader*</exclude> <exclude>net/sf/kerner/utils/io/buffered/AbstractBufferedReader*</exclude> <exclude>net/sf/kerner/utils/io/buffered/AbstractBufferedWriter*</exclude> </excludes> </instrumentation> </configuration> <executions> <execution> <goals> <goal>clean</goal> <goal>check</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>