| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| /## |
| # File: pom.xml |
| # Created: 06.02.2009 |
| # |
| # |
| /######################################### |
| # Copyright (c) 2009 Open Wide (www.openwide.fr) |
| # |
| # 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: |
| # Mickael Istria, Open Wide, Lyon, France |
| # - Creation and implementation |
| ###################@######################/ |
| --> |
| <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> |
| <groupId>org.eclipse.jwt.runtime</groupId> |
| <artifactId>taskengine-api</artifactId> |
| <name>Task Engine Framework Interfaces and entry points</name> |
| <version>4.0.0</version> |
| <description /> |
| |
| <dependencies> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <version>4.5</version> |
| <scope>test</scope> |
| </dependency> |
| </dependencies> |
| |
| <repositories> |
| <repository> |
| <id>objectweb-repo</id> |
| <name>ObjectWeb Repository</name> |
| <url>http://maven.objectweb.org/maven2</url> |
| <releases> |
| <enabled>true</enabled> |
| </releases> |
| </repository> |
| <repository> |
| <id>objectweb-snapshot-repo</id> |
| <name>ObjectWeb Snapshot Repository</name> |
| <url>http://maven.objectweb.org/maven2-snapshot</url> |
| <snapshots> |
| <enabled>true</enabled> |
| </snapshots> |
| </repository> |
| </repositories> |
| |
| <!-- distribution manamgement properties --> |
| <!-- While Eclipse does not provide a Maven repo, let's use OW2 one, thanks to Scarbo --> |
| <distributionManagement> |
| <repository> |
| <id>objectweb-release-dav</id> |
| <name>ObjectWeb's release repository</name> |
| <url> |
| davs://maven.forge.objectweb.org:8002/maven2 |
| </url> |
| </repository> |
| <snapshotRepository> |
| <id>objectweb-snapshot-dav</id> |
| <name>ObjectWeb's snapshot repository</name> |
| <url> |
| davs://maven.forge.objectweb.org:8002/maven2-snapshot |
| </url> |
| </snapshotRepository> |
| </distributionManagement> |
| |
| <scm> |
| <connection>scm:cvs:pserver:anonymous:@dev.eclipse.org:/CVSROOT/technology:org.eclipse.jwt/runtime/task-engine-framework</connection> |
| <url>http://svn.forge.objectweb.org/cgi-bin/viewcvs.cgi/fractal/trunk/fractal-bf/</url> |
| </scm> |
| |
| <build> |
| <finalName>jwt-tef-api-${project.version}</finalName> |
| |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <version>2.0.1</version> |
| <configuration> |
| <source>1.5</source> |
| <target>1.5</target> |
| <showDeprecation>true</showDeprecation> |
| <showWarnings> |
| ${java.compiler.showWarnings} |
| </showWarnings> |
| <fork>false</fork> |
| <debug>${java.compiler.debug}</debug> |
| <optimize>${java.compiler.optimize}</optimize> |
| </configuration> |
| </plugin> |
| </plugins> |
| |
| <extensions> |
| <extension> |
| <groupId>org.apache.maven.wagon</groupId> |
| <artifactId>wagon-webdav-jackrabbit</artifactId> |
| <version>1.0-beta-5</version> |
| </extension> |
| </extensions> |
| </build> |
| </project> |