You can download threeten-extra-0.9.jar in this page.
BSD 3-clause
threeten-extra-0.9.jar file has the following types.
META-INF/LICENSE.txt META-INF/MANIFEST.MF META-INF/maven/org.threeten/threeten-extra/pom.properties META-INF/maven/org.threeten/threeten-extra/pom.xml META-INF/services/java.time.chrono.Chronology org.threeten.extra.AmPm.class org.threeten.extra.DayOfMonth.class org.threeten.extra.DayOfYear.class org.threeten.extra.Days.class org.threeten.extra.Interval.class org.threeten.extra.Months.class org.threeten.extra.Quarter.class org.threeten.extra.Temporals.class org.threeten.extra.Weeks.class org.threeten.extra.YearQuarter.class org.threeten.extra.Years.class org.threeten.extra.chrono.AbstractDate.class org.threeten.extra.chrono.AbstractNileChronology.class org.threeten.extra.chrono.AbstractNileDate.class org.threeten.extra.chrono.AccountingChronology.class org.threeten.extra.chrono.AccountingChronologyBuilder.class org.threeten.extra.chrono.AccountingDate.class org.threeten.extra.chrono.AccountingEra.class org.threeten.extra.chrono.AccountingYearDivision.class org.threeten.extra.chrono.CopticChronology.class org.threeten.extra.chrono.CopticDate.class org.threeten.extra.chrono.CopticEra.class org.threeten.extra.chrono.DiscordianChronology.class org.threeten.extra.chrono.DiscordianDate.class org.threeten.extra.chrono.DiscordianEra.class org.threeten.extra.chrono.EthiopicChronology.class org.threeten.extra.chrono.EthiopicDate.class org.threeten.extra.chrono.EthiopicEra.class org.threeten.extra.chrono.JulianChronology.class org.threeten.extra.chrono.JulianDate.class org.threeten.extra.chrono.JulianEra.class org.threeten.extra.chrono.PaxChronology.class org.threeten.extra.chrono.PaxDate.class org.threeten.extra.chrono.PaxEra.class org.threeten.extra.scale.SystemUtcRules.class org.threeten.extra.scale.TaiInstant.class org.threeten.extra.scale.TimeSource.class org.threeten.extra.scale.UtcInstant.class org.threeten.extra.scale.UtcRules.class org/threeten/extra/scale/LeapSeconds.txt
threeten-extra-0.9.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.threeten</groupId> <artifactId>threeten-extra</artifactId> <packaging>jar</packaging> <name>ThreeTen-extra</name> <version>0.9</version> <description>Additional functionality that enhances JSR-310 dates and times in JDK 8</description> <url>https://www.threeten.org/threeten-extra</url> <!-- ==================================================================== --> <issueManagement> <system>GitHub</system> <url>https://github.com/ThreeTen/threeten-extra/issues</url> </issueManagement> <inceptionYear>2010</inceptionYear> <mailingLists> <mailingList> <name>ThreeTen development list</name> <subscribe>https://lists.sourceforge.net/lists/listinfo/threeten-develop</subscribe> <unsubscribe>https://lists.sourceforge.net/lists/listinfo/threeten-develop</unsubscribe> <archive>http://sourceforge.net/mailarchive/forum.php?forum_name=threeten-develop</archive> </mailingList> </mailingLists> <!-- ==================================================================== --> <developers> <developer> <id>jodastephen</id> <name>Stephen Colebourne</name> <email></email> <roles> <role>Project Lead</role> </roles> <timezone>0</timezone> <url>https://github.com/jodastephen</url> </developer> </developers> <contributors> <contributor> <name>Jim Gough</name> <url>https://github.com/jpgough</url> </contributor> <contributor> <name>Christian Heinemann</name> <url>https://github.com/cheinema</url> </contributor> <contributor> <name>Stephen A. Imhoff</name> <url>https://github.com/Clockwork-Muse</url> </contributor> </contributors> <!-- ==================================================================== --> <licenses> <license> <name>BSD 3-clause</name> <url>https://raw.githubusercontent.com/ThreeTen/threeten-extra/master/LICENSE.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git@github.com:ThreeTen/threeten-extra.git</connection> <developerConnection>scm:git:git@github.com:ThreeTen/threeten-extra.git</developerConnection> <url>https://github.com/ThreeTen/threeten-extra</url> </scm> <organization> <name>ThreeTen.org</name> <url>http://www.threeten.org</url> </organization> <!-- ==================================================================== --> <build> <resources> <resource> <targetPath>META-INF</targetPath> <directory>${project.basedir}</directory> <includes> <include>LICENSE.txt</include> </includes> </resource> <resource> <directory>${basedir}/src/main/resources</directory> </resource> </resources> <!-- define build --> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <includes> <include>**/Test*.java</include> </includes> <argLine>-Xmx2G</argLine> <parallel>classes</parallel> <threadCount>4</threadCount> <!-- remove slow SuiteHTMLReporter --> <properties> <property> <name>usedefaultlisteners</name> <value>false</value> </property> <property> <name>listener</name> <value>org.testng.reporters.ExitCodeListener</value> </property> <property> <name>reporter</name> <value>org.testng.reporters.FailedReporter,org.testng.reporters.XMLReporter,org.testng.reporters.JUnitReportReporter</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-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.10</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>threeten-extra</path> <merge>true</merge> <server>github</server> <repositoryOwner>ThreeTen</repositoryOwner> <repositoryName>threeten.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-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> <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> <pluginExecution> <pluginExecutionFilter> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-toolchains-plugin</artifactId> <versionRange>[1.0,)</versionRange> <goals> <goal>toolchain</goal> </goals> </pluginExecutionFilter> <action> <ignore></ignore> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>${maven-checkstyle-plugin.version}</version> </plugin> </plugins> </pluginManagement> </build> <!-- ==================================================================== --> <prerequisites> <maven>3.0.4</maven> </prerequisites> <dependencies> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>6.8</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>mailing-list</report> <report>project-team</report> <report>scm</report> <report>summary</report> </reports> </reportSet> </reportSets> </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> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> <version>${maven-jxr-plugin.version}</version> <reportSets> <reportSet> <reports> <report>jxr</report> </reports> </reportSet> </reportSets> </plugin> <!-- Checkstyle disabled until properly released for Java SE 8 --> <!--plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>${maven-checkstyle-plugin.version}</version> <reportSets> <reportSet> <reports> <report>checkstyle</report> </reports> </reportSet> </reportSets> </plugin--> </plugins> </reporting> <!-- ==================================================================== --> <distributionManagement> <repository> <id>sonatype-threeten-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-threeten-snapshot</id> <name>Sonatype OSS snapshot repository</name> <url>http://oss.sonatype.org/content/repositories/threeten-snapshots</url> <layout>default</layout> </snapshotRepository> <downloadUrl>http://oss.sonatype.org/content/repositories/threeten-releases</downloadUrl> </distributionManagement> <!-- ==================================================================== --> <profiles> <profile> <id>activate-jdk8</id> <activation> <property> <name>jdk8</name> </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.8</version> <vendor>oracle</vendor> </jdk> </toolchains> </configuration> </plugin> </plugins> </build> </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.8</version> <vendor>oracle</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> </profile> </profiles> <!-- ==================================================================== --> <properties> <!-- Plugin version numbers --> <maven-assembly-plugin.version>2.4</maven-assembly-plugin.version> <maven-changes-plugin.version>2.9</maven-changes-plugin.version> <maven-clean-plugin.version>2.5</maven-clean-plugin.version> <maven-compiler-plugin.version>3.1</maven-compiler-plugin.version> <maven-deploy-plugin.version>2.7</maven-deploy-plugin.version> <maven-dependency-plugin.version>2.8</maven-dependency-plugin.version> <maven-gpg-plugin.version>1.4</maven-gpg-plugin.version> <maven-install-plugin.version>2.5</maven-install-plugin.version> <maven-jar-plugin.version>2.4</maven-jar-plugin.version> <maven-javadoc-plugin.version>2.9.1</maven-javadoc-plugin.version> <maven-jxr-plugin.version>2.3</maven-jxr-plugin.version> <maven-plugin-plugin.version>3.2</maven-plugin-plugin.version> <maven-pmd-plugin.version>3.0.1</maven-pmd-plugin.version> <maven-project-info-reports-plugin.version>2.7</maven-project-info-reports-plugin.version> <maven-repository-plugin.version>2.3.1</maven-repository-plugin.version> <maven-resources-plugin.version>2.6</maven-resources-plugin.version> <maven-site-plugin.version>3.3</maven-site-plugin.version> <maven-source-plugin.version>2.2.1</maven-source-plugin.version> <maven-surefire-plugin.version>2.16</maven-surefire-plugin.version> <maven-surefire-report-plugin.version>2.16</maven-surefire-report-plugin.version> <maven-toolchains-plugin.version>1.0</maven-toolchains-plugin.version> <maven-checkstyle-plugin.version>2.12.1</maven-checkstyle-plugin.version> <!-- Properties for maven-compiler-plugin --> <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</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> <additionalparam>-Xdoclint:none</additionalparam> <!-- 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.threeten</groupId> <artifactId>threeten-extra</artifactId> <version>0.9</version> </dependency>
If you think the following threeten-extra-0.9.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download threeten-extra-0.9.jar file