| <?xml version="1.0" encoding="UTF-8"?> |
| <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> |
| |
| <name>EclipseLink Oracle DDL Parent</name> |
| <groupId>org.eclipse.persistence</groupId> |
| <artifactId>oracleddl.parent</artifactId> |
| <version>1.0.0-SNAPSHOT</version> |
| <packaging>pom</packaging> |
| <url>http://www.eclipse.org/eclipselink/</url> |
| |
| <!-- tycho requires maven >= 3.0 --> |
| <prerequisites> |
| <maven>3.0</maven> |
| </prerequisites> |
| |
| <properties> |
| <!-- TOOL Properties --> |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| <tycho.version>0.15.0</tycho.version> |
| <junit4-version>4.8.1</junit4-version> |
| <!-- PROJECT Properties --> |
| <release.version>1.0.0</release.version> |
| <!-- maven.build.timestamp.format>yyyyMMddHHmm</maven.build.timestamp.format> Seems it must be in settings.xml --> |
| <build.qualifier>v${maven.build.timestamp}</build.qualifier> |
| <forceContextQualifier>${build.qualifier}</forceContextQualifier> |
| <src>./src/main/java,./src/test/java</src> |
| </properties> |
| |
| <organization> |
| <name>Eclipse.org - EclipseLink Project</name> |
| <url>http://www.eclipse.org/eclipselink</url> |
| </organization> |
| |
| <build> |
| <defaultGoal>verify</defaultGoal> |
| <plugins> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>tycho-compiler-plugin</artifactId> |
| <version>${tycho.version}</version> |
| <configuration> |
| <!-- Not needed. Compiler compatibility setting gotten from "Bundle-RequiredExecutionEnvironment" in manifest --> |
| <!-- source>1.6</source --> |
| <!-- target>1.6</target --> |
| <compilerArgument>-nowarn</compilerArgument> <!-- disable all warnings --> |
| <!-- compilerArgument>-warn:[+|-]warning_tokens_separated_by_comma - Specify the set of enabled warnings </compilerArgument --> |
| <!-- compilerArgument>-err:warning_tokens_separated_by_comma - convert exactly the listed warnings to errors </compilerArgument --> |
| <!-- compilerArgument>-err:+warning_tokens_separated_by_comma - convert additional warnings to errors</compilerArgument --> |
| <!-- compilerArgument>-err:-warning_tokens_separated_by_comma - remove specific warnings from being converted to errors </compilerArgument --> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>tycho-maven-plugin</artifactId> |
| <version>${tycho.version}</version> |
| <extensions>true</extensions> |
| <configuration> |
| <resolver>p2</resolver> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>target-platform-configuration</artifactId> |
| <version>${tycho.version}</version> |
| <configuration> |
| <!-- resolver>p2</resolver - default?? --> |
| <environments> |
| <environment> |
| <os>linux</os> |
| <ws>gtk</ws> |
| <arch>x86_64</arch> |
| </environment> |
| <environment> |
| <os>linux</os> |
| <ws>gtk</ws> |
| <arch>x86</arch> |
| </environment> |
| <environment> |
| <os>macosx</os> |
| <ws>carbon</ws> |
| <arch>x86</arch> |
| </environment> |
| <environment> |
| <os>macosx</os> |
| <ws>cocoa</ws> |
| <arch>x86</arch> |
| </environment> |
| <environment> |
| <os>macosx</os> |
| <ws>cocoa</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> |
| </environments> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>tycho-source-plugin</artifactId> |
| <version>${tycho.version}</version> |
| <executions> |
| <execution> |
| <id>plugin-source</id> |
| <phase>package</phase> |
| <goals> |
| <goal>plugin-source</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| <finalName>${project.artifactId}_${release.version}.${build.qualifier}</finalName> |
| </build> |
| |
| <pluginRepositories> |
| <pluginRepository> |
| <id>tycho-0.15.0-staged</id> |
| <url>https://oss.sonatype.org/content/repositories/orgeclipsetycho-255/</url> |
| </pluginRepository> |
| <!-- pluginRepository> |
| <id>tycho-public</id> |
| <url>https://oss.sonatype.org/content/groups/public/</url> |
| </pluginRepository --> |
| <pluginRepository> |
| <id>maven-eclipse</id> |
| <url>http://repo1.maven.org</url> |
| </pluginRepository> |
| </pluginRepositories> |
| |
| </project> |