|
@@ -1,6 +1,5 @@
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
-<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
|
+<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
<artifactId>spring-security-samples-concurrency-jc</artifactId>
|
|
@@ -32,30 +31,9 @@
|
|
|
<developerConnection>scm:git:git://github.com/spring-projects/spring-security</developerConnection>
|
|
|
<url>https://github.com/spring-projects/spring-security</url>
|
|
|
</scm>
|
|
|
- <build>
|
|
|
- <plugins>
|
|
|
- <plugin>
|
|
|
- <artifactId>maven-compiler-plugin</artifactId>
|
|
|
- <configuration>
|
|
|
- <source>1.7</source>
|
|
|
- <target>1.7</target>
|
|
|
- </configuration>
|
|
|
- </plugin>
|
|
|
- <plugin>
|
|
|
- <artifactId>maven-war-plugin</artifactId>
|
|
|
- <version>2.3</version>
|
|
|
- <configuration>
|
|
|
- <failOnMissingWebXml>false</failOnMissingWebXml>
|
|
|
- </configuration>
|
|
|
- </plugin>
|
|
|
- </plugins>
|
|
|
- </build>
|
|
|
- <repositories>
|
|
|
- <repository>
|
|
|
- <id>spring-snasphot</id>
|
|
|
- <url>https://repo.spring.io/snapshot</url>
|
|
|
- </repository>
|
|
|
- </repositories>
|
|
|
+ <properties>
|
|
|
+ <m2eclipse.wtp.contextRoot>/sample</m2eclipse.wtp.contextRoot>
|
|
|
+ </properties>
|
|
|
<dependencies>
|
|
|
<dependency>
|
|
|
<groupId>javax.servlet.jsp.jstl</groupId>
|
|
@@ -172,12 +150,6 @@
|
|
|
<version>2.4.2</version>
|
|
|
<scope>runtime</scope>
|
|
|
</dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>ch.qos.logback</groupId>
|
|
|
- <artifactId>logback-classic</artifactId>
|
|
|
- <version>0.9.29</version>
|
|
|
- <scope>test</scope>
|
|
|
- </dependency>
|
|
|
<dependency>
|
|
|
<groupId>junit</groupId>
|
|
|
<artifactId>junit</artifactId>
|
|
@@ -203,7 +175,28 @@
|
|
|
<scope>test</scope>
|
|
|
</dependency>
|
|
|
</dependencies>
|
|
|
- <properties>
|
|
|
- <m2eclipse.wtp.contextRoot>/sample</m2eclipse.wtp.contextRoot>
|
|
|
- </properties>
|
|
|
+ <repositories>
|
|
|
+ <repository>
|
|
|
+ <id>spring-snasphot</id>
|
|
|
+ <url>https://repo.spring.io/snapshot</url>
|
|
|
+ </repository>
|
|
|
+ </repositories>
|
|
|
+ <build>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <maven-compiler-plugin/>
|
|
|
+ <configuration>
|
|
|
+ <source>1.7</source>
|
|
|
+ <target>1.7</target>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ <plugin>
|
|
|
+ <maven-war-plugin/>
|
|
|
+ <version>2.3</version>
|
|
|
+ <configuration>
|
|
|
+ <failOnMissingWebXml>false</failOnMissingWebXml>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
+ </build>
|
|
|
</project>
|