组织ID: |
org.threeten |
项目ID: |
threetenbp |
版本: |
1.3.5 |
最后修改时间: |
2018-07-24 08:05:55 |
包类型: |
jar |
标题: |
ThreeTen backport |
描述: |
Backport of JSR-310 from JDK 8 to JDK 7 and JDK 6. NOT an implementation of the JSR. |
相关URL: |
https://www.threeten.org/threetenbp |
大小: |
580.69KB |
|
Maven引入代码: |
<dependency>
<groupId>org.threeten</groupId>
<artifactId>threetenbp</artifactId>
<version>1.3.5</version>
</dependency>
|
Gradle引入代码: |
org.threeten:threetenbp:1.3.5
|
下载Jar包: |
|
POM文件内容: |
<?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>threetenbp</artifactId>
<packaging>jar</packaging>
<name>ThreeTen backport</name>
<version>1.3.5</version>
<description>Backport of JSR-310 from JDK 8 to JDK 7 and JDK 6. NOT an implementation of the JSR.</description>
<url>https://www.threeten.org/threetenbp</url>
<!-- ==================================================================== -->
<issueManagement>
<system>GitHub</system>
<url>https://github.com/ThreeTen/threetenbp/issues</url>
</issueManagement>
<inceptionYear>2007</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>Martin Baker</name>
<url>https://github.com/kemokid</url>
</contributor>
<contributor>
<name>Keith Harris</name>
<url>https://github.com/keithharris</url>
</contributor>
<contributor>
<name>Ludovic Hochet</name>
<url>https://github.com/lhochet</url>
</contributor>
<contributor>
<name>Matias Irland</name>
<url>https://github.com/matir91</url>
</contributor>
<contributor>
<name>Pap Lorinc</name>
<url>https://github.com/paplorinc</url>
</contributor>
<contributor>
<name>Philippe Marschall</name>
<url>https://github.com/marschall</url>
</contributor>
<contributor>
<name>Michael Nascimento Santos</name>
<url>https://github.com/sjmisterm</url>
</contributor>
<contributor>
<name>Roger Riggs</name>
<url>https://github.com/RogerRiggs</url>
</contributor>
<contributor>
<name>Siebe Schaap</name>
<url>https://github.com/sschaap</url>
</contributor>
<contributor>
<name>Sherman Shen</name>
</contributor>
</contributors>
<!-- ==================================================================== -->
<licenses>
<license>
<name>BSD 3-clause</name>
<url>https://raw.githubusercontent.com/ThreeTen/threetenbp/master/LICENSE.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:https://github.com/ThreeTen/threetenbp.git</connection>
<developerConnection>scm:git:https://github.com/ThreeTen/threetenbp.git</developerConnection>
<url>https://github.com/ThreeTen/threetenbp</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>${project.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>1</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.JUnitReportReporter</value>
</property>
</properties>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>default-jar</id>
<configuration>
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
<manifestEntries>
<Time-Zone-Database-Version>${tz.database.version}</Time-Zone-Database-Version>
</manifestEntries>
</archive>
</configuration>
</execution>
<execution>
<id>no-tzdb</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>no-tzdb</classifier>
<archive>
<manifestEntries>
<Implementation-Title>ThreeTen backport No-TZDB</Implementation-Title>
</manifestEntries>
</archive>
<excludes>
<exclude>org/threeten/bp/*.dat</exclude>
<exclude>org/threeten/bp/zone/TzdbZoneRulesCompiler*</exclude>
<exclude>META-INF/services/org.threeten.bp.zone.ZoneRulesProvider</exclude>
</excludes>
</configuration>
</execution>
</executions>
<configuration>
<archive>
<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>
<configuration>
<instructions>
<Import-Package>!sun.util.calendar,*</Import-Package>
</instructions>
</configuration>
<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>
<configuration>
<groups>
<group>
<title>ThreeTen</title>
<packages>org.threeten.bp:org.threeten.bp.chrono:org.threeten.bp.format:org.threeten.bp.temporal:org.threeten.bp.zone</packages>
</group>
<group>
<title>Support classes (do not use)</title>
<packages>org.threeten.bp.jdk8</packages>
</group>
</groups>
</configuration>
<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>
<configuration>
<excludeResources>true</excludeResources>
</configuration>
<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.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>threetenbp</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>
</plugins>
</pluginManagement>
</build>
<!-- ==================================================================== -->
<prerequisites>
<maven>3.0.4</maven>
</prerequisites>
<dependencies>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.8.21</version><!-- Later versions need JDK 7 -->
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.beanshell</groupId>
<artifactId>bsh</artifactId>
</exclusion>
<exclusion>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</exclusion>
</exclusions>
</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-javadoc-plugin</artifactId>
<version>${maven-javadoc-plugin.version}</version>
<reportSets>
<reportSet>
<reports>
<report>javadoc</report>
</reports>
</reportSet>
</reportSets>
<configuration>
<groups>
<group>
<title>ThreeTen</title>
<packages>org.threeten.bp:org.threeten.bp.chrono:org.threeten.bp.format:org.threeten.bp.temporal:org.threeten.bp.zone</packages>
</group>
<group>
<title>Support classes (do not use)</title>
<packages>org.threeten.bp.jdk8</packages>
</group>
</groups>
</configuration>
</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>
</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>java8</id>
<activation>
<jdk>1.8</jdk>
<property>
<name>!oss.repo</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</plugin>
</plugins>
</reporting>
</profile>
<profile>
<id>repo-sign-artifacts</id>
<activation>
<property>
<name>oss.repo</name>
</property>
</activation>
<build>
<plugins>
<!-- Use Java 6 -->
<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>
<!-- Sign artifacts -->
<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>
<!-- Release dist files to GitHub -->
<plugin>
<groupId>de.jutzig</groupId>
<artifactId>github-release-plugin</artifactId>
<version>1.1.1</version>
<configuration>
<releaseName>Release v${project.version}</releaseName>
<description>See the [release notes](http://www.threeten.org/threetenbp/changes-report.html) for more information.</description>
<tag>v${project.version}</tag>
<overwriteArtifact>true</overwriteArtifact>
</configuration>
<executions>
<execution>
<id>github-releases</id>
<phase>deploy</phase>
<goals>
<goal>release</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>tzdb-update</id>
<activation>
<property>
<name>tzdb-update</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<phase>generate-resources</phase>
<goals>
<goal>java</goal>
</goals>
</execution>
</executions>
<configuration>
<mainClass>org.threeten.bp.zone.TzdbZoneRulesCompiler</mainClass>
<classpathScope>compile</classpathScope>
<verbose>true</verbose>
<arguments>
<argument>-srcdir</argument>
<argument>${project.basedir}/src/tzdb</argument>
<argument>-dstdir</argument>
<argument>${project.basedir}/src/main/resources/org/threeten/bp</argument>
<argument>-unpacked</argument>
</arguments>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>tzdb-jar</id>
<activation>
<property>
<name>tzdb-jar</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<phase>prepare-package</phase>
<goals>
<goal>java</goal>
</goals>
</execution>
</executions>
<configuration>
<mainClass>org.threeten.bp.zone.TzdbZoneRulesCompiler</mainClass>
<classpathScope>compile</classpathScope>
<verbose>true</verbose>
<arguments>
<argument>-srcdir</argument>
<argument>${project.basedir}/src/tzdb</argument>
<argument>-dstdir</argument>
<argument>${project.build.directory}</argument>
</arguments>
</configuration>
</plugin>
</plugins>
</build>
</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.16</maven-checkstyle-plugin.version>
<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>
<!-- Other properties -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<tz.database.version>2017b</tz.database.version>
</properties>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
META-INF/LICENSE.txt
META-INF/services/org.threeten.bp.zone.ZoneRulesProvider
org.threeten.bp.chrono.AbstractChronology.class
org.threeten.bp.chrono.ChronoDateImpl$1.class
org.threeten.bp.chrono.ChronoDateImpl.class
org.threeten.bp.chrono.ChronoLocalDate$1.class
org.threeten.bp.chrono.ChronoLocalDate.class
org.threeten.bp.chrono.ChronoLocalDateTime$1.class
org.threeten.bp.chrono.ChronoLocalDateTime.class
org.threeten.bp.chrono.ChronoLocalDateTimeImpl$1.class
org.threeten.bp.chrono.ChronoLocalDateTimeImpl.class
org.threeten.bp.chrono.Chronology$1.class
org.threeten.bp.chrono.Chronology$2.class
org.threeten.bp.chrono.Chronology.class
org.threeten.bp.chrono.ChronoPeriod.class
org.threeten.bp.chrono.ChronoPeriodImpl.class
org.threeten.bp.chrono.ChronoZonedDateTime$1.class
org.threeten.bp.chrono.ChronoZonedDateTime$2.class
org.threeten.bp.chrono.ChronoZonedDateTime.class
org.threeten.bp.chrono.ChronoZonedDateTimeImpl$1.class
org.threeten.bp.chrono.ChronoZonedDateTimeImpl.class
org.threeten.bp.chrono.Era.class
org.threeten.bp.chrono.HijrahChronology.class
org.threeten.bp.chrono.HijrahDate$1.class
org.threeten.bp.chrono.HijrahDate.class
org.threeten.bp.chrono.HijrahEra.class
org.threeten.bp.chrono.IsoChronology.class
org.threeten.bp.chrono.IsoEra.class
org.threeten.bp.chrono.JapaneseChronology$1.class
org.threeten.bp.chrono.JapaneseChronology.class
org.threeten.bp.chrono.JapaneseDate$1.class
org.threeten.bp.chrono.JapaneseDate.class
org.threeten.bp.chrono.JapaneseEra.class
org.threeten.bp.chrono.MinguoChronology$1.class
org.threeten.bp.chrono.MinguoChronology.class
org.threeten.bp.chrono.MinguoDate$1.class
org.threeten.bp.chrono.MinguoDate.class
org.threeten.bp.chrono.MinguoEra.class
org.threeten.bp.chrono.Ser.class
org.threeten.bp.chrono.ThaiBuddhistChronology$1.class
org.threeten.bp.chrono.ThaiBuddhistChronology.class
org.threeten.bp.chrono.ThaiBuddhistDate$1.class
org.threeten.bp.chrono.ThaiBuddhistDate.class
org.threeten.bp.chrono.ThaiBuddhistEra.class
org.threeten.bp.Clock$FixedClock.class
org.threeten.bp.Clock$OffsetClock.class
org.threeten.bp.Clock$SystemClock.class
org.threeten.bp.Clock$TickClock.class
org.threeten.bp.Clock.class
org.threeten.bp.DateTimeException.class
org.threeten.bp.DateTimeUtils.class
org.threeten.bp.DayOfWeek$1.class
org.threeten.bp.DayOfWeek.class
org.threeten.bp.Duration$1.class
org.threeten.bp.Duration.class
org/threeten/bp/format/ChronologyText.properties
org.threeten.bp.format.DateTimeBuilder.class
org.threeten.bp.format.DateTimeFormatStyleProvider.class
org.threeten.bp.format.DateTimeFormatter$1.class
org.threeten.bp.format.DateTimeFormatter$2.class
org.threeten.bp.format.DateTimeFormatter$ClassicFormat.class
org.threeten.bp.format.DateTimeFormatter.class
org.threeten.bp.format.DateTimeFormatterBuilder$1.class
org.threeten.bp.format.DateTimeFormatterBuilder$2.class
org.threeten.bp.format.DateTimeFormatterBuilder$3.class
org.threeten.bp.format.DateTimeFormatterBuilder$4.class
org.threeten.bp.format.DateTimeFormatterBuilder$CharLiteralPrinterParser.class
org.threeten.bp.format.DateTimeFormatterBuilder$ChronoPrinterParser.class
org.threeten.bp.format.DateTimeFormatterBuilder$CompositePrinterParser.class
org.threeten.bp.format.DateTimeFormatterBuilder$DateTimePrinterParser.class
org.threeten.bp.format.DateTimeFormatterBuilder$DefaultingParser.class
org.threeten.bp.format.DateTimeFormatterBuilder$FractionPrinterParser.class
org.threeten.bp.format.DateTimeFormatterBuilder$InstantPrinterParser.class
org.threeten.bp.format.DateTimeFormatterBuilder$LocalizedOffsetPrinterParser.class
org.threeten.bp.format.DateTimeFormatterBuilder$LocalizedPrinterParser.class
org.threeten.bp.format.DateTimeFormatterBuilder$NumberPrinterParser.class
org.threeten.bp.format.DateTimeFormatterBuilder$OffsetIdPrinterParser.class
org.threeten.bp.format.DateTimeFormatterBuilder$PadPrinterParserDecorator.class
org.threeten.bp.format.DateTimeFormatterBuilder$ReducedPrinterParser.class
org.threeten.bp.format.DateTimeFormatterBuilder$SettingsParser.class
org.threeten.bp.format.DateTimeFormatterBuilder$StringLiteralPrinterParser.class
org.threeten.bp.format.DateTimeFormatterBuilder$TextPrinterParser.class
org.threeten.bp.format.DateTimeFormatterBuilder$WeekFieldsPrinterParser.class
org.threeten.bp.format.DateTimeFormatterBuilder$ZoneIdPrinterParser$SubstringTree.class
org.threeten.bp.format.DateTimeFormatterBuilder$ZoneIdPrinterParser.class
org.threeten.bp.format.DateTimeFormatterBuilder$ZoneTextPrinterParser$1.class
org.threeten.bp.format.DateTimeFormatterBuilder$ZoneTextPrinterParser.class
org.threeten.bp.format.DateTimeFormatterBuilder.class
org.threeten.bp.format.DateTimeParseContext$1.class
org.threeten.bp.format.DateTimeParseContext$Parsed.class
org.threeten.bp.format.DateTimeParseContext.class
org.threeten.bp.format.DateTimeParseException.class
org.threeten.bp.format.DateTimePrintContext$1.class
org.threeten.bp.format.DateTimePrintContext.class
org.threeten.bp.format.DateTimeTextProvider$ProviderSingleton.class
org.threeten.bp.format.DateTimeTextProvider.class
org.threeten.bp.format.DecimalStyle.class
org.threeten.bp.format.FormatStyle.class
org.threeten.bp.format.ResolverStyle.class
org.threeten.bp.format.SignStyle.class
org.threeten.bp.format.SimpleDateTimeFormatStyleProvider.class
org.threeten.bp.format.SimpleDateTimeTextProvider$1.class
org.threeten.bp.format.SimpleDateTimeTextProvider$LocaleStore.class
org.threeten.bp.format.SimpleDateTimeTextProvider.class
org.threeten.bp.format.TextStyle.class
org.threeten.bp.Instant$1.class
org.threeten.bp.Instant$2.class
org.threeten.bp.Instant.class
org.threeten.bp.jdk8.DefaultInterfaceEra.class
org.threeten.bp.jdk8.DefaultInterfaceTemporal.class
org.threeten.bp.jdk8.DefaultInterfaceTemporalAccessor.class
org.threeten.bp.jdk8.Jdk8Methods.class
org.threeten.bp.LocalDate$1.class
org.threeten.bp.LocalDate$2.class
org.threeten.bp.LocalDate.class
org.threeten.bp.LocalDateTime$1.class
org.threeten.bp.LocalDateTime$2.class
org.threeten.bp.LocalDateTime.class
org.threeten.bp.LocalTime$1.class
org.threeten.bp.LocalTime$2.class
org.threeten.bp.LocalTime.class
org.threeten.bp.Month$1.class
org.threeten.bp.Month$2.class
org.threeten.bp.Month.class
org.threeten.bp.MonthDay$1.class
org.threeten.bp.MonthDay$2.class
org.threeten.bp.MonthDay.class
org.threeten.bp.OffsetDateTime$1.class
org.threeten.bp.OffsetDateTime$2.class
org.threeten.bp.OffsetDateTime$3.class
org.threeten.bp.OffsetDateTime.class
org.threeten.bp.OffsetTime$1.class
org.threeten.bp.OffsetTime$2.class
org.threeten.bp.OffsetTime.class
org.threeten.bp.Period.class
org.threeten.bp.Ser.class
org.threeten.bp.temporal.ChronoField.class
org.threeten.bp.temporal.ChronoUnit.class
org.threeten.bp.temporal.IsoFields$1.class
org.threeten.bp.temporal.IsoFields$Field$1.class
org.threeten.bp.temporal.IsoFields$Field$2.class
org.threeten.bp.temporal.IsoFields$Field$3.class
org.threeten.bp.temporal.IsoFields$Field$4.class
org.threeten.bp.temporal.IsoFields$Field.class
org.threeten.bp.temporal.IsoFields$Unit.class
org.threeten.bp.temporal.IsoFields.class
org.threeten.bp.temporal.JulianFields$Field.class
org.threeten.bp.temporal.JulianFields.class
org.threeten.bp.temporal.Temporal.class
org.threeten.bp.temporal.TemporalAccessor.class
org.threeten.bp.temporal.TemporalAdjuster.class
org.threeten.bp.temporal.TemporalAdjusters$1.class
org.threeten.bp.temporal.TemporalAdjusters$DayOfWeekInMonth.class
org.threeten.bp.temporal.TemporalAdjusters$Impl.class
org.threeten.bp.temporal.TemporalAdjusters$RelativeDayOfWeek.class
org.threeten.bp.temporal.TemporalAdjusters.class
org.threeten.bp.temporal.TemporalAmount.class
org.threeten.bp.temporal.TemporalField.class
org.threeten.bp.temporal.TemporalQueries$1.class
org.threeten.bp.temporal.TemporalQueries$2.class
org.threeten.bp.temporal.TemporalQueries$3.class
org.threeten.bp.temporal.TemporalQueries$4.class
org.threeten.bp.temporal.TemporalQueries$5.class
org.threeten.bp.temporal.TemporalQueries$6.class
org.threeten.bp.temporal.TemporalQueries$7.class
org.threeten.bp.temporal.TemporalQueries.class
org.threeten.bp.temporal.TemporalQuery.class
org.threeten.bp.temporal.TemporalUnit.class
org.threeten.bp.temporal.UnsupportedTemporalTypeException.class
org.threeten.bp.temporal.ValueRange.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
reflow-velocity-tools-1.1.1.jar
/lt.velykis.maven.skins/reflow-velocity-tools/1.1.1
查看reflow-velocity-tools所有版本文件
velocity-1.7.jar
/org.apache.velocity/velocity/1.7
查看velocity所有版本文件
|