parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.bitstrings.eclipse.m2e.connectors</groupId> <artifactId>parent</artifactId> <version>3</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2011 bitstrings.org - Pino Silvaggio 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 --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <groupId>org.bitstrings.eclipse.m2e.connectors</groupId> <artifactId>parent</artifactId> <version>3</version> <name>m2e :: Connectors :: Parent</name> <packaging>pom</packaging> <licenses> <license> <name>EPL-1.0</name> <url>http://www.eclipse.org/legal/epl-v10.html</url> <distribution>repo</distribution> </license> </licenses> <organization> <name>bitstrings.org</name> </organization> <developers> <developer> <id>p</id> <name>Pino Silvaggio</name> <organization>bitstrings.org</organization> <timezone>-5</timezone> </developer> </developers> <contributors> <contributor> <name>Slavomír Varchula</name> <timezone>+1</timezone> </contributor> </contributors> <scm> <connection>scm:git:git@github.com:bitstrings/m2e-connectors-parent.git</connection> <developerConnection>scm:git:git@github.com:bitstrings/m2e-connectors-parent.git</developerConnection> <url>scm:git:git@github.com:bitstrings/m2e-connectors-parent.git</url> </scm> <repositories> <repository> <id>m2e</id> <layout>p2</layout> <url>http://download.eclipse.org/technology/m2e/milestones/1.0</url> </repository> <repository> <id>helios</id> <layout>p2</layout> <url>http://download.eclipse.org/releases/helios</url> </repository> <repository> <id>swtbot</id> <layout>p2</layout> <url>http://download.eclipse.org/technology/swtbot/helios/dev-build/update-site</url> </repository> </repositories> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <tycho.version>0.12.0</tycho.version> </properties> <build> <pluginManagement> <plugins> <plugin> <groupId>org.eclipse.tycho</groupId> <artifactId>tycho-compiler-plugin</artifactId> <version>${tycho.version}</version> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <groupId>org.eclipse.tycho</groupId> <artifactId>tycho-surefire-plugin</artifactId> <version>${tycho.version}</version> <configuration> <useUIHarness>false</useUIHarness> <argLine>${tycho.test.jvmArgs}</argLine> <appArgLine>-pluginCustomization ${basedir}/plugin_customization.ini</appArgLine> <forkedProcessTimeoutInSeconds>7200</forkedProcessTimeoutInSeconds> </configuration> </plugin> <plugin> <groupId>org.eclipse.tycho</groupId> <artifactId>maven-osgi-lifecycle-plugin</artifactId> <version>${tycho.version}</version> </plugin> <plugin> <groupId>org.eclipse.tycho</groupId> <artifactId>tycho-packaging-plugin</artifactId> <version>${tycho.version}</version> <configuration> <!-- workaround for TYCHO-349 or TYCHO-313 --> <strictVersions>false</strictVersions> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>2.5</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.2</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.eclipse.tycho</groupId> <artifactId>tycho-maven-plugin</artifactId> <version>${tycho.version}</version> <extensions>true</extensions> </plugin> <plugin> <groupId>org.eclipse.tycho</groupId> <artifactId>target-platform-configuration</artifactId> <version>${tycho.version}</version> <configuration> <resolver>p2</resolver> <ignoreTychoRepositories>true</ignoreTychoRepositories> <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> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>sun-jvm</id> <activation> <property> <name>java.vendor.url</name> <value>http://java.sun.com/</value> </property> </activation> <properties> <tycho.test.jvmArgs>-Xmx512m -XX:MaxPermSize=256m</tycho.test.jvmArgs> </properties> </profile> <profile> <id>osx</id> <activation> <property> <name>java.vendor.url</name> <value>http://www.apple.com/</value> </property> </activation> <properties> <tycho.test.jvmArgs>-Xmx512m -XX:MaxPermSize=256m -XstartOnFirstThread</tycho.test.jvmArgs> </properties> <build> <pluginManagement> <plugins> <plugin> <groupId>org.eclipse.tycho</groupId> <artifactId>tycho-surefire-plugin</artifactId> <configuration> <dependencies> <dependency> <artifactId>org.eclipse.jdt.launching.macosx</artifactId> <version>3.2.100</version> <type>eclipse-plugin</type> </dependency> </dependencies> </configuration> </plugin> </plugins> </pluginManagement> </build> </profile> </profiles> </project>