|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | + Copyright (C) 2011, Chris Aniszczyk <caniszczyk@gmail.com> |
| 4 | + Copyright (C) 2011, Matthias Sohn <matthias.sohn@sap.com> |
| 5 | +
|
| 6 | + All rights reserved. This program and the accompanying materials |
| 7 | + are made available under the terms of the Eclipse Public License v1.0 |
| 8 | + which accompanies this distribution, and is available at |
| 9 | + http://www.eclipse.org/legal/epl-v10.html |
| 10 | +--> |
| 11 | +<project |
| 12 | + xmlns="http://maven.apache.org/POM/4.0.0" |
| 13 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 14 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 15 | + <modelVersion>4.0.0</modelVersion> |
| 16 | + |
| 17 | + <version>1.1.0-SNAPSHOT</version> |
| 18 | + <prerequisites> |
| 19 | + <maven>3.0</maven> |
| 20 | + </prerequisites> |
| 21 | + |
| 22 | + <groupId>org.eclipse.mylyn.github</groupId> |
| 23 | + <artifactId>github-parent</artifactId> |
| 24 | + <packaging>pom</packaging> |
| 25 | + |
| 26 | + <name>Eclipse EGit Mylyn GitHub Connector Parent</name> |
| 27 | + |
| 28 | + <licenses> |
| 29 | + <license> |
| 30 | + <name>Eclipse Public License v1.0</name> |
| 31 | + <comments> |
| 32 | + All rights reserved. |
| 33 | + |
| 34 | + This program and the accompanying materials are made |
| 35 | + available under the terms of the Eclipse Public License v1.0 |
| 36 | + which accompanies this distribution, and is available at |
| 37 | + http://www.eclipse.org/legal/epl-v10.htm |
| 38 | + </comments> |
| 39 | + </license> |
| 40 | + </licenses> |
| 41 | + |
| 42 | + <properties> |
| 43 | + <tycho-version>0.12.0</tycho-version> |
| 44 | + <egit-site>file:/${basedir}/../../egit/org.eclipse.egit-updatesite/target/site</egit-site> |
| 45 | + <platform-version-name>indigo</platform-version-name> |
| 46 | + <wikitext-site>http://download.eclipse.org/tools/mylyn/update/weekly</wikitext-site> |
| 47 | + <eclipse-site>http://download.eclipse.org/releases/${platform-version-name}</eclipse-site> |
| 48 | + <orbit-site>http://download.eclipse.org/tools/orbit/downloads/drops/R20110523182458/repository</orbit-site> |
| 49 | + <download-publish-path>/home/data/httpd/download.eclipse.org/egit/github/updates-nightly</download-publish-path> |
| 50 | + </properties> |
| 51 | + |
| 52 | + <modules> |
| 53 | + <module>org.eclipse.egit.github.core</module> |
| 54 | + <module>org.eclipse.mylyn.github.core</module> |
| 55 | + <module>org.eclipse.mylyn.github.ui</module> |
| 56 | + <module>org.eclipse.mylyn.github-feature</module> |
| 57 | + <module>org.eclipse.egit.github.core.tests</module> |
| 58 | + <!--module>org.eclipse.mylyn.github.tests</module --> |
| 59 | + <module>org.eclipse.mylyn.github-site</module> |
| 60 | + <module>org.eclipse.mylyn.github.doc</module> |
| 61 | + </modules> |
| 62 | + |
| 63 | + <repositories> |
| 64 | + <repository> |
| 65 | + <id>egit</id> |
| 66 | + <layout>p2</layout> |
| 67 | + <url>${egit-site}</url> |
| 68 | + </repository> |
| 69 | + <repository> |
| 70 | + <id>indigo</id> |
| 71 | + <layout>p2</layout> |
| 72 | + <url>${eclipse-site}</url> |
| 73 | + </repository> |
| 74 | + <repository> |
| 75 | + <id>orbit</id> |
| 76 | + <layout>p2</layout> |
| 77 | + <url>${orbit-site}</url> |
| 78 | + </repository> |
| 79 | + <repository> |
| 80 | + <id>wikitext</id> |
| 81 | + <layout>p2</layout> |
| 82 | + <url>${wikitext-site}</url> |
| 83 | + </repository> |
| 84 | + </repositories> |
| 85 | + |
| 86 | + <pluginRepositories> |
| 87 | + <pluginRepository> |
| 88 | + <id>maven.eclipse.org</id> |
| 89 | + <url>http://maven.eclipse.org/nexus/content/repositories/nightly-indigo</url> |
| 90 | + </pluginRepository> |
| 91 | + <!-- TODO: need 1.0.1.2-SNAPSHOT of the signing plugin until bugfix for |
| 92 | + https://bugs.eclipse.org/bugs/show_bug.cgi?id=347591 |
| 93 | + is available in maven.eclipse.org --> |
| 94 | + <pluginRepository> |
| 95 | + <id>intalio-dash-signing-plugin</id> |
| 96 | + <url>http://intalio.org/public/maven2</url> |
| 97 | + <snapshots> |
| 98 | + <enabled>true</enabled> |
| 99 | + </snapshots> |
| 100 | + <releases> |
| 101 | + <enabled>true</enabled> |
| 102 | + </releases> |
| 103 | + </pluginRepository> |
| 104 | + </pluginRepositories> |
| 105 | + |
| 106 | + <build> |
| 107 | + <plugins> |
| 108 | + <plugin> |
| 109 | + <groupId>org.eclipse.tycho</groupId> |
| 110 | + <artifactId>tycho-maven-plugin</artifactId> |
| 111 | + <version>${tycho-version}</version> |
| 112 | + <extensions>true</extensions> |
| 113 | + </plugin> |
| 114 | + <plugin> |
| 115 | + <groupId>org.eclipse.tycho</groupId> |
| 116 | + <artifactId>target-platform-configuration</artifactId> |
| 117 | + <version>${tycho-version}</version> |
| 118 | + <configuration> |
| 119 | + <resolver>p2</resolver> |
| 120 | + </configuration> |
| 121 | + </plugin> |
| 122 | + </plugins> |
| 123 | + <pluginManagement> |
| 124 | + <plugins> |
| 125 | + <plugin> |
| 126 | + <groupId>org.eclipse.tycho</groupId> |
| 127 | + <artifactId>tycho-compiler-plugin</artifactId> |
| 128 | + <version>${tycho-version}</version> |
| 129 | + <configuration> |
| 130 | + <encoding>UTF-8</encoding> |
| 131 | + </configuration> |
| 132 | + </plugin> |
| 133 | + <plugin> |
| 134 | + <groupId>org.apache.maven.plugins</groupId> |
| 135 | + <artifactId>maven-resources-plugin</artifactId> |
| 136 | + <version>2.4.1</version> |
| 137 | + <configuration> |
| 138 | + <encoding>UTF-8</encoding> |
| 139 | + </configuration> |
| 140 | + </plugin> |
| 141 | + <plugin> |
| 142 | + <groupId>org.eclipse.tycho</groupId> |
| 143 | + <artifactId>target-platform-configuration</artifactId> |
| 144 | + <version>${tycho-version}</version> |
| 145 | + <configuration> |
| 146 | + <resolver>p2</resolver> |
| 147 | + <pomDependencies>consider</pomDependencies> |
| 148 | + </configuration> |
| 149 | + </plugin> |
| 150 | + <plugin> |
| 151 | + <groupId>org.codehaus.mojo</groupId> |
| 152 | + <artifactId>findbugs-maven-plugin</artifactId> |
| 153 | + <version>2.3.2</version> |
| 154 | + <configuration> |
| 155 | + <findbugsXmlOutput>true</findbugsXmlOutput> |
| 156 | + <failOnError>false</failOnError> |
| 157 | + </configuration> |
| 158 | + <executions> |
| 159 | + <execution> |
| 160 | + <goals> |
| 161 | + <goal>check</goal> |
| 162 | + </goals> |
| 163 | + </execution> |
| 164 | + </executions> |
| 165 | + </plugin> |
| 166 | + <plugin> |
| 167 | + <groupId>org.apache.maven.plugins</groupId> |
| 168 | + <artifactId>maven-pmd-plugin</artifactId> |
| 169 | + <version>2.5</version> |
| 170 | + <configuration> |
| 171 | + <sourceEncoding>utf-8</sourceEncoding> |
| 172 | + <minimumTokens>100</minimumTokens> |
| 173 | + <targetJdk>1.5</targetJdk> |
| 174 | + <format>xml</format> |
| 175 | + <failOnViolation>false</failOnViolation> |
| 176 | + </configuration> |
| 177 | + <executions> |
| 178 | + <execution> |
| 179 | + <goals> |
| 180 | + <goal>cpd-check</goal> |
| 181 | + </goals> |
| 182 | + </execution> |
| 183 | + </executions> |
| 184 | + </plugin> |
| 185 | + <plugin> |
| 186 | + <groupId>org.apache.maven.plugins</groupId> |
| 187 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 188 | + <version>2.8</version> |
| 189 | + <executions> |
| 190 | + <execution> |
| 191 | + <goals> |
| 192 | + <goal>aggregate</goal> |
| 193 | + </goals> |
| 194 | + </execution> |
| 195 | + </executions> |
| 196 | + </plugin> |
| 197 | + <plugin> |
| 198 | + <groupId>org.eclipse.dash.maven</groupId> |
| 199 | + <artifactId>eclipse-maven-signing-plugin</artifactId> |
| 200 | + <!-- TODO: need 1.0.1.2-SNAPSHOT of the signing plugin until bugfix for |
| 201 | + https://bugs.eclipse.org/bugs/show_bug.cgi?id=347591 |
| 202 | + is available in maven.eclipse.org --> |
| 203 | + <version>1.0.1.2-SNAPSHOT</version> |
| 204 | + </plugin> |
| 205 | + </plugins> |
| 206 | + </pluginManagement> |
| 207 | + <sourceDirectory>src/</sourceDirectory> |
| 208 | + </build> |
| 209 | + |
| 210 | + <profiles> |
| 211 | + <profile> |
| 212 | + <id>platform-helios</id> |
| 213 | + <activation> |
| 214 | + <property> |
| 215 | + <name>platform-version-name</name> |
| 216 | + <value>helios</value> |
| 217 | + </property> |
| 218 | + </activation> |
| 219 | + <properties> |
| 220 | + <eclipse-site>http://download.eclipse.org/releases/helios</eclipse-site> |
| 221 | + <platform-version>[3.6,3.7)</platform-version> |
| 222 | + </properties> |
| 223 | + </profile> |
| 224 | + <profile> |
| 225 | + <id>platform-indigo</id> |
| 226 | + <activation> |
| 227 | + <property> |
| 228 | + <name>platform-version-name</name> |
| 229 | + <value>indigo</value> |
| 230 | + </property> |
| 231 | + </activation> |
| 232 | + <properties> |
| 233 | + <eclipse-site>http://download.eclipse.org/releases/indigo</eclipse-site> |
| 234 | + <platform-version>[3.7,3.8)</platform-version> |
| 235 | + </properties> |
| 236 | + </profile> |
| 237 | + <profile> |
| 238 | + <id>static-checks</id> |
| 239 | + <build> |
| 240 | + <plugins> |
| 241 | + <plugin> |
| 242 | + <groupId>org.codehaus.mojo</groupId> |
| 243 | + <artifactId>findbugs-maven-plugin</artifactId> |
| 244 | + </plugin> |
| 245 | + <plugin> |
| 246 | + <groupId>org.apache.maven.plugins</groupId> |
| 247 | + <artifactId>maven-pmd-plugin</artifactId> |
| 248 | + </plugin> |
| 249 | + </plugins> |
| 250 | + </build> |
| 251 | + </profile> |
| 252 | + </profiles> |
| 253 | +</project> |
0 commit comments