Browse Source

SPR-6538: context-support is no longer marked as an optional dependency within aspects and webmvc POMs

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@3138 50f2f4bb-b051-0410-bef5-90022cba6387
pull/1/head
Chris Beams 16 years ago
parent
commit
e1d7251ef3
  1. 24
      org.springframework.aspects/pom.xml
  2. 6
      org.springframework.web.servlet/ivy.xml
  3. 9
      org.springframework.web.servlet/pom.xml

24
org.springframework.aspects/pom.xml

@ -32,22 +32,22 @@ @@ -32,22 +32,22 @@
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
<version>${project.version}</version>
<optional>true</optional>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>junit</groupId>

6
org.springframework.web.servlet/ivy.xml

@ -69,7 +69,7 @@ @@ -69,7 +69,7 @@
<dependency org="org.springframework" name="org.springframework.context" rev="latest.integration"
conf="compile->compile"/>
<dependency org="org.springframework" name="org.springframework.context.support" rev="latest.integration"
conf="optional, velocity, freemarker, jasper-reports->compile"/>
conf="compile->compile"/>
<dependency org="org.springframework" name="org.springframework.core" rev="latest.integration"
conf="compile->compile"/>
<dependency org="org.springframework" name="org.springframework.expression" rev="latest.integration"
@ -79,7 +79,7 @@ @@ -79,7 +79,7 @@
<dependency org="org.springframework" name="org.springframework.web" rev="latest.integration"
conf="compile->compile"/>
<!-- test dependencies -->
<dependency org="org.junit" name="com.springsource.org.junit" rev="4.7.0" conf="test->runtime"/>
<dependency org="org.junit" name="com.springsource.org.junit" rev="4.7.0" conf="test->runtime"/>
<dependency org="org.easymock" name="com.springsource.org.easymock" rev="2.5.1" conf="test->compile"/>
<dependency org="org.apache.commons" name="com.springsource.org.apache.commons.fileupload" rev="1.2.0"
conf="test->compile"/>
@ -97,7 +97,7 @@ @@ -97,7 +97,7 @@
<dependency org="org.springframework" name="org.springframework.orm" rev="latest.integration"
conf="test->compile"/>
<dependency org="org.hibernate" name="com.springsource.org.hibernate" rev="3.3.1.GA"
conf="test->compile"/>
conf="test->compile"/>
<dependency org="javax.transaction" name="com.springsource.javax.transaction" rev="1.1.0" conf="provided->runtime"/>
<dependency org="javax.validation" name="com.springsource.javax.validation" rev="1.0.0.GA" conf="test->compile"/>
<dependency org="org.hibernate" name="com.springsource.org.hibernate.validator" rev="4.0.2.GA" conf="test->runtime"/>

9
org.springframework.web.servlet/pom.xml

@ -128,11 +128,6 @@ @@ -128,11 +128,6 @@
<version>1.1.2</version>
<optional>true</optional>
</dependency>
<!--
dependency> <groupId>org.apache.velocity</groupId>
<artifactId>velocity</artifactId> <version>1.6.2</version>
<optional>true</optional> </dependency
-->
<dependency>
<groupId>velocity</groupId>
<artifactId>velocity</artifactId>
@ -173,7 +168,7 @@ @@ -173,7 +168,7 @@
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
<version>${project.version}</version>
<optional>true</optional>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
@ -186,7 +181,7 @@ @@ -186,7 +181,7 @@
<artifactId>spring-expression</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-oxm</artifactId>

Loading…
Cancel
Save