Browse Source

Fixed broken sandbox build

2.0.x
Luke Taylor 18 years ago
parent
commit
e74f826d6f
  1. 34
      sandbox/other/pom.xml
  2. 0
      sandbox/other/src/test/java/org/springframework/security/AspectJParsingTests.java
  3. 14
      sandbox/pom.xml

34
sandbox/other/pom.xml

@ -9,14 +9,20 @@ @@ -9,14 +9,20 @@
<version>2.0-SNAPSHOT</version>
</parent>
<artifactId>spring-security-sandbox-other</artifactId>
<name>Spring Security - Sandbox other</name>
<description>Spring Security Miscellaneus sandbox utilities</description>
<name>Spring Security - Other Sandbox Code</name>
<description>Spring Security Miscellaneous sandbox utilities</description>
<dependencies>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-core</artifactId>
<classifier>tests</classifier>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-mock</artifactId>
@ -44,6 +50,18 @@ @@ -44,6 +50,18 @@
<version>1.1</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<version>1.5.4</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>1.5.4</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>ldapsdk</groupId>
<artifactId>ldapsdk</artifactId>
@ -62,16 +80,4 @@ @@ -62,16 +80,4 @@
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.4</source>
<target>1.4</target>
</configuration>
</plugin>
</plugins>
</build>
</project>

0
sandbox/other/src/main/java/org/springframework/security/AspectJParsingTests.java → sandbox/other/src/test/java/org/springframework/security/AspectJParsingTests.java

14
sandbox/pom.xml

@ -13,6 +13,7 @@ @@ -13,6 +13,7 @@
<modules>
<module>webwork</module>
<module>other</module>
<module>captcha</module>
</modules>
<dependencies>
@ -22,4 +23,17 @@ @@ -22,4 +23,17 @@
<version>2.0-SNAPSHOT</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
</plugins>
</build>
</project>

Loading…
Cancel
Save