#71 - Switched the order of Spring 4 and Spring 4 Next profile.

This was necessary to be able to run the build against to-be-released Spring versions. Previously the default activation registered for the Spring 4 profile trumped the version number that should've been activated if you manually select a profile.
This commit is contained in:
Oliver Gierke
2014-05-19 09:28:22 +02:00
parent ec541e1aca
commit 35b42ebbc7

View File

@@ -541,6 +541,29 @@
</profile>
<profile>
<id>spring4</id>
<activation>
<jdk>1.8</jdk>
</activation>
<properties>
<spring>4.0.4.RELEASE</spring>
</properties>
<dependencies>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.0.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</profile>
<profile>
<id>spring4-next</id>
@@ -567,29 +590,6 @@
</profile>
<profile>
<id>spring4</id>
<activation>
<jdk>1.8</jdk>
</activation>
<properties>
<spring>4.0.4.RELEASE</spring>
</properties>
<dependencies>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.0.1</version>
<scope>test</scope>
</dependency>
</dependencies>
</profile>
<profile>
<id>querydsl-next</id>
<properties>