Download java-util-1.8.0.jar file

Introduction

You can download java-util-1.8.0.jar in this page.

License

The Apache Software License, Version 2.0

Type List

java-util-1.8.0.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.cedarsoftware/java-util/pom.properties
META-INF/maven/com.cedarsoftware/java-util/pom.xml
com.cedarsoftware.util.ArrayUtilities.class
com.cedarsoftware.util.ByteUtilities.class
com.cedarsoftware.util.CaseInsensitiveMap.class
com.cedarsoftware.util.CaseInsensitiveSet.class
com.cedarsoftware.util.CookieAwareUrlInvocationHandler.class
com.cedarsoftware.util.DateUtilities.class
com.cedarsoftware.util.DeepEquals.class
com.cedarsoftware.util.EncryptionUtilities.class
com.cedarsoftware.util.IOUtilities.class
com.cedarsoftware.util.ReflectionUtils.class
com.cedarsoftware.util.SafeSimpleDateFormat.class
com.cedarsoftware.util.SessionAwareUrlInvocationHandler.class
com.cedarsoftware.util.StringUtilities.class
com.cedarsoftware.util.SystemUtilities.class
com.cedarsoftware.util.Traverser.class
com.cedarsoftware.util.UniqueIdGenerator.class
com.cedarsoftware.util.UrlInvocationHandler.class
com.cedarsoftware.util.UrlUtilities.class

Pom

java-util-1.8.0.pom file content.

<?xml version="1.0" encoding="UTF-8"?>
<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>
    <name>java-util</name>
    <groupId>com.cedarsoftware</groupId>
    <artifactId>java-util</artifactId>
    <packaging>jar</packaging>
    <version>1.8.0</version>
    <description>Java Utilities</description>
    <url>https://github.com/jdereg/java-util</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>
        <url>https://github.com/Uriljdereg/java-util</url>
        <connection>scm:git:git://github.com/jdereg/java-util.git</connection>
        <developerConnection>scm:git:git@github.com:jdereg/java-util.git</developerConnection>
      <tag>1.8.0.201401181848</tag>
  </scm>

    <developers>
        <developer>
            <id>jdereg</id>
            <name>John DeRegnaucourt</name>
            <email>jdereg@gmail.com</email>
        </developer>
    </developers>

    <properties>
        <version.json.io>2.4.1</version.json.io>
        <version.commons.logging>1.1.1</version.commons.logging>
        <version.junit>4.11</version.junit>
    </properties>

    <pluginRepositories>
        <pluginRepository>
            <id>central</id>
            <name>Maven Plugin Repository</name>
            <url>http://repo1.maven.org/maven2</url>
            <layout>default</layout>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
            <releases>
                <updatePolicy>never</updatePolicy>
            </releases>
        </pluginRepository>
    </pluginRepositories>

    <distributionManagement>
        <repository>
            <id>sonatype-nexus-staging</id>
            <name>Nexus Staging Repository</name>
            <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
        </repository>
        <snapshotRepository>
            <id>snapshot-repo</id>
            <url>https://oss.sonatype.org/content/repositories/snapshots</url>
        </snapshotRepository>
    </distributionManagement>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <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>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <version>2.9.1</version>
                <executions>
                    <execution>
                        <id>attach-javadocs</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-gpg-plugin</artifactId>
                <version>1.4</version>
                <executions>
                    <execution>
                        <id>sign-artifacts</id>
                        <phase>verify</phase>
                        <goals>
                            <goal>sign</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-release-plugin</artifactId>
                <version>2.3.2</version>
                <configuration>
                    <mavenExecutorId>forked-path</mavenExecutorId>
                </configuration>
            </plugin>

        </plugins>
    </build>

    <dependencies>

        <dependency>
            <groupId>commons-logging</groupId>
            <artifactId>commons-logging</artifactId>
            <version>${version.commons.logging}</version>
        </dependency>

        <dependency>
            <groupId>com.cedarsoftware</groupId>
            <artifactId>json-io</artifactId>
            <version>${version.json.io}</version>
        </dependency>

        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>${version.junit}</version>
            <scope>test</scope>
        </dependency>

    </dependencies>
</project>

POM Entry

<dependency>
   <groupId>com.cedarsoftware</groupId>
   <artifactId>java-util</artifactId>
   <version>1.8.0</version>
</dependency>

Download

If you think the following java-util-1.8.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download java-util-1.8.0.jar file




PreviousNext

Related