platformQuickStarts
scripts
webgoat-container
webgoat-images
webgoat-lessons
auth-bypass
bypass-restrictions
challenge
client-side-filtering
command-injection
cross-site-scripting
src
.gitignore
.sonatype
pom.xml
csrf
html-tampering
http-basics
http-proxies
idor
insecure-login
jwt
missing-function-ac
sql-injection
vulnerable-components
webgoat-introduction
webgoat-lesson-template
webwolf-introduction
xxe
pom.xml
sol.MD
sol.txt
webgoat-server
webwolf
.gitignore
.travis.yml
CREATE_RELEASE.MD
README.MD
buildspec.yml
docker-compose-postgres.yml
docker-compose.yml
mvn-debug
pom.xml
35 lines
1.3 KiB
XML
35 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>cross-site-scripting</artifactId>
|
|
<packaging>jar</packaging>
|
|
<parent>
|
|
<groupId>org.owasp.webgoat.lesson</groupId>
|
|
<artifactId>webgoat-lessons-parent</artifactId>
|
|
<version>v8.0.0.M14</version>
|
|
</parent>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.asciidoctor</groupId>
|
|
<artifactId>asciidoctor-maven-plugin</artifactId>
|
|
<version>1.5.3</version>
|
|
|
|
<executions>
|
|
<execution>
|
|
<id>output-html</id>
|
|
<phase>generate-resources</phase>
|
|
<goals>
|
|
<goal>process-asciidoc</goal>
|
|
</goals>
|
|
<configuration>
|
|
<backend>html</backend>
|
|
<sourceDirectory>src/main/resources/lessonPlans/en/</sourceDirectory>
|
|
</configuration>
|
|
</execution>
|
|
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |