组织ID: |
org.threeten |
项目ID: |
threetenbp |
版本: |
0.7 |
最后修改时间: |
2019-10-24 03:35:43 |
包类型: |
jar |
标题: |
ThreeTen backport |
描述: |
Backport of JSR-310 to JDK 1.7. NOT an implementation of the JSR. |
相关URL: |
https://github.com/ThreeTen/threetenbp |
大小: |
444.40KB |
|
Maven引入代码: |
<dependency>
<groupId>org.threeten</groupId>
<artifactId>threetenbp</artifactId>
<version>0.7</version>
</dependency>
|
Gradle引入代码: |
org.threeten:threetenbp:0.7
|
下载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.7</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>
<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>
<directory>src/main/resources</directory>
</resource>
<resource>
<targetPath>META-INF</targetPath>
<directory>.</directory>
<includes>
<include>LICENSE.txt</include>
</includes>
</resource>
</resources>
<extensions>
<extension>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-provider-gitexe</artifactId>
<version>1.3</version>
</extension>
<extension>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-manager-plexus</artifactId>
<version>1.3</version>
</extension>
<extension>
<groupId>com.github.stephenc.wagon</groupId>
<artifactId>wagon-gitsite</artifactId>
<version>0.4.1</version>
</extension>
</extensions>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>2.4.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</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.12</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.8.1</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.calendar: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.1.2</version>
<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>2.3</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-assembly-plugin</artifactId>
<version>2.3</version>
<!-- configuration>
<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>
</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>
<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.8.1</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.calendar: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.12</version>
<configuration>
<showSuccess>true</showSuccess>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
<version>2.6</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>
<site>
<id>github-site-threeten-org</id>
<name>ThreeTen organization site</name>
<url>scpexe://shell.sourceforge.net/home/project-web/joda-beans/htdocs</url>
</site>
<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.calendar.ChronoDateImpl$1.class
org.threeten.bp.calendar.ChronoDateImpl.class
org.threeten.bp.calendar.HijrahChrono.class
org.threeten.bp.calendar.HijrahDate$1.class
org.threeten.bp.calendar.HijrahDate.class
org.threeten.bp.calendar.HijrahEra.class
org.threeten.bp.calendar.JapaneseChrono$1.class
org.threeten.bp.calendar.JapaneseChrono.class
org.threeten.bp.calendar.JapaneseDate$1.class
org.threeten.bp.calendar.JapaneseDate.class
org.threeten.bp.calendar.JapaneseEra.class
org.threeten.bp.calendar.MinguoChrono$1.class
org.threeten.bp.calendar.MinguoChrono.class
org.threeten.bp.calendar.MinguoDate$1.class
org.threeten.bp.calendar.MinguoDate.class
org.threeten.bp.calendar.MinguoEra.class
org.threeten.bp.calendar.Ser.class
org.threeten.bp.calendar.ThaiBuddhistChrono$1.class
org.threeten.bp.calendar.ThaiBuddhistChrono.class
org.threeten.bp.calendar.ThaiBuddhistDate$1.class
org.threeten.bp.calendar.ThaiBuddhistDate.class
org.threeten.bp.calendar.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.DateTimeFormatters.class
org.threeten.bp.format.DateTimeParseContext$1.class
org.threeten.bp.format.DateTimeParseContext$FieldValue.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.DateTimePrintException.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.OffsetDate.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$1.class
org.threeten.bp.Period.class
org.threeten.bp.PeriodParser.class
org.threeten.bp.Ser.class
org.threeten.bp.temporal.Chrono$1.class
org.threeten.bp.temporal.Chrono.class
org.threeten.bp.temporal.ChronoField.class
org.threeten.bp.temporal.ChronoLocalDate$1.class
org.threeten.bp.temporal.ChronoLocalDate.class
org.threeten.bp.temporal.ChronoLocalDateTime$1.class
org.threeten.bp.temporal.ChronoLocalDateTime.class
org.threeten.bp.temporal.ChronoLocalDateTimeImpl$1.class
org.threeten.bp.temporal.ChronoLocalDateTimeImpl.class
org.threeten.bp.temporal.ChronoUnit.class
org.threeten.bp.temporal.ChronoZonedDateTime$1.class
org.threeten.bp.temporal.ChronoZonedDateTime.class
org.threeten.bp.temporal.ChronoZonedDateTimeImpl$1.class
org.threeten.bp.temporal.ChronoZonedDateTimeImpl.class
org.threeten.bp.temporal.Era.class
org.threeten.bp.temporal.ISOChrono.class
org.threeten.bp.temporal.ISOEra.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.Ser.class
org.threeten.bp.temporal.SimplePeriod.class
org.threeten.bp.temporal.Temporal.class
org.threeten.bp.temporal.TemporalAccessor.class
org.threeten.bp.temporal.TemporalAdder.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.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.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
testng-6.8.jar
/org.testng/testng/6.8
查看testng所有版本文件
|