| 组织ID: |
org.threeten |
| 项目ID: |
threeten-extra |
| 版本: |
1.1 |
| 最后修改时间: |
2018-09-18 16:04:52 |
| 包类型: |
jar |
| 标题: |
ThreeTen-Extra |
| 描述: |
Additional functionality that enhances JSR-310 dates and times in JDK 8 |
| 相关URL: |
http://www.threeten.org/threeten-extra |
| 大小: |
207.03KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>org.threeten</groupId>
<artifactId>threeten-extra</artifactId>
<version>1.1</version>
</dependency>
|
| Gradle引入代码: |
org.threeten:threeten-extra:1.1
|
| 下载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>threeten-extra</artifactId>
<packaging>jar</packaging>
<name>ThreeTen-Extra</name>
<version>1.1</version>
<description>Additional functionality that enhances JSR-310 dates and times in JDK 8</description>
<url>http://www.threeten.org/threeten-extra</url>
<!-- ==================================================================== -->
<issueManagement>
<system>GitHub</system>
<url>https://github.com/ThreeTen/threeten-extra/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>Carlo Dapor</name>
<url>https://github.com/catull</url>
</contributor>
<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>
<contributor>
<name>Steven McCoy</name>
<url>https://github.com/steve-o</url>
</contributor>
<contributor>
<name>Bjorn Raupach</name>
<url>https://github.com/raupachz</url>
</contributor>
<contributor>
<name>Nils Sommer</name>
<url>https://github.com/nsommer</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:https://github.com/ThreeTen/threeten-extra.git</connection>
<developerConnection>scm:git:https://github.com/ThreeTen/threeten-extra.git</developerConnection>
<url>http://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>
<include>NOTICE.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-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>
<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.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>3.3.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.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>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-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>
<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>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>20.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.10</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-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>
<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>repo-sign-artifacts</id>
<activation>
<property>
<name>oss.repo</name>
</property>
</activation>
<build>
<plugins>
<!-- Use Java 8 -->
<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>
<!-- 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/threeten-extra/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>
</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.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>
|
| Jar包内容: |
META-INF/MANIFEST.MF
META-INF/LICENSE.txt
META-INF/services/java.time.chrono.Chronology
org.threeten.extra.AmPm.class
org.threeten.extra.chrono.AbstractDate$1.class
org.threeten.extra.chrono.AbstractDate.class
org.threeten.extra.chrono.AbstractNileChronology$1.class
org.threeten.extra.chrono.AbstractNileChronology.class
org.threeten.extra.chrono.AbstractNileDate.class
org.threeten.extra.chrono.AccountingChronology$1.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.BritishCutoverChronology$1.class
org.threeten.extra.chrono.BritishCutoverChronology.class
org.threeten.extra.chrono.BritishCutoverDate$1.class
org.threeten.extra.chrono.BritishCutoverDate.class
org.threeten.extra.chrono.CopticChronology.class
org.threeten.extra.chrono.CopticDate.class
org.threeten.extra.chrono.CopticEra.class
org.threeten.extra.chrono.DiscordianChronology$1.class
org.threeten.extra.chrono.DiscordianChronology.class
org.threeten.extra.chrono.DiscordianDate$1.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.InternationalFixedChronology$1.class
org.threeten.extra.chrono.InternationalFixedChronology.class
org.threeten.extra.chrono.InternationalFixedDate$1.class
org.threeten.extra.chrono.InternationalFixedDate.class
org.threeten.extra.chrono.InternationalFixedEra.class
org.threeten.extra.chrono.JulianChronology$1.class
org.threeten.extra.chrono.JulianChronology.class
org.threeten.extra.chrono.JulianDate.class
org.threeten.extra.chrono.JulianEra.class
org.threeten.extra.chrono.PaxChronology$1.class
org.threeten.extra.chrono.PaxChronology.class
org.threeten.extra.chrono.PaxDate$1.class
org.threeten.extra.chrono.PaxDate.class
org.threeten.extra.chrono.PaxEra.class
org.threeten.extra.chrono.Symmetry010Chronology$1.class
org.threeten.extra.chrono.Symmetry010Chronology.class
org.threeten.extra.chrono.Symmetry010Date$1.class
org.threeten.extra.chrono.Symmetry010Date.class
org.threeten.extra.chrono.Symmetry454Chronology$1.class
org.threeten.extra.chrono.Symmetry454Chronology.class
org.threeten.extra.chrono.Symmetry454Date$1.class
org.threeten.extra.chrono.Symmetry454Date.class
org.threeten.extra.DayOfMonth.class
org.threeten.extra.DayOfYear.class
org.threeten.extra.Days.class
org.threeten.extra.Hours.class
org.threeten.extra.Interval.class
org.threeten.extra.LocalDateRange$1.class
org.threeten.extra.LocalDateRange.class
org.threeten.extra.Minutes.class
org.threeten.extra.Months.class
org.threeten.extra.PackedFields$PackedDate.class
org.threeten.extra.PackedFields$PackedHourMin.class
org.threeten.extra.PackedFields$PackedTime.class
org.threeten.extra.PackedFields.class
org.threeten.extra.PeriodDuration$1.class
org.threeten.extra.PeriodDuration.class
org.threeten.extra.Quarter$1.class
org.threeten.extra.Quarter.class
org/threeten/extra/scale/LeapSeconds.txt
org.threeten.extra.scale.SystemUtcRules$1.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所有版本文件
|