Kerner Utilities I/O.
Commonly used utility classes (I/O 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.5.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.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.11 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. | 2031 |
The following plugins are used in the kerner-utils-io-0.5.0.jar
The following packages are defined in the kerner-utils-io-0.5.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>7</version> </parent> <groupId>net.sf.kerner-utils-io</groupId> <artifactId>kerner-utils-io</artifactId> <version>0.5.0</version> <name>Kerner Utilities I/O</name> <description>Commonly used utility classes (I/O 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://git.code.sf.net/p/kerner-utils-io/code</url> <connection>scm:git://git.code.sf.net/p/kerner-utils-io/code</connection> <developerConnection>scm:git:ssh://akerner@git.code.sf.net/p/kerner-utils-io/code </developerConnection> <tag>HEAD</tag> </scm> <distributionManagement> <site> <id>sourceforge-kerner-utils-io</id> <url>scp://shell.sourceforge.net/home/project-web/kerner-utils-io/htdocs</url> </site> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.2</version> <dependencies> <dependency><!-- add support for ssh/scp --> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-ssh</artifactId> <version>1.0</version> </dependency> </dependencies> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.0</version> <configuration> <source>${jdk.version}</source> <target>${jdk.version}</target> </configuration> </plugin> <plugin> <artifactId>maven-install-plugin</artifactId> <version>2.4</version> <executions> <execution> <goals> <goal>install</goal> </goals> <configuration> <createChecksum>true</createChecksum> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.3</version> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> </configuration> <executions> <execution> <id>dist-assembly</id> <phase>package</phase> <goals> <goal>single</goal> </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.IOUtils*</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/IOUtils*</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> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestEntries> <Bundle-Version>${parsedVersion.osgiVersion}</Bundle-Version> <Bundle-Description>${project.description}</Bundle-Description> <Implementation-Version>${project.version}</Implementation-Version> </manifestEntries> <manifestFile>META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.4.4</version> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>net.sf.kerner-utils</groupId> <artifactId>kerner-utils</artifactId> <version>0.18.2</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> </dependencies> </project>