| <?xml version="1.0" encoding="UTF-8" standalone="no"?> |
| <!-- |
| |
| Licensed to the Apache Software Foundation (ASF) under one or more |
| contributor license agreements. See the NOTICE file distributed with |
| this work for additional information regarding copyright ownership. |
| The ASF licenses this file to You under the Apache License, Version 2.0 |
| (the "License"); you may not use this file except in compliance with |
| the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| |
| --><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/maven-v4_0_0.xsd"> |
| |
| <modelVersion>4.0.0</modelVersion> |
| |
| <parent> |
| <groupId>org.apache.camel</groupId> |
| <artifactId>camel-dependencies</artifactId> |
| <version>3.13.0-SNAPSHOT</version> |
| </parent> |
| |
| <groupId>org.apache.camel.tests</groupId> |
| <artifactId>camel-tests-parent</artifactId> |
| <version>1.0-SNAPSHOT</version> |
| <name>Camel Performance :: Parent</name> |
| <packaging>pom</packaging> |
| <description>Performance tests for Camel</description> |
| <url>https://camel.apache.org</url> |
| |
| <developers> |
| <developer> |
| <name>The Apache Camel Team</name> |
| <email>dev@camel.apache.org</email> |
| <url>https://camel.apache.org</url> |
| <organization>Apache Software Foundation</organization> |
| <organizationUrl>http://apache.org/</organizationUrl> |
| </developer> |
| </developers> |
| |
| <mailingLists> |
| <mailingList> |
| <name>Development List</name> |
| <subscribe>dev-subscribe@camel.apache.org</subscribe> |
| <unsubscribe>dev-unsubscribe@camel.apache.org</unsubscribe> |
| <post>dev@camel.apache.org</post> |
| </mailingList> |
| <mailingList> |
| <name>User List</name> |
| <subscribe>users-subscribe@camel.apache.org</subscribe> |
| <unsubscribe>users-unsubscribe@camel.apache.org</unsubscribe> |
| <post>users@camel.apache.org</post> |
| </mailingList> |
| <mailingList> |
| <name>Commits List</name> |
| <subscribe>commits-subscribe@camel.apache.org</subscribe> |
| <unsubscribe>commits-unsubscribe@camel.apache.org</unsubscribe> |
| <post>commits@camel.apache.org</post> |
| </mailingList> |
| </mailingLists> |
| |
| <issueManagement> |
| <system>jira</system> |
| <url>https://issues.apache.org/jira/browse/CAMEL</url> |
| </issueManagement> |
| |
| <distributionManagement> |
| <site> |
| <id>apache.website</id> |
| <url>${site-repo-url}</url> |
| </site> |
| </distributionManagement> |
| |
| <modules> |
| <module>tests</module> |
| <module>profiling</module> |
| </modules> |
| |
| <properties> |
| <!-- unify the encoding for all the modules --> |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| |
| <site-repo-url>scpexe://people.apache.org/www/camel.apache.org/maven/</site-repo-url> |
| <jdk.version>1.8</jdk.version> |
| <compiler.fork>false</compiler.fork> |
| |
| <camel.version>3.13.0-SNAPSHOT</camel.version> |
| |
| <!-- Versions --> |
| <maven-compiler-plugin-version>3.8.1</maven-compiler-plugin-version> |
| <maven-surefire-plugin-version>3.0.0-M4</maven-surefire-plugin-version> |
| <maven-javadoc-plugin-version>3.0.1</maven-javadoc-plugin-version> |
| <exec-maven-plugin-version>1.6.0</exec-maven-plugin-version> |
| <surefire.version>${maven-surefire-plugin-version}</surefire.version> |
| <jmh-version>1.33</jmh-version> |
| <osgi-version>6.0.0</osgi-version> |
| </properties> |
| |
| <repositories> |
| <repository> |
| <id>apache.snapshots</id> |
| <url>https://repository.apache.org/snapshots/</url> |
| <name>Apache Snapshot Repo</name> |
| <snapshots> |
| <enabled>true</enabled> |
| </snapshots> |
| <releases> |
| <enabled>false</enabled> |
| </releases> |
| </repository> |
| </repositories> |
| <pluginRepositories> |
| <pluginRepository> |
| <id>apache.snapshots</id> |
| <url>https://repository.apache.org/snapshots/</url> |
| <snapshots> |
| <enabled>true</enabled> |
| </snapshots> |
| <releases> |
| <enabled>false</enabled> |
| </releases> |
| </pluginRepository> |
| </pluginRepositories> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-deploy-plugin</artifactId> |
| <configuration> |
| <skip>true</skip> |
| </configuration> |
| </plugin> |
| |
| <plugin> |
| <artifactId>maven-surefire-plugin</artifactId> |
| <configuration> |
| <forkCount>1</forkCount> |
| <reuseForks>false</reuseForks> |
| <systemPropertyVariables> |
| <skipStartingCamelContext>${skip.starting.camel.context}</skipStartingCamelContext> |
| </systemPropertyVariables> |
| </configuration> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <version>${maven-compiler-plugin-version}</version> |
| <configuration> |
| <source>${jdk.version}</source> |
| <target>${jdk.version}</target> |
| <maxmem>512M</maxmem> |
| <fork>${compiler.fork}</fork> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-resources-plugin</artifactId> |
| <configuration> |
| <encoding>UTF-8</encoding> |
| </configuration> |
| </plugin> |
| </plugins> |
| <pluginManagement> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-remote-resources-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>process-resource-bundles</id> |
| <phase>disabled</phase> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>exec-maven-plugin</artifactId> |
| <version>${exec-maven-plugin-version}</version> |
| </plugin> |
| </plugins> |
| </pluginManagement> |
| </build> |
| |
| </project> |