Benoit Maggi | 8bdfa8e | 2015-07-16 11:12:38 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Francois Le Fevre - CEA | 280fbb5 | 2015-09-04 16:12:48 +0200 | [diff] [blame] | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
Francois Le Fevre - CEA | b08cc04 | 2015-09-09 15:41:19 +0200 | [diff] [blame] | 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
Benoit Maggi | 8bdfa8e | 2015-07-16 11:12:38 +0200 | [diff] [blame] | 4 | <modelVersion>4.0.0</modelVersion> |
| 5 | <parent> |
| 6 | <groupId>org.eclipse.papyrus.sysml</groupId> |
Francois Le Fevre - CEA | aace74c | 2015-09-03 10:06:23 +0200 | [diff] [blame] | 7 | <artifactId>org.eclipse.papyrus.sysml14.releng</artifactId> |
Quentin Le Menez | 73556e3 | 2018-11-16 11:53:09 +0100 | [diff] [blame] | 8 | <version>1.3.200-SNAPSHOT</version> |
Benoit Maggi | 8bdfa8e | 2015-07-16 11:12:38 +0200 | [diff] [blame] | 9 | </parent> |
Francois Le Fevre - CEA | aace74c | 2015-09-03 10:06:23 +0200 | [diff] [blame] | 10 | <artifactId>org.eclipse.papyrus.sysml14.p2</artifactId> |
Benoit Maggi | 8bdfa8e | 2015-07-16 11:12:38 +0200 | [diff] [blame] | 11 | <packaging>eclipse-repository</packaging> |
Francois Le Fevre - CEA | de5d51b | 2015-11-18 16:39:13 +0100 | [diff] [blame] | 12 | |
| 13 | <build> |
| 14 | <plugins> |
| 15 | <plugin> |
| 16 | <!-- https://github.com/jbosstools/jbosstools-maven-plugins/wiki --> |
| 17 | <groupId>org.jboss.tools.tycho-plugins</groupId> |
| 18 | <artifactId>repository-utils</artifactId> |
Francois Le Fevre - CEA | de5d51b | 2015-11-18 16:39:13 +0100 | [diff] [blame] | 19 | <executions> |
| 20 | <execution> |
| 21 | <id>generate-facade</id> |
| 22 | <phase>package</phase> |
| 23 | <goals> |
| 24 | <goal>generate-repository-facade</goal> |
| 25 | </goals> |
| 26 | <configuration> |
| 27 | <symbols> |
| 28 | <update.site.name>SysML 1.4</update.site.name> |
Benoit Maggi | 20aba50 | 2015-12-11 16:51:26 +0100 | [diff] [blame] | 29 | <update.site.description>Use this URL in Eclipse to install SysML 1.4</update.site.description> |
Francois Le Fevre - CEA | de5d51b | 2015-11-18 16:39:13 +0100 | [diff] [blame] | 30 | <update.site.version>${project.version}</update.site.version> |
Francois Le Fevre - CEA | c4a1f6e | 2016-05-03 13:56:19 +0200 | [diff] [blame] | 31 | <project.website>https://www.eclipse.org/papyrus/components/sysml</project.website> |
Francois Le Fevre - CEA | de5d51b | 2015-11-18 16:39:13 +0100 | [diff] [blame] | 32 | <project.issues>${project.issueManagement.url}</project.issues> |
| 33 | <eclipse.target>${eclipse.targetrelease}</eclipse.target> |
Quentin Le Menez | 446ecf9 | 2018-10-08 10:45:40 +0200 | [diff] [blame] | 34 | <update.site.nightly>https://ci.eclipse.org/papyrus/job/papyrus-sysml-master/lastSuccessfulBuild/artifact/releng/org.eclipse.papyrus.sysml14.p2/target/repository/</update.site.nightly> |
Francois Le Fevre - CEA | de5d51b | 2015-11-18 16:39:13 +0100 | [diff] [blame] | 35 | </symbols> |
| 36 | <associateSites> |
Quentin Le Menez | 446ecf9 | 2018-10-08 10:45:40 +0200 | [diff] [blame] | 37 | <site>http://download.eclipse.org/modeling/mdt/papyrus/updates/releases/2018-09</site> |
Francois Le Fevre - CEA | de5d51b | 2015-11-18 16:39:13 +0100 | [diff] [blame] | 38 | </associateSites> |
| 39 | <siteTemplateFolder>siteTemplate</siteTemplateFolder> |
| 40 | <p2StatsUrl>http://download.eclipse.org/stats</p2StatsUrl> |
| 41 | </configuration> |
| 42 | </execution> |
| 43 | </executions> |
| 44 | <dependencies> |
| 45 | <dependency> |
| 46 | <groupId>org.eclipse.tycho</groupId> |
| 47 | <artifactId>tycho-packaging-plugin</artifactId> |
| 48 | <version>${tycho-version}</version> |
| 49 | </dependency> |
| 50 | </dependencies> |
| 51 | </plugin> |
Benoit Maggi | 20aba50 | 2015-12-11 16:51:26 +0100 | [diff] [blame] | 52 | <plugin> |
| 53 | <groupId>org.apache.maven.plugins</groupId> |
| 54 | <artifactId>maven-deploy-plugin</artifactId> |
| 55 | <configuration> |
| 56 | <skip>true</skip> |
| 57 | </configuration> |
| 58 | </plugin> |
Francois Le Fevre - CEA | de5d51b | 2015-11-18 16:39:13 +0100 | [diff] [blame] | 59 | </plugins> |
| 60 | </build> |
Francois Le Fevre - CEA | 72363d2 | 2015-11-10 14:14:05 +0100 | [diff] [blame] | 61 | <name>org.eclipse.papyrus.sysml14.p2</name> |
| 62 | <description>This plugin defines the update site of SysML 1.4 plugins and feature.</description> |
Benoit Maggi | 8bdfa8e | 2015-07-16 11:12:38 +0200 | [diff] [blame] | 63 | </project> |