287 lines
9.1 KiB
XML
287 lines
9.1 KiB
XML
|
<?xml version="1.0"?>
|
||
|
<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/xsd/maven-4.0.0.xsd">
|
||
|
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<groupId>com.googlecode.jinahya</groupId>
|
||
|
<artifactId>rfc-4648</artifactId>
|
||
|
<version>1.0-alpha-4</version>
|
||
|
<packaging>jar</packaging>
|
||
|
<parent>
|
||
|
<groupId>org.sonatype.oss</groupId>
|
||
|
<artifactId>oss-parent</artifactId>
|
||
|
<version>7</version>
|
||
|
</parent>
|
||
|
<dependencyManagement>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>commons-codec</groupId>
|
||
|
<artifactId>commons-codec</artifactId>
|
||
|
<version>1.6</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>commons-lang</groupId>
|
||
|
<artifactId>commons-lang</artifactId>
|
||
|
<version>2.6</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.googlecode.jinahya</groupId>
|
||
|
<artifactId>bit-io</artifactId>
|
||
|
<version>1.0-alpha-11</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.shindig</groupId>
|
||
|
<artifactId>shindig-common</artifactId>
|
||
|
<version>3.0.0-beta4</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.testng</groupId>
|
||
|
<artifactId>testng</artifactId>
|
||
|
<version>6.3.1</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</dependencyManagement>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>commons-codec</groupId>
|
||
|
<artifactId>commons-codec</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>commons-lang</groupId>
|
||
|
<artifactId>commons-lang</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.googlecode.jinahya</groupId>
|
||
|
<artifactId>bit-io</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.shindig</groupId>
|
||
|
<artifactId>shindig-common</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.testng</groupId>
|
||
|
<artifactId>testng</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
<properties>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||
|
</properties>
|
||
|
|
||
|
<build>
|
||
|
<extensions>
|
||
|
<extension>
|
||
|
<groupId>com.google.code.maven-svn-wagon</groupId>
|
||
|
<artifactId>maven-svn-wagon</artifactId>
|
||
|
<version>1.4</version>
|
||
|
</extension>
|
||
|
<extension>
|
||
|
<groupId>org.apache.maven.wagon</groupId>
|
||
|
<artifactId>wagon-webdav-jackrabbit</artifactId>
|
||
|
<version>2.2</version>
|
||
|
</extension>
|
||
|
</extensions>
|
||
|
<pluginManagement>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
||
|
<version>2.8</version>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<version>2.3.2</version>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-gpg-plugin</artifactId>
|
||
|
<version>1.4</version>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-jar-plugin</artifactId>
|
||
|
<version>2.3.1</version>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||
|
<version>2.8</version>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
||
|
<version>2.4</version>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-release-plugin</artifactId>
|
||
|
<version>2.2.1</version>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-site-plugin</artifactId>
|
||
|
<version>3.0</version>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.codehaus.mojo</groupId>
|
||
|
<artifactId>findbugs-maven-plugin</artifactId>
|
||
|
<version>2.4.0</version>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</pluginManagement>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>compile-1.1</id>
|
||
|
<phase>process-sources</phase>
|
||
|
<goals>
|
||
|
<goal>compile</goal>
|
||
|
</goals>
|
||
|
<configuration>
|
||
|
<source>1.3</source>
|
||
|
<target>1.1</target>
|
||
|
</configuration>
|
||
|
</execution>
|
||
|
<execution>
|
||
|
<id>testCompile-1.5</id>
|
||
|
<phase>process-test-sources</phase>
|
||
|
<goals>
|
||
|
<goal>testCompile</goal>
|
||
|
</goals>
|
||
|
<configuration>
|
||
|
<source>1.5</source>
|
||
|
<target>1.5</target>
|
||
|
</configuration>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-release-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<goals>deploy</goals>
|
||
|
<tagBase>https://jinahya.googlecode.com/svn/tags/${project.groupId}</tagBase>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-site-plugin</artifactId>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>attach-descriptor</id>
|
||
|
<goals>
|
||
|
<goal>attach-descriptor</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
<configuration>
|
||
|
<reportPlugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.codehaus.mojo</groupId>
|
||
|
<artifactId>findbugs-maven-plugin</artifactId>
|
||
|
</plugin>
|
||
|
</reportPlugins>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
<reporting />
|
||
|
|
||
|
<name>rfc-4648</name>
|
||
|
<url>http://www.jinahya.com/mvn/site/${project.groupId}/${project.artifactId}/${project.version}</url>
|
||
|
<inceptionYear>2011</inceptionYear>
|
||
|
<licenses>
|
||
|
<license>
|
||
|
<name>Apache 2</name>
|
||
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||
|
<distribution>repo</distribution>
|
||
|
<comments>A business-friendly OSS license</comments>
|
||
|
</license>
|
||
|
</licenses>
|
||
|
<organization />
|
||
|
<developers>
|
||
|
<developer>
|
||
|
<id>jinahya</id>
|
||
|
<name>Jin Kwon</name>
|
||
|
<email>jinahya@gmail.com</email>
|
||
|
</developer>
|
||
|
</developers>
|
||
|
<contributors />
|
||
|
|
||
|
<issueManagement />
|
||
|
<ciManagement />
|
||
|
<mailingLists />
|
||
|
<scm>
|
||
|
<connection>scm:svn:http://jinahya.googlecode.com/svn/tags/com.googlecode.jinahya/rfc-4648-1.0-alpha-4</connection>
|
||
|
<developerConnection>scm:svn:https://jinahya.googlecode.com/svn/tags/com.googlecode.jinahya/rfc-4648-1.0-alpha-4</developerConnection>
|
||
|
<url>http://code.google.com/p/jinahya/source/browse/tags/com.googlecode.jinahya/rfc-4648-1.0-alpha-4</url>
|
||
|
</scm>
|
||
|
<prerequisites />
|
||
|
<repositories />
|
||
|
<pluginRepositories />
|
||
|
<distributionManagement>
|
||
|
<snapshotRepository>
|
||
|
<id>sonatype-nexus-snapshots</id>
|
||
|
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
||
|
</snapshotRepository>
|
||
|
<repository>
|
||
|
<id>sonatype-nexus-staging</id>
|
||
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
|
||
|
</repository>
|
||
|
<!--
|
||
|
<site>
|
||
|
<id>googlecode</id>
|
||
|
<url>svn:https://jinahya.googlecode.com/svn/site/${project.groupId}/${project.artifactId}/${project.version}</url>
|
||
|
</site>
|
||
|
-->
|
||
|
<site>
|
||
|
<id>jinahya.com</id>
|
||
|
<url>dav:${project.url}</url>
|
||
|
</site>
|
||
|
</distributionManagement>
|
||
|
<profiles>
|
||
|
<profile>
|
||
|
<id>release-sign-artifacts</id>
|
||
|
<activation>
|
||
|
<property>
|
||
|
<name>performRelease</name>
|
||
|
<value>true</value>
|
||
|
</property>
|
||
|
</activation>
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<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>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</profile>
|
||
|
</profiles>
|
||
|
</project>
|