- Upgrade to version 2.0 of the maven-release-plugin in order to get the new 'update-versions' goal, which allows for doing nothing other than updating pom versions - no tagging, no checkins, etc. - Accommodate idiosyncracies of the plugin. When running for the first time, it became clear that update-versions not only updates versions as advertised, but also formats certain elements of the pom. Committing just those format changes now so that future actual version updates will not have to deal with this uninvited 'help'. - How to run the command: mvn --batch-mode release:update-versions -DdevelopmentVersion=2.0.0.M7 This will edit the <version> elements in the poms of the projects listed in the root pom's <modules> section.
38 lines
1.3 KiB
XML
38 lines
1.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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.springframework.integration</groupId>
|
|
<artifactId>spring-integration-parent</artifactId>
|
|
<version>2.0.0.BUILD-SNAPSHOT</version>
|
|
<relativePath>../spring-integration-parent/pom.xml</relativePath>
|
|
</parent>
|
|
<groupId>org.springframework.integration</groupId>
|
|
<artifactId>spring-integration-event</artifactId>
|
|
<name>Spring Integration Event Support</name>
|
|
<packaging>jar</packaging>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-context</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.integration</groupId>
|
|
<artifactId>spring-integration-core</artifactId>
|
|
</dependency>
|
|
<!-- test-scoped dependencies -->
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-test</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mockito</groupId>
|
|
<artifactId>mockito-all</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|