Polished pom.xml to not use deprecated mvn options
Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/70ca8304 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/70ca8304 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/70ca8304 Branch: refs/heads/master Commit: 70ca8304b8e1fef6fe2dfeaf16b3989ecb685618 Parents: 06d5547 Author: Claus Ibsen <davscl...@apache.org> Authored: Sun May 3 08:28:04 2015 +0200 Committer: Claus Ibsen <davscl...@apache.org> Committed: Sun May 3 10:52:36 2015 +0200 ---------------------------------------------------------------------- components/camel-hazelcast/pom.xml | 142 ++++++++++++++++---------------- 1 file changed, 71 insertions(+), 71 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/70ca8304/components/camel-hazelcast/pom.xml ---------------------------------------------------------------------- diff --git a/components/camel-hazelcast/pom.xml b/components/camel-hazelcast/pom.xml index f659202..826e275 100644 --- a/components/camel-hazelcast/pom.xml +++ b/components/camel-hazelcast/pom.xml @@ -15,84 +15,84 @@ 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> +<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>components</artifactId> - <version>2.16-SNAPSHOT</version> - </parent> + <parent> + <groupId>org.apache.camel</groupId> + <artifactId>components</artifactId> + <version>2.16-SNAPSHOT</version> + </parent> - <artifactId>camel-hazelcast</artifactId> - <packaging>bundle</packaging> - <name>Camel :: HazelCast</name> - <description>Camel HazelCast based work queue implementation</description> + <artifactId>camel-hazelcast</artifactId> + <packaging>bundle</packaging> + <name>Camel :: HazelCast</name> + <description>Camel HazelCast based work queue implementation</description> - <properties> - <camel.osgi.import.before.defaults> - com.hazelcast.*;version="[3.2,4)" - </camel.osgi.import.before.defaults> - <camel.osgi.export.pkg> - org.apache.camel.component.hazelcast.*;${camel.osgi.version}, - org.apache.camel.processor.idempotent.hazelcast.*, - org.apache.camel.processor.aggregate.hazelcast.* - </camel.osgi.export.pkg> - <camel.osgi.export.service>org.apache.camel.spi.ComponentResolver;component=hazelcast</camel.osgi.export.service> - </properties> + <properties> + <camel.osgi.import.before.defaults> + com.hazelcast.*;version="[3.2,4)" + </camel.osgi.import.before.defaults> + <camel.osgi.export.pkg> + org.apache.camel.component.hazelcast.*;${camel.osgi.version}, + org.apache.camel.processor.idempotent.hazelcast.*, + org.apache.camel.processor.aggregate.hazelcast.* + </camel.osgi.export.pkg> + <camel.osgi.export.service>org.apache.camel.spi.ComponentResolver;component=hazelcast</camel.osgi.export.service> + </properties> - <dependencies> + <dependencies> - <dependency> - <groupId>org.apache.camel</groupId> - <artifactId>camel-core</artifactId> - </dependency> - <dependency> - <groupId>com.hazelcast</groupId> - <artifactId>hazelcast</artifactId> - <version>${hazelcast-version}</version> - </dependency> + <dependency> + <groupId>org.apache.camel</groupId> + <artifactId>camel-core</artifactId> + </dependency> + <dependency> + <groupId>com.hazelcast</groupId> + <artifactId>hazelcast</artifactId> + <version>${hazelcast-version}</version> + </dependency> - <dependency> - <groupId>org.slf4j</groupId> - <artifactId>slf4j-log4j12</artifactId> - <scope>test</scope> - </dependency> - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.mockito</groupId> - <artifactId>mockito-core</artifactId> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.apache.camel</groupId> - <artifactId>camel-test-spring</artifactId> - <scope>test</scope> - </dependency> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-log4j12</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-core</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.apache.camel</groupId> + <artifactId>camel-test-spring</artifactId> + <scope>test</scope> + </dependency> - </dependencies> + </dependencies> - <build> - <plugins> - <plugin> - <artifactId>maven-surefire-plugin</artifactId> - <configuration> - <forkCount>1</forkCount> - <reuseForks>false</reuseForks> - <forkedProcessTimeoutInSeconds>600</forkedProcessTimeoutInSeconds> - <systemProperties> - <property> - <name>hazelcast.logging.type</name> - <value>slf4j</value> - </property> - </systemProperties> - </configuration> - </plugin> - </plugins> - </build> + <build> + <plugins> + <plugin> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <forkMode>always</forkMode> + <forkedProcessTimeoutInSeconds>600</forkedProcessTimeoutInSeconds> + <systemProperties> + <property> + <name>hazelcast.logging.type</name> + <value>slf4j</value> + </property> + </systemProperties> + </configuration> + </plugin> + </plugins> + </build> </project>