You can download joda-convert-1.8.jar in this page.
Apache 2
joda-convert-1.8.jar file has the following types.
META-INF/LICENSE.txt META-INF/MANIFEST.MF META-INF/NOTICE.txt META-INF/maven/org.joda/joda-convert/pom.properties META-INF/maven/org.joda/joda-convert/pom.xml org.joda.convert.AbstractTypeStringConverter.class org.joda.convert.AnnotationStringConverterFactory.class org.joda.convert.EnumStringConverterFactory.class org.joda.convert.FromString.class org.joda.convert.FromStringConverter.class org.joda.convert.FromStringFactory.class org.joda.convert.JDKStringConverter.class org.joda.convert.MethodConstructorStringConverter.class org.joda.convert.MethodsStringConverter.class org.joda.convert.ReflectionStringConverter.class org.joda.convert.RenameHandler.class org.joda.convert.StringConvert.class org.joda.convert.StringConverter.class org.joda.convert.StringConverterFactory.class org.joda.convert.ToString.class org.joda.convert.ToStringConverter.class org.joda.convert.TypeStringConverter.class org.joda.convert.TypeTokenStringConverter.class org.joda.convert.TypedAdapter.class org.joda.convert.TypedStringConverter.class org.joda.convert.factory.BooleanArrayStringConverterFactory.class org.joda.convert.factory.BooleanObjectArrayStringConverterFactory.class org.joda.convert.factory.ByteObjectArrayStringConverterFactory.class org.joda.convert.factory.CharObjectArrayStringConverterFactory.class org.joda.convert.factory.NumericArrayStringConverterFactory.class org.joda.convert.factory.NumericObjectArrayStringConverterFactory.class
joda-convert-1.8.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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.joda</groupId> <artifactId>joda-convert</artifactId> <packaging>jar</packaging> <name>Joda-Convert</name> <version>1.8</version> <description>Library to convert Objects to and from String</description> <url>http://www.joda.org/joda-convert/</url> <!-- ==================================================================== --> <issueManagement> <system>GitHub</system> <url>https://github.com/JodaOrg/joda-convert/issues</url> </issueManagement> <inceptionYear>2010</inceptionYear> <!-- ==================================================================== --> <developers> <developer> <id>jodastephen</id> <name>Stephen Colebourne</name> <roles> <role>Project Lead</role> </roles> <timezone>0</timezone> <url>https://github.com/jodastephen</url> </developer> </developers> <contributors> <contributor> <name>Chris Kent</name> <url>https://github.com/cjkent</url> </contributor> <contributor> <name>Raman Gupta</name> <url>https://github.com/rocketraman</url> </contributor> </contributors> <!-- ==================================================================== --> <licenses> <license> <name>Apache 2</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:https://github.com/JodaOrg/joda-convert.git</connection> <developerConnection>scm:git:git@github.com:JodaOrg/joda-convert.git</developerConnection> <url>https://github.com/JodaOrg/joda-convert</url> </scm> <organization> <name>Joda.org</name> <url>http://www.joda.org</url> </organization> <!-- ==================================================================== --> <build> <resources> <resource> <directory>src/main/resources</directory> </resource> <resource> <targetPath>META-INF</targetPath> <directory>${project.basedir}</directory> <includes> <include>LICENSE.txt</include> <include>NOTICE.txt</include> </includes> </resource> </resources> <!-- define build --> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <executions> <execution> <id>run-checkstyle</id> <phase>process-sources</phase> <goals> <goal>checkstyle</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <properties> <property> <name>usedefaultlisteners</name> <value>false</value> </property> </properties> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> </manifest> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>2.4.0</version> <executions> <execution> <id>bundle-manifest</id> <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <phase>package</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <configuration> <attach>false</attach> <descriptors> <descriptor>src/main/assembly/dist.xml</descriptor> </descriptors> <tarLongFileMode>gnu</tarLongFileMode> </configuration> <executions> <execution> <id>make-assembly</id> <phase>deploy</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <configuration> <skipDeploy>true</skipDeploy> </configuration> <dependencies> <dependency> <groupId>lt.velykis.maven.skins</groupId> <artifactId>reflow-velocity-tools</artifactId> <version>1.1.1</version> </dependency> <dependency> <groupId>org.apache.velocity</groupId> <artifactId>velocity</artifactId> <version>1.7</version> </dependency> </dependencies> </plugin> <plugin><!-- invoke with mvn site-deploy --> <groupId>com.github.github</groupId> <artifactId>site-maven-plugin</artifactId> <version>0.12</version> <executions> <execution> <id>github-site</id> <goals> <goal>site</goal> </goals> <phase>site-deploy</phase> </execution> </executions> <configuration> <message>Create website for ${project.artifactId} v${project.version}</message> <path>${project.artifactId}</path> <merge>true</merge> <server>github</server> <repositoryOwner>JodaOrg</repositoryOwner> <repositoryName>jodaorg.github.io</repositoryName> <branch>refs/heads/master</branch> </configuration> </plugin> </plugins> <!-- Manage plugin versions --> <pluginManagement> <plugins> <!-- Maven build and reporting plugins (alphabetical) --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>${maven-assembly-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>${maven-checkstyle-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-changes-plugin</artifactId> <version>${maven-changes-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <version>${maven-clean-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>${maven-deploy-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>${maven-dependency-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <version>${maven-install-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>${maven-jar-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> <version>${maven-jxr-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>${maven-plugin-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> <version>${maven-pmd-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>${maven-project-info-reports-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-repository-plugin</artifactId> <version>${maven-repository-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>${maven-resources-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>${maven-site-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> <version>${maven-surefire-report-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-toolchains-plugin</artifactId> <version>${maven-toolchains-plugin.version}</version> </plugin> <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <versionRange>[2.4.0,)</versionRange> <goals> <goal>manifest</goal> </goals> </pluginExecutionFilter> <action> <ignore></ignore> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement> </build> <!-- ==================================================================== --> <prerequisites> <maven>3.0.4</maven> </prerequisites> <dependencies> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>18.0</version> <optional>true</optional> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> </dependencies> <!-- ==================================================================== --> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>${maven-project-info-plugin.version}</version> <reportSets> <reportSet> <reports> <report>dependencies</report> <report>dependency-info</report> <report>issue-tracking</report> <report>license</report> <report>project-team</report> <report>scm</report> <report>summary</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>${maven-checkstyle-plugin.version}</version> <configuration> <includeResources>false</includeResources> <includeTestResources>false</includeTestResources> <includeTestSourceDirectory>false</includeTestSourceDirectory> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <reportSets> <reportSet> <reports> <report>javadoc</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> <version>${maven-surefire-report-plugin.version}</version> <configuration> <showSuccess>true</showSuccess> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-changes-plugin</artifactId> <version>${maven-changes-plugin.version}</version> <reportSets> <reportSet> <reports> <report>changes-report</report> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> <!-- ==================================================================== --> <distributionManagement> <repository> <id>sonatype-joda-staging</id> <name>Sonatype OSS staging repository</name> <url>http://oss.sonatype.org/service/local/staging/deploy/maven2/</url> <layout>default</layout> </repository> <snapshotRepository> <uniqueVersion>false</uniqueVersion> <id>sonatype-joda-snapshot</id> <name>Sonatype OSS snapshot repository</name> <url>http://oss.sonatype.org/content/repositories/joda-snapshots</url> <layout>default</layout> </snapshotRepository> <downloadUrl>http://oss.sonatype.org/content/repositories/joda-releases</downloadUrl> </distributionManagement> <!-- ==================================================================== --> <profiles> <profile> <id>java8</id> <activation> <jdk>1.8</jdk> </activation> <properties> <additionalparam>-Xdoclint:none</additionalparam> </properties> </profile> <profile> <id>repo-sign-artifacts</id> <activation> <property> <name>oss.repo</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-toolchains-plugin</artifactId> <executions> <execution> <phase>validate</phase> <goals> <goal>toolchain</goal> </goals> </execution> </executions> <configuration> <toolchains> <jdk> <version>1.6</version> <vendor>sun</vendor> </jdk> </toolchains> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <properties> <additionalparam></additionalparam> </properties> </profile> </profiles> <!-- ==================================================================== --> <properties> <!-- Plugin version numbers --> <maven-assembly-plugin.version>2.5.5</maven-assembly-plugin.version> <maven-changes-plugin.version>2.11</maven-changes-plugin.version> <maven-checkstyle-plugin.version>2.11</maven-checkstyle-plugin.version><!-- Needed for JDK 6 --> <maven-clean-plugin.version>2.6.1</maven-clean-plugin.version> <maven-compiler-plugin.version>3.3</maven-compiler-plugin.version> <maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version> <maven-dependency-plugin.version>2.10</maven-dependency-plugin.version> <maven-gpg-plugin.version>1.6</maven-gpg-plugin.version> <maven-install-plugin.version>2.5.2</maven-install-plugin.version> <maven-jar-plugin.version>2.6</maven-jar-plugin.version> <maven-javadoc-plugin.version>2.10.3</maven-javadoc-plugin.version> <maven-jxr-plugin.version>2.5</maven-jxr-plugin.version> <maven-plugin-plugin.version>3.4</maven-plugin-plugin.version> <maven-pmd-plugin.version>3.5</maven-pmd-plugin.version> <maven-project-info-reports-plugin.version>2.8</maven-project-info-reports-plugin.version> <maven-repository-plugin.version>2.4</maven-repository-plugin.version> <maven-resources-plugin.version>2.7</maven-resources-plugin.version> <maven-site-plugin.version>3.4</maven-site-plugin.version> <maven-source-plugin.version>2.4</maven-source-plugin.version> <maven-surefire-plugin.version>2.18.1</maven-surefire-plugin.version> <maven-surefire-report-plugin.version>2.18.1</maven-surefire-report-plugin.version> <maven-toolchains-plugin.version>1.1</maven-toolchains-plugin.version> <!-- Properties for maven-compiler-plugin --> <maven.compiler.compilerVersion>1.6</maven.compiler.compilerVersion> <maven.compiler.source>1.6</maven.compiler.source> <maven.compiler.target>1.6</maven.compiler.target> <maven.compiler.fork>true</maven.compiler.fork> <maven.compiler.verbose>true</maven.compiler.verbose> <maven.compiler.debug>true</maven.compiler.debug> <maven.compiler.optimize>true</maven.compiler.optimize> <!-- Properties for maven-javadoc-plugin --> <author>false</author> <notimestamp>true</notimestamp> <!-- Properties for maven-checkstyle-plugin --> <checkstyle.config.location>${project.basedir}/src/main/checkstyle/checkstyle.xml</checkstyle.config.location> <!-- Other properties --> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> </project>
<dependency> <groupId>org.joda</groupId> <artifactId>joda-convert</artifactId> <version>1.8</version> </dependency>
If you think the following joda-convert-1.8.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download joda-convert-1.8.jar file