185 lines
5.9 KiB
XML
185 lines
5.9 KiB
XML
<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.springframework.integration</groupId>
|
|
<artifactId>spring-integration-parent</artifactId>
|
|
<version>1.0.3.RELEASE</version>
|
|
<name> Spring Integration Parent </name>
|
|
<url>http://www.springsource.org/spring-integration</url>
|
|
<description> Spring Integration parent project. Defines dependencies and common configuration for
|
|
the build process. </description>
|
|
<packaging>pom</packaging>
|
|
<properties>
|
|
<org.eclipse.jdt.core.version>3.4.2.v_883_R34x</org.eclipse.jdt.core.version>
|
|
</properties>
|
|
<profiles>
|
|
<profile>
|
|
<id>strict</id>
|
|
<properties>
|
|
<maven.test.failure.ignore>false</maven.test.failure.ignore>
|
|
</properties>
|
|
</profile>
|
|
<profile>
|
|
<id>fast</id>
|
|
<properties>
|
|
<maven.test.skip>true</maven.test.skip>
|
|
<maven.javadoc.skip>true</maven.javadoc.skip>
|
|
</properties>
|
|
</profile>
|
|
<profile>
|
|
<id>staging</id>
|
|
<distributionManagement>
|
|
<site>
|
|
<id>staging</id>
|
|
<url>file:///${user.dir}/target/staging</url>
|
|
</site>
|
|
<repository>
|
|
<id>staging</id>
|
|
<url>file:///${user.dir}/target/staging</url>
|
|
</repository>
|
|
<snapshotRepository>
|
|
<id>staging</id>
|
|
<url>file:///${user.dir}/target/staging</url>
|
|
</snapshotRepository>
|
|
</distributionManagement>
|
|
</profile>
|
|
<profile>
|
|
<id>release</id>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-sources</id>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
<build>
|
|
<testResources>
|
|
<testResource>
|
|
<directory>src/test/java</directory>
|
|
<includes>
|
|
<include>**/*.xml</include>
|
|
</includes>
|
|
</testResource>
|
|
<testResource>
|
|
<directory>src/main/java</directory>
|
|
<includes>
|
|
<include>**/*.xsd</include>
|
|
</includes>
|
|
</testResource>
|
|
</testResources>
|
|
<plugins>
|
|
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>1.5</source>
|
|
<target>1.5</target>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<!--
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>2.0.2</version>
|
|
<configuration>
|
|
<source>1.5</source>
|
|
<target>1.5</target>
|
|
<compilerVersion>1.6</compilerVersion>
|
|
<fork>true</fork>
|
|
<executable>java -jar "${env.M2_REPO_C}/org/eclipse/jdt/core/${org.eclipse.jdt.core.version}/core-${org.eclipse.jdt.core.version}.jar" -classpath rt.jar -sourcepath "src/main"</executable>
|
|
</configuration>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.eclipse.jdt</groupId>
|
|
<artifactId>core</artifactId>
|
|
<version>${org.eclipse.jdt.core.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</plugin>
|
|
-->
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<configuration>
|
|
<useFile>false</useFile>
|
|
<includes>
|
|
<include>**/*Tests.java</include>
|
|
</includes>
|
|
<excludes>
|
|
<exclude>**/Abstract*.java</exclude>
|
|
<exclude>**/PropertyPlaceholderTests.java</exclude>
|
|
</excludes>
|
|
<junitArtifactName>junit:junit</junitArtifactName>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<repositories>
|
|
<repository>
|
|
<id>glassfish</id>
|
|
<name> Glassfish Repository </name>
|
|
<url>http://download.java.net/maven/glassfish</url>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
<repository>
|
|
<id>jboss</id>
|
|
<name>JBoss Repository</name>
|
|
<url>http://repository.jboss.org/maven2</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
<repository>
|
|
<id>com.springsource.repository.bundles.release</id>
|
|
<name>SpringSource Enterprise Bundle Repository - SpringSource Bundle Releases</name>
|
|
<url>http://repository.springsource.com/maven/bundles/release</url>
|
|
</repository>
|
|
<repository>
|
|
<id>com.springsource.repository.bundles.external</id>
|
|
<name>SpringSource Enterprise Bundle Repository - External Bundle Releases</name>
|
|
<url>http://repository.springsource.com/maven/bundles/external</url>
|
|
</repository>
|
|
</repositories>
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>com.springsource.repository.bundles.milestone</id>
|
|
<name>SpringSource Enterprise Bundle Repository - SpringSource Bundle Milestones</name>
|
|
<url>http://repository.springsource.com/maven/bundles/milestone</url>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</pluginRepository>
|
|
<pluginRepository>
|
|
<id>com.springsource.repository.bundles.snapshot</id>
|
|
<name>SpringSource Enterprise Bundle Repository - SpringSource Bundle Snapshots</name>
|
|
<url>http://repository.springsource.com/maven/bundles/snapshot</url>
|
|
</pluginRepository>
|
|
<pluginRepository>
|
|
<id>agilejava</id>
|
|
<url>http://agilejava.com/maven</url>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
</project>
|