组织ID: |
org.threeten |
项目ID: |
threetenbp |
版本: |
0.8.1 |
最后修改时间: |
2018-08-02 20:46:41 |
包类型: |
jar |
标题: |
ThreeTen backport |
描述: |
Backport of JSR-310 to JDK 1.7. NOT an implementation of the JSR. |
相关URL: |
https://github.com/ThreeTen/threetenbp |
大小: |
434.91KB |
|
Maven引入代码: |
<dependency>
<groupId>org.threeten</groupId>
<artifactId>threetenbp</artifactId>
<version>0.8.1</version>
</dependency>
|
Gradle引入代码: |
org.threeten:threetenbp:0.8.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>threetenbp</artifactId>
<packaging>jar</packaging>
<name>ThreeTen backport</name>
<version>0.8.1</version>
<description>Backport of JSR-310 to JDK 1.7. NOT an implementation of the JSR.</description>
<url>https://github.com/ThreeTen/threetenbp</url>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/JodaOrg/joda-beans/issues</url>
</issueManagement>
<inceptionYear>2007</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>scolebourne</id>
<name>Stephen Colebourne</name>
<email></email>
<roles>
<role>Lead developer</role>
</roles>
<timezone>0</timezone>
</developer>
</developers>
<licenses>
<license>
<name>BSD 3-clause</name>
<url>http://opensource.org/licenses/BSD-3-Clause</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:ThreeTen/threetenbp.git</connection>
<developerConnection>scm:git:git@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>${basedir}</directory>
<includes>
<include>LICENSE.txt</include>
</includes>
</resource>
<resource>
<directory>${basedir}/src/main/resources</directory>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>2.5</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<verbose>true</verbose>
<fork>true</fork>
<compilerVersion>1.7</compilerVersion>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.13</version>
<configuration>
<argLine>-Xmx768m</argLine>
<includes>
<include>**/Test*.java</include>
</includes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<archive>
<manifestFile>src/conf/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9</version>
<configuration>
<linksource>true</linksource>
<links>
<link>http://download.oracle.com/javase/7/docs/api/</link>
</links>
<encoding>UTF-8</encoding>
<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>
<version>2.2.1</version>
<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>
<version>3.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-repository-plugin</artifactId>
<version>2.3.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.6</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.7</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.4</version>
</plugin>
</plugins>
</build>
<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>2.6</version>
<reportSets>
<reportSet>
<reports>
<report>index</report>
<report>dependencies</report>
<report>project-team</report>
<report>mailing-list</report>
<report>issue-tracking</report>
<report>license</report>
<report>scm</report>
<report>summary</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<!--plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.3</version>
<configuration>
<configLocation>${basedir}/checkstyle.xml</configLocation>
<enableRulesSummary>false</enableRulesSummary>
</configuration>
</plugin-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9</version>
<configuration>
<linksource>true</linksource>
<links>
<link>http://download.oracle.com/javase/7/docs/api/</link>
</links>
<encoding>UTF-8</encoding>
<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>2.13</version>
<configuration>
<showSuccess>true</showSuccess>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
<version>2.8</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>2.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>2.7.1</version>
<configuration>
<linkXref>true</linkXref>
<sourceEncoding>utf-8</sourceEncoding>
<minimumTokens>100</minimumTokens>
<targetJdk>1.7</targetJdk>
</configuration>
</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>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-toolchains-plugin</artifactId>
<version>1.0</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>toolchain</goal>
</goals>
</execution>
</executions>
<configuration>
<toolchains>
<jdk>
<version>1.7</version>
<vendor>oracle</vendor>
</jdk>
</toolchains>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
META-INF/LICENSE.txt
META-INF/services/org.threeten.bp.zone.ZoneRulesProvider
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.class
org.threeten.bp.chrono.ChronoZonedDateTime$1.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.DayOfWeek.class
org.threeten.bp.Duration$1.class
org.threeten.bp.Duration.class
org.threeten.bp.format.DateTimeBuilder.class
org.threeten.bp.format.DateTimeFormatStyleProvider.class
org.threeten.bp.format.DateTimeFormatSymbols.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$FractionPrinterParser.class
org.threeten.bp.format.DateTimeFormatterBuilder$InstantPrinterParser.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$ZoneIdPrinterParser$SubstringTree.class
org.threeten.bp.format.DateTimeFormatterBuilder$ZoneIdPrinterParser.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.class
org.threeten.bp.format.FormatStyle.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.class
org.threeten.bp.jdk8.DefaultInterfaceChronoLocalDate.class
org.threeten.bp.jdk8.DefaultInterfaceChronoLocalDateTime.class
org.threeten.bp.jdk8.DefaultInterfaceChronoZonedDateTime$1.class
org.threeten.bp.jdk8.DefaultInterfaceChronoZonedDateTime.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/LeapSecondRules.dat
org.threeten.bp.LocalDate$1.class
org.threeten.bp.LocalDate.class
org.threeten.bp.LocalDateTime$1.class
org.threeten.bp.LocalDateTime.class
org.threeten.bp.LocalTime$1.class
org.threeten.bp.LocalTime.class
org.threeten.bp.Month$1.class
org.threeten.bp.Month.class
org.threeten.bp.MonthDay$1.class
org.threeten.bp.MonthDay.class
org.threeten.bp.OffsetDateTime$1.class
org.threeten.bp.OffsetDateTime$2.class
org.threeten.bp.OffsetDateTime.class
org.threeten.bp.OffsetTime$1.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
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
testng-6.8.jar
/org.testng/testng/6.8
查看testng所有版本文件
|