Files
platformQuickStarts
scripts
webgoat-container
webgoat-images
webgoat-lessons
auth-bypass
bypass-restrictions
challenge
src
pom.xml
client-side-filtering
command-injection
cross-site-scripting
csrf
html-tampering
http-basics
http-proxies
idor
insecure-login
jwt
missing-function-ac
sql-injection
vulnerable-components
webgoat-lesson-template
webwolf-introduction
xxe
pom.xml
sol.txt
webgoat-server
webwolf
.gitignore
.travis.yml
README.MD
buildspec.yml
docker-compose.yml
mvn-debug
pom.xml
webgoat.env
webgoat_developer_bootstrap.sh
WebGoat/webgoat-lessons/challenge/pom.xml
2017-05-02 23:28:48 +02:00

39 lines
1.3 KiB
XML

<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>challenge</artifactId>
<packaging>jar</packaging>
<parent>
<groupId>org.owasp.webgoat.lesson</groupId>
<artifactId>webgoat-lessons-parent</artifactId>
<version>8.0-SNAPSHOT</version>
</parent>
<dependencies>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt</artifactId>
<version>0.7.0</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-test</artifactId>
<version>4.1.3.RELEASE</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<type>jar</type>
<scope>test</scope>
</dependency>
</dependencies>
</project>