1
0
mirror of synced 2026-08-31 22:46:02 +00:00

Updated build to use maven.springframework.org deps

This commit is contained in:
Luke Taylor
2009-05-13 06:16:05 +00:00
parent a8215fa2cb
commit 45c54c558c
23 changed files with 145 additions and 158 deletions
+12 -11
View File
@@ -12,51 +12,52 @@
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>org.springframework.expression</artifactId>
<artifactId>spring-expression</artifactId>
</dependency>
<!-- Used by SPEL -->
<!-- Used by SPEL
<dependency>
<groupId>asm</groupId>
<artifactId>asm-all</artifactId>
</dependency>
-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>org.springframework.core</artifactId>
<artifactId>spring-core</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>org.springframework.context</artifactId>
<artifactId>spring-context</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>org.springframework.transaction</artifactId>
<artifactId>spring-tx</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>org.springframework.aop</artifactId>
<artifactId>spring-aop</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>org.springframework.jdbc</artifactId>
<artifactId>spring-jdbc</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>org.springframework.web</artifactId>
<artifactId>spring-web</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>org.springframework.test</artifactId>
<artifactId>spring-test</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>com.springsource.org.aspectj.runtime</artifactId>
<artifactId>aspectjrt</artifactId>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>com.springsource.org.aspectj.weaver</artifactId>
<artifactId>aspectjweaver</artifactId>
</dependency>
<dependency>
<groupId>cglib</groupId>
@@ -161,5 +161,9 @@ public class MockJoinPoint implements JoinPoint {
public String toShortString() {
throw new UnsupportedOperationException("mock not implemented");
}
public int getId() {
throw new UnsupportedOperationException("mock not implemented");
}
}
}