threetenbp
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.threeten</groupId> <artifactId>threetenbp</artifactId> <version>1.3.6</version> </dependency>
<?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.6</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> <!-- ==================================================================== --> <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>