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> |
| 7 | <artifactId>org.eclipse.vex-releng</artifactId> |
Florian Thienel | 1af74b9 | 2012-09-23 11:47:58 +0200 | [diff] [blame] | 8 | <version>1.1.0-SNAPSHOT</version> |
Florian Thienel | fa641e5 | 2011-11-10 00:49:26 +0100 | [diff] [blame] | 9 | <packaging>pom</packaging> |
Florian Thienel | be72a93 | 2013-01-11 16:42:06 +0100 | [diff] [blame] | 10 | |
Florian Thienel | fa641e5 | 2011-11-10 00:49:26 +0100 | [diff] [blame] | 11 | <properties> |
Florian Thienel | 091b842 | 2013-01-11 13:53:42 +0100 | [diff] [blame] | 12 | <tycho-version>0.16.0</tycho-version> |
| 13 | <project.build.sourceEncoding>Cp1252</project.build.sourceEncoding> |
Florian Thienel | fa641e5 | 2011-11-10 00:49:26 +0100 | [diff] [blame] | 14 | </properties> |
Florian Thienel | 4eff451 | 2013-01-29 19:52:16 +0100 | [diff] [blame] | 15 | |
| 16 | <profiles> |
| 17 | <profile> |
| 18 | <id>ci-build</id> |
| 19 | <activation> |
| 20 | <property> |
| 21 | <name>build-type</name> |
| 22 | <value>ci</value> |
| 23 | </property> |
| 24 | </activation> |
| 25 | <properties> |
| 26 | <qualifier-format>yyyyMMddHHmm</qualifier-format> |
| 27 | </properties> |
| 28 | </profile> |
| 29 | <profile> |
| 30 | <id>milestone-build</id> |
| 31 | <activation> |
| 32 | <property> |
| 33 | <name>build-type</name> |
| 34 | <value>milestone</value> |
| 35 | </property> |
| 36 | </activation> |
| 37 | <properties> |
| 38 | <qualifier-format>'${milestone}_'yyyyMMddHHmm</qualifier-format> |
| 39 | </properties> |
| 40 | </profile> |
| 41 | </profiles> |
Florian Thienel | fa641e5 | 2011-11-10 00:49:26 +0100 | [diff] [blame] | 42 | |
Florian Thienel | 091b842 | 2013-01-11 13:53:42 +0100 | [diff] [blame] | 43 | <repositories> |
| 44 | <repository> |
| 45 | <id>indigo</id> |
| 46 | <url>http://download.eclipse.org/releases/indigo/</url> |
| 47 | <layout>p2</layout> |
| 48 | </repository> |
| 49 | <repository> |
| 50 | <id>orbit</id> |
| 51 | <url>http://download.eclipse.org/tools/orbit/downloads/drops/R20110523182458/repository</url> |
| 52 | <layout>p2</layout> |
| 53 | </repository> |
Florian Thienel | 091b842 | 2013-01-11 13:53:42 +0100 | [diff] [blame] | 54 | </repositories> |
Florian Thienel | be72a93 | 2013-01-11 16:42:06 +0100 | [diff] [blame] | 55 | |
Florian Thienel | 091b842 | 2013-01-11 13:53:42 +0100 | [diff] [blame] | 56 | <build> |
| 57 | <plugins> |
| 58 | <plugin> |
| 59 | <groupId>org.eclipse.tycho</groupId> |
| 60 | <artifactId>tycho-maven-plugin</artifactId> |
| 61 | <version>${tycho-version}</version> |
| 62 | <extensions>true</extensions> |
| 63 | </plugin> |
| 64 | <plugin> |
| 65 | <groupId>org.eclipse.tycho</groupId> |
Florian Thienel | af4c5df | 2013-01-11 18:56:58 +0100 | [diff] [blame] | 66 | <artifactId>tycho-packaging-plugin</artifactId> |
Florian Thienel | 091b842 | 2013-01-11 13:53:42 +0100 | [diff] [blame] | 67 | <version>${tycho-version}</version> |
Florian Thienel | af4c5df | 2013-01-11 18:56:58 +0100 | [diff] [blame] | 68 | <dependencies> |
| 69 | <dependency> |
| 70 | <groupId>org.eclipse.tycho.extras</groupId> |
| 71 | <artifactId>tycho-buildtimestamp-jgit</artifactId> |
| 72 | <version>${tycho-version}</version> |
| 73 | </dependency> |
| 74 | </dependencies> |
Florian Thienel | 091b842 | 2013-01-11 13:53:42 +0100 | [diff] [blame] | 75 | <configuration> |
Florian Thienel | af4c5df | 2013-01-11 18:56:58 +0100 | [diff] [blame] | 76 | <timestampProvider>jgit</timestampProvider> |
| 77 | <jgit.ignore> |
| 78 | pom.xml |
| 79 | </jgit.ignore> |
Florian Thienel | 4eff451 | 2013-01-29 19:52:16 +0100 | [diff] [blame] | 80 | <format>${qualifier-format}</format> |
Florian Thienel | 091b842 | 2013-01-11 13:53:42 +0100 | [diff] [blame] | 81 | </configuration> |
| 82 | </plugin> |
Florian Thienel | af4c5df | 2013-01-11 18:56:58 +0100 | [diff] [blame] | 83 | <plugin> |
| 84 | <groupId>org.eclipse.tycho</groupId> |
| 85 | <artifactId>tycho-p2-plugin</artifactId> |
| 86 | <version>${tycho-version}</version> |
| 87 | <configuration> |
| 88 | <baselineRepositories> |
| 89 | <repository> |
| 90 | <url>http://git.eclipse.org/c/mylyn/org.eclipse.mylyn.docs.vex.git</url> |
| 91 | </repository> |
| 92 | </baselineRepositories> |
| 93 | </configuration> |
| 94 | </plugin> |
Florian Thienel | 091b842 | 2013-01-11 13:53:42 +0100 | [diff] [blame] | 95 | <plugin> |
| 96 | <groupId>org.eclipse.tycho</groupId> |
| 97 | <artifactId>tycho-versions-plugin</artifactId> |
| 98 | <version>${tycho-version}</version> |
| 99 | </plugin> |
Florian Thienel | be72a93 | 2013-01-11 16:42:06 +0100 | [diff] [blame] | 100 | <plugin> |
| 101 | <groupId>org.eclipse.tycho</groupId> |
| 102 | <artifactId>tycho-source-plugin</artifactId> |
| 103 | <version>${tycho-version}</version> |
| 104 | <executions> |
| 105 | <execution> |
| 106 | <id>plugin-source</id> |
| 107 | <goals> |
| 108 | <goal>plugin-source</goal> |
| 109 | </goals> |
| 110 | </execution> |
| 111 | </executions> |
| 112 | </plugin> |
Florian Thienel | 091b842 | 2013-01-11 13:53:42 +0100 | [diff] [blame] | 113 | </plugins> |
| 114 | </build> |
| 115 | |
Florian Thienel | fa641e5 | 2011-11-10 00:49:26 +0100 | [diff] [blame] | 116 | <modules> |
| 117 | <module>../org.eclipse.vex</module> |
| 118 | <module>../org.eclipse.vex.core</module> |
| 119 | <module>../org.eclipse.vex.ui</module> |
| 120 | <module>../org.eclipse.vex.dita</module> |
| 121 | <module>../org.eclipse.vex.docbook</module> |
| 122 | <module>../org.eclipse.vex.xhtml</module> |
Florian Thienel | b0cebcb | 2011-12-20 21:41:46 +0100 | [diff] [blame] | 123 | <module>../org.eclipse.vex.projectplan</module> |
Florian Thienel | fa641e5 | 2011-11-10 00:49:26 +0100 | [diff] [blame] | 124 | <module>../org.eclipse.vex.documentation</module> |
| 125 | <module>../org.eclipse.vex.feature</module> |
| 126 | <module>../org.eclipse.vex.sdk.feature</module> |
| 127 | <module>../org.eclipse.vex.repository</module> |
| 128 | <module>../org.eclipse.vex.core.tests</module> |
| 129 | <module>../org.eclipse.vex.ui.tests</module> |
| 130 | </modules> |
| 131 | |
Florian Thienel | 091b842 | 2013-01-11 13:53:42 +0100 | [diff] [blame] | 132 | <mailingLists> |
| 133 | <mailingList> |
| 134 | <name>Vex Mailing List</name> |
| 135 | <post>mylyn-vex-dev@eclipse.org</post> |
| 136 | <subscribe>https://dev.eclipse.org/mailman/listinfo/mylyn-vex-dev</subscribe> |
| 137 | <unsubscribe>https://dev.eclipse.org/mailman/listinfo/mylyn-vex-dev</unsubscribe> |
| 138 | <archive>http://dev.eclipse.org/mhonarc/lists/mylyn-vex-dev</archive> |
| 139 | </mailingList> |
| 140 | </mailingLists> |
| 141 | <issueManagement> |
| 142 | <url>https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced;classification=Mylyn;product=Mylyn%20Docs%20Vex</url> |
| 143 | <system>Bugzilla</system> |
| 144 | </issueManagement> |
| 145 | |
| 146 | <name>Vex Releng</name> |
Florian Thienel | fa641e5 | 2011-11-10 00:49:26 +0100 | [diff] [blame] | 147 | </project> |
| 148 | |