| 1 |
<?xml version="1.0" encoding="UTF-8"?> |
|---|
| 2 |
<project |
|---|
| 3 |
xmlns="http://maven.apache.org/POM/4.0.0" |
|---|
| 4 |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|---|
| 5 |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" |
|---|
| 6 |
> |
|---|
| 7 |
<modelVersion>4.0.0</modelVersion> |
|---|
| 8 |
<prerequisites> |
|---|
| 9 |
<maven>2.0.4</maven> |
|---|
| 10 |
</prerequisites> |
|---|
| 11 |
|
|---|
| 12 |
<groupId>org.intra-mart.tools</groupId> |
|---|
| 13 |
<artifactId>im-svn-diff-exporter</artifactId> |
|---|
| 14 |
<version>0.1.1-SNAPSHOT</version> |
|---|
| 15 |
<packaging>jar</packaging> |
|---|
| 16 |
|
|---|
| 17 |
<name>${artifactId}</name> |
|---|
| 18 |
<url>http://oss.intra-mart.org/projects/im-tools/maven/${artifactId}/</url> |
|---|
| 19 |
<inceptionYear>2007</inceptionYear> |
|---|
| 20 |
|
|---|
| 21 |
<organization> |
|---|
| 22 |
<name>OPEN INTRA-MART</name> |
|---|
| 23 |
<url>http://oss.intra-mart.org/</url> |
|---|
| 24 |
</organization> |
|---|
| 25 |
|
|---|
| 26 |
<repositories> |
|---|
| 27 |
<repository> |
|---|
| 28 |
<id>oss.intra-mart.org</id> |
|---|
| 29 |
<name>OPEN INTRA-MART Maven2 Repository</name> |
|---|
| 30 |
<url>http://oss.intra-mart.org/maven2</url> |
|---|
| 31 |
<snapshots> |
|---|
| 32 |
<enabled>true</enabled> |
|---|
| 33 |
</snapshots> |
|---|
| 34 |
</repository> |
|---|
| 35 |
<repository> |
|---|
| 36 |
<id>maven.rectang.com</id> |
|---|
| 37 |
<url>http://maven.rectang.com/repository</url> |
|---|
| 38 |
</repository> |
|---|
| 39 |
</repositories> |
|---|
| 40 |
|
|---|
| 41 |
<dependencies> |
|---|
| 42 |
<dependency> |
|---|
| 43 |
<groupId>ant</groupId> |
|---|
| 44 |
<artifactId>ant</artifactId> |
|---|
| 45 |
<version>1.6.5</version> |
|---|
| 46 |
<scope>compile</scope> |
|---|
| 47 |
</dependency> |
|---|
| 48 |
|
|---|
| 49 |
<dependency> |
|---|
| 50 |
<groupId>org.tmatesoft</groupId> |
|---|
| 51 |
<artifactId>svnkit</artifactId> |
|---|
| 52 |
<version>1.1.2</version> |
|---|
| 53 |
<scope>compile</scope> |
|---|
| 54 |
</dependency> |
|---|
| 55 |
|
|---|
| 56 |
<dependency> |
|---|
| 57 |
<groupId>junit</groupId> |
|---|
| 58 |
<artifactId>junit</artifactId> |
|---|
| 59 |
<version>3.8.1</version> |
|---|
| 60 |
<scope>test</scope> |
|---|
| 61 |
</dependency> |
|---|
| 62 |
</dependencies> |
|---|
| 63 |
|
|---|
| 64 |
<build> |
|---|
| 65 |
<plugins> |
|---|
| 66 |
<plugin> |
|---|
| 67 |
<groupId>org.apache.maven.plugins</groupId> |
|---|
| 68 |
<artifactId>maven-compiler-plugin</artifactId> |
|---|
| 69 |
<configuration> |
|---|
| 70 |
<encoding>UTF-8</encoding> |
|---|
| 71 |
<source>1.4</source> |
|---|
| 72 |
<target>1.4</target> |
|---|
| 73 |
</configuration> |
|---|
| 74 |
</plugin> |
|---|
| 75 |
<plugin> |
|---|
| 76 |
<groupId>org.apache.maven.plugins</groupId> |
|---|
| 77 |
<artifactId>maven-assembly-plugin</artifactId> |
|---|
| 78 |
<inherited>true</inherited> |
|---|
| 79 |
<configuration> |
|---|
| 80 |
<descriptors> |
|---|
| 81 |
<descriptor>src/main/assembly/bin.xml</descriptor> |
|---|
| 82 |
<descriptor>src/main/assembly/src.xml</descriptor> |
|---|
| 83 |
</descriptors> |
|---|
| 84 |
</configuration> |
|---|
| 85 |
</plugin> |
|---|
| 86 |
</plugins> |
|---|
| 87 |
</build> |
|---|
| 88 |
|
|---|
| 89 |
<reporting> |
|---|
| 90 |
<plugins> |
|---|
| 91 |
<plugin> |
|---|
| 92 |
<groupId>org.apache.maven.plugins</groupId> |
|---|
| 93 |
<artifactId>maven-site-plugin</artifactId> |
|---|
| 94 |
<configuration> |
|---|
| 95 |
<locales>ja</locales> |
|---|
| 96 |
<outputEncoding>UTF-8</outputEncoding> |
|---|
| 97 |
</configuration> |
|---|
| 98 |
</plugin> |
|---|
| 99 |
<plugin> |
|---|
| 100 |
<groupId>org.codehaus.mojo</groupId> |
|---|
| 101 |
<artifactId>surefire-report-maven-plugin</artifactId> |
|---|
| 102 |
</plugin> |
|---|
| 103 |
<plugin> |
|---|
| 104 |
<groupId>org.apache.maven.plugins</groupId> |
|---|
| 105 |
<artifactId>maven-jxr-plugin</artifactId> |
|---|
| 106 |
<configuration> |
|---|
| 107 |
<inputEncoding>UTF-8</inputEncoding> |
|---|
| 108 |
<outputEncoding>UTF-8</outputEncoding> |
|---|
| 109 |
</configuration> |
|---|
| 110 |
</plugin> |
|---|
| 111 |
<plugin> |
|---|
| 112 |
<groupId>org.apache.maven.plugins</groupId> |
|---|
| 113 |
<artifactId>maven-javadoc-plugin</artifactId> |
|---|
| 114 |
<configuration> |
|---|
| 115 |
<encoding>UTF-8</encoding> |
|---|
| 116 |
<charset>UTF-8</charset> |
|---|
| 117 |
<links> |
|---|
| 118 |
<link>http://java.sun.com/j2se/1.5.0/ja/docs/ja/api</link> |
|---|
| 119 |
</links> |
|---|
| 120 |
</configuration> |
|---|
| 121 |
</plugin> |
|---|
| 122 |
</plugins> |
|---|
| 123 |
</reporting> |
|---|
| 124 |
|
|---|
| 125 |
<licenses> |
|---|
| 126 |
<license> |
|---|
| 127 |
<name>The Apache Software License, Version 2.0</name> |
|---|
| 128 |
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
|---|
| 129 |
<distribution>repo</distribution> |
|---|
| 130 |
</license> |
|---|
| 131 |
</licenses> |
|---|
| 132 |
|
|---|
| 133 |
<issueManagement> |
|---|
| 134 |
<system>trac</system> |
|---|
| 135 |
<url><![CDATA[http://oss.intra-mart.org/projects/im-tools/report/]]></url> |
|---|
| 136 |
</issueManagement> |
|---|
| 137 |
|
|---|
| 138 |
<scm> |
|---|
| 139 |
<connection>scm:http://oss.intra-mart.org/projects/im-tools/svn/trunk/im-svn-diff-exporter/</connection> |
|---|
| 140 |
<developerConnection>scm:http://oss.intra-mart.org/projects/im-tools/svn/trunk/im-svn-diff-exporter/</developerConnection> |
|---|
| 141 |
<url><![CDATA[http://oss.intra-mart.org/projects/im-tools/browser/trunk/im-svn-diff-exporter/]]></url> |
|---|
| 142 |
</scm> |
|---|
| 143 |
|
|---|
| 144 |
<distributionManagement> |
|---|
| 145 |
<repository> |
|---|
| 146 |
<id>oss.intra-mart.org</id> |
|---|
| 147 |
<name>OPEN INTRA-MART Maven2 Repository</name> |
|---|
| 148 |
<url>file:///usr/local/store/maven2/repository</url> |
|---|
| 149 |
<!--url>scp://192.168.108.60/usr/local/store/maven2/repository</url--> |
|---|
| 150 |
</repository> |
|---|
| 151 |
<site> |
|---|
| 152 |
<id>oss.intra-mart.org</id> |
|---|
| 153 |
<name>OPEN INTRA-MART Maven2 Site</name> |
|---|
| 154 |
<url>file:///usr/local/store/maven2/im-tools/im-svn-diff-exporter</url> |
|---|
| 155 |
<!--url>scp://192.168.108.60/usr/local/store/maven2/im-tools/im-svn-diff-exporter</url--> |
|---|
| 156 |
</site> |
|---|
| 157 |
</distributionManagement> |
|---|
| 158 |
|
|---|
| 159 |
</project> |
|---|