Red Hat Application Migration Toolkit
<?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>joda-time</groupId> <artifactId>joda-time</artifactId> <packaging>jar</packaging> <name>Joda time</name> <version>1.6.2</version> <description>Date and time library to replace JDK date handling</description> <url>http://joda-time.sourceforge.net</url> <issueManagement> <system>Sourceforge</system> <url>https://sourceforge.net/tracker/?group_id=97367&atid=617889</url> </issueManagement> <inceptionYear>2002</inceptionYear> <mailingLists> <mailingList> <name>Joda Interest list</name> <subscribe>https://lists.sourceforge.net/lists/listinfo/joda-interest</subscribe> <unsubscribe>https://lists.sourceforge.net/lists/listinfo/joda-interest</unsubscribe> <archive>http://sourceforge.net/mailarchive/forum.php?forum_name=joda-interest</archive> </mailingList> </mailingLists> <developers> <developer> <id>scolebourne</id> <name>Stephen Colebourne</name> <email></email> <roles> <role>Lead developer</role> </roles> <timezone>0</timezone> </developer> <developer> <id>broneill</id> <name>Brian S O'Neill</name> <email></email> <roles> <role>Senior Developer</role> </roles> </developer> </developers> <contributors> <contributor> <name>Guy Allard</name> </contributor> <contributor> <name>Fredrik Borgh</name> </contributor> <contributor> <name>Jeroen van Erp</name> </contributor> <contributor> <name>Gwyn Evans</name> </contributor> <contributor> <name>Sean Geoghegan</name> </contributor> <contributor> <name>Ashish Katyal</name> </contributor> <contributor> <name>Antonio Leitao</name> </contributor> <contributor> <name>Kostas Maistrelis</name> </contributor> <contributor> <name>Al Major</name> </contributor> <contributor> <name>Blair Martin</name> </contributor> <contributor> <name>Julen Parra</name> </contributor> <contributor> <name>Mike Schrag</name> </contributor> <contributor> <name>Kandarp Shah</name> </contributor> <contributor> <name>Francois Staes</name> </contributor> <contributor> <name>Maxim Zhao</name> </contributor> <contributor> <name>Ryan Propper</name> </contributor> </contributors> <licenses> <license> <name>Apache 2</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:svn:http://joda-time.svn.sourceforge.net/svnroot/joda-time/trunk/JodaTime/</connection> <developerConnection>scm:svn:https://joda-time.svn.sourceforge.net/svnroot/joda-time/trunk/JodaTime/</developerConnection> <url>http://joda-time.svn.sourceforge.net/viewvc/joda-time/trunk/JodaTime/</url> </scm> <organization> <name>Joda.org</name> <url>http://www.joda.org</url> </organization> <build> <resources> <resource> <targetPath>META-INF</targetPath> <directory>.</directory> <includes> <include>LICENSE.txt</include> <include>NOTICE.txt</include> </includes> </resource> <resource> <targetPath>.</targetPath> <directory>src/main/java</directory> <includes> <include>org/joda/time/tz/data/**</include> </includes> </resource> </resources> <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.1</version> <configuration> <verbose>true</verbose> <fork>true</fork> <compilerVersion>1.4</compilerVersion> <source>1.3</source> <target>1.3</target> <debug>true</debug> <debuglevel>lines,source</debuglevel> <optimize>true</optimize> <showDeprecation>false</showDeprecation> </configuration> </plugin> <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.4</version> <vendor>sun</vendor> </jdk> </toolchains> </configuration> </plugin> <plugin> <artifactId>maven-antrun-plugin</artifactId> <version>1.4</version> <executions> <execution> <phase>compile</phase> <configuration> <tasks> <mkdir dir="${pom.build.outputDirectory}/org/joda/time/tz/data" /> <java classname="org.joda.time.tz.ZoneInfoCompiler" fork="true" failonerror="true"> <classpath refid="maven.compile.classpath" /> <!-- Override default provider since data directory doesn't exist yet --> <sysproperty key="org.joda.time.DateTimeZone.Provider" value="org.joda.time.tz.UTCProvider" /> <!-- Specify destination directory for compiled data files --> <arg line="-src ${pom.build.sourceDirectory}/org/joda/time/tz/src -dst ${pom.build.outputDirectory}/org/joda/time/tz/data" /> <!-- Specify all the data files to compile --> <arg value="africa" /> <arg value="antarctica" /> <arg value="asia" /> <arg value="australasia" /> <arg value="europe" /> <arg value="northamerica" /> <arg value="southamerica" /> <arg value="pacificnew" /> <arg value="etcetera" /> <arg value="backward" /> <arg value="systemv" /> </java> </tasks> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.5</version> <configuration> <includes> <include>**/TestAllPackages.java</include> </includes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.3.1</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.7</version> <configuration> <linksource>true</linksource> <links> <link>http://java.sun.com/j2se/1.4.2/docs/api/</link> </links> <encoding>UTF-8</encoding> <groups> <group> <title>User packages</title> <packages>org.joda.time:org.joda.time.format:org.joda.time.chrono</packages> </group> <group> <title>Implementation packages</title> <packages>org.joda.time.base:org.joda.time.convert:org.joda.time.field:org.joda.time.tz</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.1.1</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> <configuration> <descriptors> <descriptor>src/main/assembly/src.xml</descriptor> <descriptor>src/main/assembly/bin.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>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</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.7</version> <configuration> <linksource>true</linksource> <links> <link>http://java.sun.com/j2se/1.5.0/docs/api/</link> </links> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> <version>2.5</version> <configuration> <showSuccess>true</showSuccess> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> <version>2.2</version> </plugin> </plugins> </reporting> <distributionManagement> <repository> <id>sonatype-joda-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-joda-snapshot</id> <name>Sonatype OSS snapshot repository</name> <url>http://oss.sonatype.org/content/repositories/joda-snapshots</url> <layout>default</layout> </snapshotRepository> <site> <id>sf-web-joda-time</id> <name>Sourceforge Site</name> <url>scp://shell.sourceforge.net/home/groups/j/jo/joda-time/htdocs</url> </site> <downloadUrl>http://oss.sonatype.org/content/repositories/joda-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-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>