-
Notifications
You must be signed in to change notification settings - Fork 186
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #558 from hazendaz/master
[module] Add initial support for Spring 5 using spring security 4 still
- Loading branch information
Showing
25 changed files
with
2,569 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
Waffle (https://github.com/Waffle/waffle) | ||
Copyright (c) 2010-2017 Application Security, Inc. | ||
All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse | ||
Public License v1.0 which accompanies this distribution, and is available at | ||
https://www.eclipse.org/legal/epl-v10.html. | ||
Contributors: Application Security, Inc. | ||
--> | ||
<!DOCTYPE Format> | ||
<Format> | ||
<!-- Dummy format file --> | ||
</Format> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
Waffle (https://github.com/Waffle/waffle) | ||
Copyright (c) 2010-2017 Application Security, Inc. | ||
All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse | ||
Public License v1.0 which accompanies this distribution, and is available at | ||
https://www.eclipse.org/legal/epl-v10.html. | ||
Contributors: Application Security, Inc. | ||
--> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>com.github.waffle</groupId> | ||
<artifactId>waffle-parent</artifactId> | ||
<version>1.9.0-SNAPSHOT</version> | ||
</parent> | ||
|
||
<artifactId>waffle-spring-security5</artifactId> | ||
<version>1.9.0-SNAPSHOT</version> | ||
<packaging>jar</packaging> | ||
|
||
<name>waffle-spring-security5</name> | ||
<description>Spring Security 5 integration for WAFFLE</description> | ||
<url>https://waffle.github.com/waffle/</url> | ||
|
||
<scm> | ||
<connection>scm:git:ssh://[email protected]/waffle/waffle.git</connection> | ||
<developerConnection>scm:git:ssh://[email protected]/waffle/waffle.git</developerConnection> | ||
<url>https://github.com/Waffle/waffle</url> | ||
<tag>HEAD</tag> | ||
</scm> | ||
|
||
<properties> | ||
<servlet.version>4.0.0</servlet.version> | ||
<spring.version>5.0.0.RELEASE</spring.version> | ||
<spring.security.version>4.2.3.RELEASE</spring.security.version> <!-- TODO: Bump to 5.0.0 once released --> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>${project.groupId}</groupId> | ||
<artifactId>waffle-jna</artifactId> | ||
<version>${project.version}</version> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>${project.groupId}</groupId> | ||
<artifactId>waffle-tests</artifactId> | ||
<version>${project.version}</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>javax.servlet</groupId> | ||
<artifactId>javax.servlet-api</artifactId> | ||
<version>${servlet.version}</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-beans</artifactId> | ||
<version>${spring.version}</version> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-context</artifactId> | ||
<version>${spring.version}</version> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-core</artifactId> | ||
<version>${spring.version}</version> | ||
<scope>compile</scope> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>commons-logging</groupId> | ||
<artifactId>commons-logging</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-expression</artifactId> | ||
<version>${spring.version}</version> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-web</artifactId> | ||
<version>${spring.version}</version> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.security</groupId> | ||
<artifactId>spring-security-config</artifactId> | ||
<version>${spring.security.version}</version> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.security</groupId> | ||
<artifactId>spring-security-core</artifactId> | ||
<version>${spring.security.version}</version> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.security</groupId> | ||
<artifactId>spring-security-web</artifactId> | ||
<version>${spring.security.version}</version> | ||
<scope>compile</scope> | ||
</dependency> | ||
</dependencies> | ||
</project> |
Oops, something went wrong.