Florian Thienel | fa641e5 | 2011-11-10 00:49:26 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project |
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
| 4 | xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| 5 | <modelVersion>4.0.0</modelVersion> |
| 6 | <groupId>org.eclipse.vex</groupId> |
Florian Thienel | 8703b3a | 2014-11-22 19:52:16 +0100 | [diff] [blame] | 7 | <artifactId>root</artifactId> |
Florian Thienel | 08725cf | 2014-12-27 15:15:45 +0100 | [diff] [blame] | 8 | <version>1.2.0-SNAPSHOT</version> |
Florian Thienel | fa641e5 | 2011-11-10 00:49:26 +0100 | [diff] [blame] | 9 | <packaging>pom</packaging> |
Florian Thienel | 8703b3a | 2014-11-22 19:52:16 +0100 | [diff] [blame] | 10 | <name>Vex Root POM</name> |
Florian Thienel | be72a93 | 2013-01-11 16:42:06 +0100 | [diff] [blame] | 11 | |
Florian Thienel | fa641e5 | 2011-11-10 00:49:26 +0100 | [diff] [blame] | 12 | <properties> |
Florian Thienel | 2be6265 | 2015-11-20 19:52:19 +0100 | [diff] [blame] | 13 | <tycho-version>0.24.0</tycho-version> |
| 14 | <tycho-extras-version>0.24.0</tycho-extras-version> |
Florian Thienel | 8703b3a | 2014-11-22 19:52:16 +0100 | [diff] [blame] | 15 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 16 | <java-version>1.6</java-version> |
Florian Thienel | fa641e5 | 2011-11-10 00:49:26 +0100 | [diff] [blame] | 17 | </properties> |
Florian Thienel | 194e90f | 2013-09-01 11:08:29 +0200 | [diff] [blame] | 18 | |
Florian Thienel | 4eff451 | 2013-01-29 19:52:16 +0100 | [diff] [blame] | 19 | <profiles> |
| 20 | <profile> |
Florian Thienel | 8703b3a | 2014-11-22 19:52:16 +0100 | [diff] [blame] | 21 | <id>build-server</id> |
| 22 | <build> |
| 23 | <pluginManagement> |
| 24 | <plugins> |
| 25 | <plugin> |
| 26 | <groupId>org.eclipse.tycho</groupId> |
| 27 | <artifactId>tycho-packaging-plugin</artifactId> |
| 28 | <version>${tycho-version}</version> |
| 29 | <configuration> |
| 30 | <jgit.dirtyWorkingTree>error</jgit.dirtyWorkingTree> |
| 31 | </configuration> |
| 32 | </plugin> |
| 33 | <plugin> |
| 34 | <groupId>org.eclipse.tycho.extras</groupId> |
| 35 | <artifactId>tycho-pack200a-plugin</artifactId> |
| 36 | <version>${tycho-version}</version> |
| 37 | </plugin> |
| 38 | <plugin> |
| 39 | <groupId>org.eclipse.tycho.extras</groupId> |
| 40 | <artifactId>tycho-pack200b-plugin</artifactId> |
| 41 | <version>${tycho-version}</version> |
| 42 | </plugin> |
| 43 | <plugin> |
| 44 | <groupId>org.eclipse.cbi.maven.plugins</groupId> |
| 45 | <artifactId>eclipse-jarsigner-plugin</artifactId> |
| 46 | <version>1.0.5</version> |
| 47 | </plugin> |
| 48 | </plugins> |
| 49 | </pluginManagement> |
| 50 | </build> |
| 51 | </profile> |
| 52 | <profile> |
Florian Thienel | 4eff451 | 2013-01-29 19:52:16 +0100 | [diff] [blame] | 53 | <id>ci-build</id> |
| 54 | <activation> |
Florian Thienel | 8703b3a | 2014-11-22 19:52:16 +0100 | [diff] [blame] | 55 | <activeByDefault>true</activeByDefault> |
Florian Thienel | 4eff451 | 2013-01-29 19:52:16 +0100 | [diff] [blame] | 56 | </activation> |
| 57 | <properties> |
Florian Thienel | 0fd38ca | 2013-10-12 15:02:07 +0200 | [diff] [blame] | 58 | <qualifier-format>'z'yyyyMMddHHmm</qualifier-format> |
Florian Thienel | 4eff451 | 2013-01-29 19:52:16 +0100 | [diff] [blame] | 59 | </properties> |
| 60 | </profile> |
| 61 | <profile> |
| 62 | <id>milestone-build</id> |
Florian Thienel | 4eff451 | 2013-01-29 19:52:16 +0100 | [diff] [blame] | 63 | <properties> |
| 64 | <qualifier-format>'${milestone}_'yyyyMMddHHmm</qualifier-format> |
| 65 | </properties> |
| 66 | </profile> |
Florian Thienel | 0fd38ca | 2013-10-12 15:02:07 +0200 | [diff] [blame] | 67 | <profile> |
| 68 | <id>release-build</id> |
Florian Thienel | 0fd38ca | 2013-10-12 15:02:07 +0200 | [diff] [blame] | 69 | <properties> |
| 70 | <qualifier-format>yyyyMMddHHmm</qualifier-format> |
| 71 | </properties> |
| 72 | </profile> |
Florian Thienel | 4eff451 | 2013-01-29 19:52:16 +0100 | [diff] [blame] | 73 | </profiles> |
Florian Thienel | fa641e5 | 2011-11-10 00:49:26 +0100 | [diff] [blame] | 74 | |
Florian Thienel | 091b842 | 2013-01-11 13:53:42 +0100 | [diff] [blame] | 75 | <repositories> |
| 76 | <repository> |
Florian Thienel | 194e90f | 2013-09-01 11:08:29 +0200 | [diff] [blame] | 77 | <id>kepler</id> |
| 78 | <url>http://download.eclipse.org/releases/kepler/</url> |
Florian Thienel | 091b842 | 2013-01-11 13:53:42 +0100 | [diff] [blame] | 79 | <layout>p2</layout> |
| 80 | </repository> |
| 81 | <repository> |
| 82 | <id>orbit</id> |
| 83 | <url>http://download.eclipse.org/tools/orbit/downloads/drops/R20110523182458/repository</url> |
| 84 | <layout>p2</layout> |
| 85 | </repository> |
Florian Thienel | 091b842 | 2013-01-11 13:53:42 +0100 | [diff] [blame] | 86 | </repositories> |
Florian Thienel | be72a93 | 2013-01-11 16:42:06 +0100 | [diff] [blame] | 87 | |
Florian Thienel | 8703b3a | 2014-11-22 19:52:16 +0100 | [diff] [blame] | 88 | <pluginRepositories> |
| 89 | <pluginRepository> |
| 90 | <id>eclipse-maven-releases</id> |
| 91 | <url>https://repo.eclipse.org/content/repositories/releases/</url> |
| 92 | <snapshots> |
| 93 | <enabled>false</enabled> |
| 94 | </snapshots> |
| 95 | </pluginRepository> |
| 96 | </pluginRepositories> |
| 97 | |
Florian Thienel | 091b842 | 2013-01-11 13:53:42 +0100 | [diff] [blame] | 98 | <build> |
Florian Thienel | 8703b3a | 2014-11-22 19:52:16 +0100 | [diff] [blame] | 99 | <pluginManagement> |
| 100 | <plugins> |
| 101 | <plugin> |
| 102 | <groupId>org.eclipse.m2e</groupId> |
| 103 | <artifactId>lifecycle-mapping</artifactId> |
| 104 | <version>1.0.0</version> |
| 105 | <configuration> |
| 106 | <lifecycleMappingMetadata> |
| 107 | <pluginExecutions> |
| 108 | <pluginExecution> |
| 109 | <pluginExecutionFilter> |
| 110 | <groupId> |
| 111 | org.eclipse.tycho |
| 112 | </groupId> |
| 113 | <artifactId> |
| 114 | tycho-packaging-plugin |
| 115 | </artifactId> |
| 116 | <versionRange> |
| 117 | [0.20.0,) |
| 118 | </versionRange> |
| 119 | <goals> |
| 120 | <goal>build-qualifier-aggregator</goal> |
| 121 | <goal>build-qualifier</goal> |
| 122 | <goal>validate-version</goal> |
| 123 | <goal>validate-id</goal> |
| 124 | </goals> |
| 125 | </pluginExecutionFilter> |
| 126 | <action> |
| 127 | <ignore></ignore> |
| 128 | </action> |
| 129 | </pluginExecution> |
| 130 | <pluginExecution> |
| 131 | <pluginExecutionFilter> |
| 132 | <groupId> |
| 133 | org.eclipse.tycho |
| 134 | </groupId> |
| 135 | <artifactId> |
| 136 | tycho-compiler-plugin |
| 137 | </artifactId> |
| 138 | <versionRange> |
| 139 | [0.20.0,) |
| 140 | </versionRange> |
| 141 | <goals> |
| 142 | <goal>compile</goal> |
| 143 | </goals> |
| 144 | </pluginExecutionFilter> |
| 145 | <action> |
| 146 | <ignore></ignore> |
| 147 | </action> |
| 148 | </pluginExecution> |
| 149 | </pluginExecutions> |
| 150 | </lifecycleMappingMetadata> |
| 151 | </configuration> |
| 152 | </plugin> |
| 153 | </plugins> |
| 154 | </pluginManagement> |
| 155 | |
Florian Thienel | 091b842 | 2013-01-11 13:53:42 +0100 | [diff] [blame] | 156 | <plugins> |
| 157 | <plugin> |
| 158 | <groupId>org.eclipse.tycho</groupId> |
| 159 | <artifactId>tycho-maven-plugin</artifactId> |
| 160 | <version>${tycho-version}</version> |
| 161 | <extensions>true</extensions> |
| 162 | </plugin> |
| 163 | <plugin> |
| 164 | <groupId>org.eclipse.tycho</groupId> |
Florian Thienel | 8703b3a | 2014-11-22 19:52:16 +0100 | [diff] [blame] | 165 | <artifactId>tycho-compiler-plugin</artifactId> |
| 166 | <version>${tycho-version}</version> |
| 167 | <configuration> |
| 168 | <source>${java-version}</source> |
| 169 | <target>${java-version}</target> |
| 170 | </configuration> |
| 171 | </plugin> |
| 172 | <plugin> |
| 173 | <groupId>org.eclipse.tycho</groupId> |
| 174 | <artifactId>target-platform-configuration</artifactId> |
| 175 | <version>${tycho-version}</version> |
| 176 | <configuration> |
| 177 | <executionEnvironmentDefault>JavaSE-${java-version}</executionEnvironmentDefault> |
| 178 | <includePackedArtifacts>true</includePackedArtifacts> |
| 179 | <environments> |
| 180 | <environment> |
| 181 | <os>win32</os> |
| 182 | <ws>win32</ws> |
| 183 | <arch>x86</arch> |
| 184 | </environment> |
| 185 | <environment> |
| 186 | <os>linux</os> |
| 187 | <ws>gtk</ws> |
| 188 | <arch>x86_64</arch> |
| 189 | </environment> |
| 190 | <environment> |
| 191 | <os>macosx</os> |
| 192 | <ws>cocoa</ws> |
| 193 | <arch>x86_64</arch> |
| 194 | </environment> |
| 195 | </environments> |
| 196 | </configuration> |
| 197 | </plugin> |
| 198 | <plugin> |
| 199 | <groupId>org.eclipse.tycho</groupId> |
Florian Thienel | af4c5df | 2013-01-11 18:56:58 +0100 | [diff] [blame] | 200 | <artifactId>tycho-packaging-plugin</artifactId> |
Florian Thienel | 091b842 | 2013-01-11 13:53:42 +0100 | [diff] [blame] | 201 | <version>${tycho-version}</version> |
Florian Thienel | af4c5df | 2013-01-11 18:56:58 +0100 | [diff] [blame] | 202 | <dependencies> |
| 203 | <dependency> |
| 204 | <groupId>org.eclipse.tycho.extras</groupId> |
| 205 | <artifactId>tycho-buildtimestamp-jgit</artifactId> |
| 206 | <version>${tycho-version}</version> |
| 207 | </dependency> |
| 208 | </dependencies> |
Florian Thienel | 091b842 | 2013-01-11 13:53:42 +0100 | [diff] [blame] | 209 | <configuration> |
Florian Thienel | af4c5df | 2013-01-11 18:56:58 +0100 | [diff] [blame] | 210 | <timestampProvider>jgit</timestampProvider> |
| 211 | <jgit.ignore> |
| 212 | pom.xml |
| 213 | </jgit.ignore> |
Florian Thienel | 4eff451 | 2013-01-29 19:52:16 +0100 | [diff] [blame] | 214 | <format>${qualifier-format}</format> |
Florian Thienel | 091b842 | 2013-01-11 13:53:42 +0100 | [diff] [blame] | 215 | </configuration> |
| 216 | </plugin> |
Florian Thienel | af4c5df | 2013-01-11 18:56:58 +0100 | [diff] [blame] | 217 | <plugin> |
| 218 | <groupId>org.eclipse.tycho</groupId> |
| 219 | <artifactId>tycho-p2-plugin</artifactId> |
| 220 | <version>${tycho-version}</version> |
| 221 | <configuration> |
| 222 | <baselineRepositories> |
| 223 | <repository> |
Florian Thienel | 2be6265 | 2015-11-20 19:52:19 +0100 | [diff] [blame] | 224 | <url>https://git.eclipse.org/r/mylyn/org.eclipse.mylyn.docs.vex</url> |
Florian Thienel | af4c5df | 2013-01-11 18:56:58 +0100 | [diff] [blame] | 225 | </repository> |
| 226 | </baselineRepositories> |
| 227 | </configuration> |
| 228 | </plugin> |
Florian Thienel | 091b842 | 2013-01-11 13:53:42 +0100 | [diff] [blame] | 229 | <plugin> |
| 230 | <groupId>org.eclipse.tycho</groupId> |
| 231 | <artifactId>tycho-versions-plugin</artifactId> |
| 232 | <version>${tycho-version}</version> |
| 233 | </plugin> |
Florian Thienel | be72a93 | 2013-01-11 16:42:06 +0100 | [diff] [blame] | 234 | <plugin> |
| 235 | <groupId>org.eclipse.tycho</groupId> |
| 236 | <artifactId>tycho-source-plugin</artifactId> |
| 237 | <version>${tycho-version}</version> |
Florian Thienel | be72a93 | 2013-01-11 16:42:06 +0100 | [diff] [blame] | 238 | </plugin> |
Florian Thienel | 091b842 | 2013-01-11 13:53:42 +0100 | [diff] [blame] | 239 | </plugins> |
| 240 | </build> |
| 241 | |
Florian Thienel | fa641e5 | 2011-11-10 00:49:26 +0100 | [diff] [blame] | 242 | <modules> |
| 243 | <module>../org.eclipse.vex</module> |
| 244 | <module>../org.eclipse.vex.core</module> |
| 245 | <module>../org.eclipse.vex.ui</module> |
| 246 | <module>../org.eclipse.vex.dita</module> |
| 247 | <module>../org.eclipse.vex.docbook</module> |
| 248 | <module>../org.eclipse.vex.xhtml</module> |
Florian Thienel | b0cebcb | 2011-12-20 21:41:46 +0100 | [diff] [blame] | 249 | <module>../org.eclipse.vex.projectplan</module> |
Florian Thienel | fa641e5 | 2011-11-10 00:49:26 +0100 | [diff] [blame] | 250 | <module>../org.eclipse.vex.documentation</module> |
| 251 | <module>../org.eclipse.vex.feature</module> |
Florian Thienel | 2be6265 | 2015-11-20 19:52:19 +0100 | [diff] [blame] | 252 | <!-- <module>../org.eclipse.vex.sdk.feature</module> --> |
Florian Thienel | fa641e5 | 2011-11-10 00:49:26 +0100 | [diff] [blame] | 253 | <module>../org.eclipse.vex.repository</module> |
| 254 | <module>../org.eclipse.vex.core.tests</module> |
| 255 | <module>../org.eclipse.vex.ui.tests</module> |
| 256 | </modules> |
| 257 | |
Florian Thienel | 8703b3a | 2014-11-22 19:52:16 +0100 | [diff] [blame] | 258 | <organization> |
| 259 | <name>Eclipse Foundation</name> |
| 260 | <url>http://www.eclipse.org/</url> |
| 261 | </organization> |
| 262 | <licenses> |
| 263 | <license> |
| 264 | <name>Eclipse Public License</name> |
| 265 | <url>http://www.eclipse.org/legal/epl-v10.html</url> |
| 266 | <distribution>repo</distribution> |
| 267 | </license> |
| 268 | </licenses> |
Florian Thienel | 091b842 | 2013-01-11 13:53:42 +0100 | [diff] [blame] | 269 | <mailingLists> |
| 270 | <mailingList> |
| 271 | <name>Vex Mailing List</name> |
| 272 | <post>mylyn-vex-dev@eclipse.org</post> |
| 273 | <subscribe>https://dev.eclipse.org/mailman/listinfo/mylyn-vex-dev</subscribe> |
| 274 | <unsubscribe>https://dev.eclipse.org/mailman/listinfo/mylyn-vex-dev</unsubscribe> |
| 275 | <archive>http://dev.eclipse.org/mhonarc/lists/mylyn-vex-dev</archive> |
| 276 | </mailingList> |
| 277 | </mailingLists> |
| 278 | <issueManagement> |
| 279 | <url>https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced;classification=Mylyn;product=Mylyn%20Docs%20Vex</url> |
| 280 | <system>Bugzilla</system> |
| 281 | </issueManagement> |
Florian Thienel | 8703b3a | 2014-11-22 19:52:16 +0100 | [diff] [blame] | 282 | <ciManagement> |
| 283 | <system>Hudson</system> |
| 284 | <url>https://hudson.eclipse.org/vex</url> |
| 285 | </ciManagement> |
Florian Thienel | 091b842 | 2013-01-11 13:53:42 +0100 | [diff] [blame] | 286 | |
Florian Thienel | fa641e5 | 2011-11-10 00:49:26 +0100 | [diff] [blame] | 287 | </project> |
| 288 | |