general pom cleanup

* normalizing version placeholders to use ${groupId}.version as a naming convention e.g.: 'org.springframework.version'
* added properties to parent pom <properties/> section
* spaces -> tabs
* removed empty newlines in poms (favor comments instead of newlines)
* gave all samples nice <name>s
* included ws-inbound-gateway in the samples parent pom <modules> section
* samples now try to run any **/*Tests.java, as per our general conventions
This commit is contained in:
Chris Beams
2010-05-19 09:41:37 +00:00
parent b6c0d4f5ad
commit 43310c9cab
34 changed files with 1056 additions and 1011 deletions

View File

@@ -63,13 +63,13 @@
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${spring.version}</version>
<version>${org.springframework.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>${spring.version}</version>
<version>${org.springframework.version}</version>
<scope>test</scope>
</dependency>
<dependency>
@@ -81,7 +81,7 @@
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-oxm</artifactId>
<version>${spring.version}</version>
<version>${org.springframework.version}</version>
<scope>compile</scope>
</dependency>
<dependency>