| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- Copyright (C) 2014, 2018 Red Hat, Inc. and others. |
| All rights reserved. This program |
| and the accompanying materials are made available under the terms of the Eclipse |
| Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html |
| Contributors: Red Hat Incorporated - initial implementation --> |
| |
| <project |
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
| xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| <modelVersion>4.0.0</modelVersion> |
| |
| <groupId>org.eclipse.dltk</groupId> |
| <artifactId>dltk.build.all</artifactId> |
| <version>5.10.0-SNAPSHOT</version> |
| <packaging>pom</packaging> |
| <url>https://eclipse.org/dltk</url> |
| <prerequisites> |
| <maven>3.3.1</maven> |
| </prerequisites> |
| <ciManagement> |
| <system>hudson</system> |
| <url>https://hudson.eclipse.org/dltk</url> |
| </ciManagement> |
| <issueManagement> |
| <system>Bugzilla</system> |
| <url>https://bugs.eclipse.org/bugs/buglist.cgi?product=dltk</url> |
| </issueManagement> |
| <name>Dynamic Language Toolkit (DLTK)</name> |
| |
| <modules> |
| <module>../org.eclipse.dltk.core</module> |
| <module>../org.eclipse.dltk.javascript</module> |
| <module>../org.eclipse.dltk.tcl</module> |
| <module>../org.eclipse.dltk.ruby</module> |
| <module>../org.eclipse.dltk.python</module> |
| <module>../org.eclipse.dltk.sh</module> |
| <module>build/update.site</module> |
| <!-- <module>testplatform</module> <module>javascript.tests</module> --> |
| <!-- <module>site</module> --> |
| </modules> |
| |
| <properties> |
| <tycho-version>1.2.0</tycho-version> |
| <tycho-groupid>org.eclipse.tycho</tycho-groupid> |
| <antrun-version>1.8</antrun-version> |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| <pack200>${java.home}/bin</pack200> |
| <tycho.testArgLine></tycho.testArgLine> |
| <tycho.scmUrl>scm:git:git://git.eclipse.org/gitroot/dltk/org.eclipse.dltk.releng.git</tycho.scmUrl> |
| <eclipserun-repo>http://download.eclipse.org/eclipse/updates/4.9-I-builds/</eclipserun-repo> |
| </properties> |
| |
| <repositories> |
| <repository> |
| <id>license-feature</id> |
| <url>http://download.eclipse.org/cbi/updates/license/</url> |
| <layout>p2</layout> |
| </repository> |
| </repositories> |
| |
| <pluginRepositories> |
| <pluginRepository> |
| <id>cbi-releases</id> |
| <url>https://repo.eclipse.org/content/repositories/cbi-releases/</url> |
| </pluginRepository> |
| </pluginRepositories> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>tycho-packaging-plugin</artifactId> |
| <version>${tycho-version}</version> |
| <configuration> |
| <sourceReferences> |
| <generate>true</generate> |
| </sourceReferences> |
| </configuration> |
| <dependencies> |
| <dependency> |
| <groupId>org.eclipse.tycho.extras</groupId> |
| <artifactId>tycho-sourceref-jgit</artifactId> |
| <version>${tycho-version}</version> |
| </dependency> |
| </dependencies> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <version>3.7.0</version> |
| </plugin> |
| <plugin> |
| <groupId>${tycho-groupid}</groupId> |
| <artifactId>tycho-maven-plugin</artifactId> |
| <version>${tycho-version}</version> |
| <extensions>true</extensions> |
| </plugin> |
| <plugin> |
| <groupId>${tycho-groupid}</groupId> |
| <artifactId>tycho-compiler-plugin</artifactId> |
| <version>${tycho-version}</version> |
| </plugin> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>tycho-source-plugin</artifactId> |
| <version>${tycho-version}</version> |
| <executions> |
| <execution> |
| <id>plugin-source</id> |
| <goals> |
| <goal>plugin-source</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>target-platform-configuration</artifactId> |
| <version>${tycho-version}</version> |
| <configuration> |
| <resolver>p2</resolver> |
| <environments> |
| <environment> |
| <os>linux</os> |
| <ws>gtk</ws> |
| <arch>x86</arch> |
| </environment> |
| <environment> |
| <os>linux</os> |
| <ws>gtk</ws> |
| <arch>x86_64</arch> |
| </environment> |
| <environment> |
| <os>win32</os> |
| <ws>win32</ws> |
| <arch>x86</arch> |
| </environment> |
| <environment> |
| <os>win32</os> |
| <ws>win32</ws> |
| <arch>x86_64</arch> |
| </environment> |
| <environment> |
| <os>macosx</os> |
| <ws>cocoa</ws> |
| <arch>x86_64</arch> |
| </environment> |
| </environments> |
| <target> |
| <artifact> |
| <groupId>org.eclipse.dltk.core</groupId> |
| <artifactId>org.eclipse.dltk.core.targetplatform</artifactId> |
| <version>${project.version}</version> |
| </artifact> |
| </target> |
| </configuration> |
| </plugin> |
| </plugins> |
| <pluginManagement> |
| <plugins> |
| <plugin> |
| <groupId>org.eclipse.tycho.extras</groupId> |
| <artifactId>tycho-eclipserun-plugin</artifactId> |
| <version>${tycho-version}</version> |
| <executions> |
| <execution> |
| <id>build_indexes</id> |
| <phase>compile</phase> |
| <goals> |
| <goal>eclipse-run</goal> |
| </goals> |
| <configuration> |
| <executionEnvironment>JavaSE-1.8</executionEnvironment> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </pluginManagement> |
| </build> |
| |
| <profiles> |
| <profile> |
| <id>sign</id> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>target-platform-configuration</artifactId> |
| <version>${tycho-version}</version> |
| <configuration> |
| <includePackedArtifacts>true</includePackedArtifacts> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.eclipse.tycho.extras</groupId> |
| <artifactId>tycho-pack200a-plugin</artifactId> |
| <version>${tycho-version}</version> |
| <executions> |
| <execution> |
| <id>pack200-normalize</id> |
| <goals> |
| <goal>normalize</goal> |
| </goals> |
| <phase>package</phase> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.eclipse.cbi.maven.plugins</groupId> |
| <artifactId>eclipse-jarsigner-plugin</artifactId> |
| <version>1.1.5</version> |
| <executions> |
| <execution> |
| <id>sign</id> |
| <goals> |
| <goal>sign</goal> |
| </goals> |
| <phase>package</phase> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.eclipse.tycho.extras</groupId> |
| <artifactId>tycho-pack200b-plugin</artifactId> |
| <version>${tycho-version}</version> |
| <executions> |
| <execution> |
| <id>pack200-pack</id> |
| <goals> |
| <goal>pack</goal> |
| </goals> |
| <phase>package</phase> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>tycho-p2-plugin</artifactId> |
| <version>${tycho-version}</version> |
| <executions> |
| <execution> |
| <id>p2-metadata</id> |
| <goals> |
| <goal>p2-metadata</goal> |
| </goals> |
| <phase>package</phase> |
| </execution> |
| </executions> |
| <configuration> |
| <defaultP2Metadata>false</defaultP2Metadata> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| </profile> |
| <profile> |
| <id>sonar</id> |
| <properties> |
| <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin> |
| <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis> |
| <sonar.jacoco.reportPath>${project.basedir}/target/jacoco.exec</sonar.jacoco.reportPath> |
| <sonar.java.source>1.8</sonar.java.source> |
| <maven.test.failure.ignore>true</maven.test.failure.ignore> |
| <maven.test.error.ignore>true</maven.test.error.ignore> |
| <tycho.testArgLine>${jacoco.argLine}</tycho.testArgLine> |
| </properties> |
| <build> |
| <pluginManagement> |
| <plugins> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>sonar-maven-plugin</artifactId> |
| <version>3.3.0.603</version> |
| </plugin> |
| </plugins> |
| </pluginManagement> |
| <plugins> |
| <plugin> |
| <groupId>org.jacoco</groupId> |
| <artifactId>jacoco-maven-plugin</artifactId> |
| <version>0.8.1</version> |
| <executions> |
| <execution> |
| <goals> |
| <goal>prepare-agent</goal> |
| </goals> |
| <id>pre-test</id> |
| <configuration> |
| <destFile>${sonar.jacoco.reportPath}</destFile> |
| <includes> |
| <include>org.eclipse.dltk.*</include> |
| </includes> |
| <propertyName>jacoco.argLine</propertyName> |
| <append>true</append> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| </profile> |
| <profile> |
| <id>reports</id> |
| <build> |
| <pluginManagement> |
| <plugins> |
| <plugin> |
| <groupId>${tycho-groupid}</groupId> |
| <artifactId>tycho-compiler-plugin</artifactId> |
| <version>${tycho-version}</version> |
| <configuration> |
| <logEnabled>true</logEnabled> |
| <logDirectory>${project.build.directory}/logfiles/</logDirectory> |
| <log>xml</log> |
| <showWarnings>true</showWarnings> |
| </configuration> |
| </plugin> |
| </plugins> |
| </pluginManagement> |
| </build> |
| </profile> |
| </profiles> |
| </project> |