185 lines
6.6 KiB
XML
185 lines
6.6 KiB
XML
<?xml version="1.0"?>
|
|
<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>
|
|
<groupId>org.owasp.webgoat</groupId>
|
|
<artifactId>webgoat-parent</artifactId>
|
|
<packaging>pom</packaging>
|
|
<version>v8.0.0-SNAPSHOT</version>
|
|
|
|
<name>WebGoat Parent Pom</name>
|
|
<description>Parent Pom for the WebGoat Project. A deliberately insecure Web Application</description>
|
|
<inceptionYear>2006</inceptionYear>
|
|
<url>https://github.com/WebGoat/WebGoat</url>
|
|
|
|
<organization>
|
|
<name>OWASP</name>
|
|
<url>https://webgoat.github.io/</url>
|
|
</organization>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>2.2.0.RELEASE</version>
|
|
</parent>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>GNU General Public License, version 2</name>
|
|
<url>https://www.gnu.org/licenses/gpl-2.0.txt</url>
|
|
</license>
|
|
</licenses>
|
|
|
|
<developers>
|
|
<developer>
|
|
<id>mayhew64</id>
|
|
<name>Bruce Mayhew</name>
|
|
<email>webgoat@owasp.org</email>
|
|
<organization>OWASP</organization>
|
|
<organizationUrl>https://github.com/WebGoat/WebGoat</organizationUrl>
|
|
</developer>
|
|
<developer>
|
|
<id>nbaars</id>
|
|
<name>Nanne Baars</name>
|
|
<email>nanne.baars@owasp.org</email>
|
|
<organizationUrl>https://github.com/nbaars</organizationUrl>
|
|
<timezone>Europe/Amsterdam</timezone>
|
|
</developer>
|
|
<developer>
|
|
<id>misfir3</id>
|
|
<name>Jason White</name>
|
|
<email>jason.white@owasp.org</email>
|
|
</developer>
|
|
<developer>
|
|
<id>zubcevic</id>
|
|
<name>René Zubcevic</name>
|
|
<email>rene.zubcevic@owasp.org</email>
|
|
</developer>
|
|
<developer>
|
|
<id>jwayman</id>
|
|
<name>Jeff Wayman</name>
|
|
<email/>
|
|
</developer>
|
|
<developer>
|
|
<id>dcowden</id>
|
|
<name>Dave Cowden</name>
|
|
<email/>
|
|
</developer>
|
|
<developer>
|
|
<id>lawson89</id>
|
|
<name>Richard Lawson</name>
|
|
<email/>
|
|
</developer>
|
|
<developer>
|
|
<id>dougmorato</id>
|
|
<name>Doug Morato</name>
|
|
<email>doug.morato@owasp.org</email>
|
|
<organization>OWASP</organization>
|
|
<organizationUrl>https://github.com/dougmorato</organizationUrl>
|
|
<timezone>America/New_York</timezone>
|
|
<properties>
|
|
<picUrl>https://avatars2.githubusercontent.com/u/9654?v=3&s=150</picUrl>
|
|
</properties>
|
|
</developer>
|
|
</developers>
|
|
|
|
<mailingLists>
|
|
<mailingList>
|
|
<name>OWASP WebGoat Mailing List</name>
|
|
<subscribe>https://lists.owasp.org/mailman/listinfo/owasp-webgoat</subscribe>
|
|
<unsubscribe>Owasp-webgoat-request@lists.owasp.org</unsubscribe>
|
|
<post>owasp-webgoat@lists.owasp.org</post>
|
|
<archive>http://lists.owasp.org/pipermail/owasp-webgoat/</archive>
|
|
</mailingList>
|
|
</mailingLists>
|
|
|
|
<scm>
|
|
<url>https://github.com/WebGoat/WebGoat</url>
|
|
<connection>scm:git:git@github.com:WebGoat/WebGoat.git</connection>
|
|
<developerConnection>scm:git:git@github.com:WebGoat/WebGoat.git</developerConnection>
|
|
<tag>HEAD</tag>
|
|
</scm>
|
|
|
|
<issueManagement>
|
|
<system>Github Issues</system>
|
|
<url>https://github.com/WebGoat/WebGoat/issues</url>
|
|
</issueManagement>
|
|
|
|
<ciManagement>
|
|
<system>Travis CI</system>
|
|
<url>https://travis-ci.org/WebGoat/WebGoat</url>
|
|
</ciManagement>
|
|
|
|
<properties>
|
|
<!-- Use UTF-8 Encoding -->
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
<maven.compiler.source>11</maven.compiler.source>
|
|
<maven.compiler.target>11</maven.compiler.target>
|
|
|
|
<!-- This build number will be ubdated by Travis-CI -->
|
|
<build.number>build</build.number>
|
|
|
|
<!-- Shared properties with plugins and version numbers across submodules-->
|
|
<activation.version>1.1.1</activation.version>
|
|
<commons-collections.version>3.2.1</commons-collections.version>
|
|
<commons-lang3.version>3.4</commons-lang3.version>
|
|
<commons-io.version>2.6</commons-io.version>
|
|
<guava.version>18.0</guava.version>
|
|
<hsqldb.version>2.3.4</hsqldb.version>
|
|
<junit.version>4.12</junit.version>
|
|
<lombok.version>1.18.4</lombok.version>
|
|
<maven-compiler-plugin.version>3.8.0</maven-compiler-plugin.version>
|
|
<maven-failsafe-plugin.version>2.22.0</maven-failsafe-plugin.version>
|
|
<maven-jar-plugin.version>3.1.2</maven-jar-plugin.version>
|
|
<maven-javadoc-plugin.version>3.1.1</maven-javadoc-plugin.version>
|
|
<maven-source-plugin.version>3.1.0</maven-source-plugin.version>
|
|
<maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version>
|
|
</properties>
|
|
|
|
<modules>
|
|
<module>webgoat-container</module>
|
|
<module>webgoat-lessons</module>
|
|
<module>webgoat-server</module>
|
|
<module>webwolf</module>
|
|
<module>webgoat-integration-tests</module>
|
|
</modules>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<scope>provided</scope>
|
|
<version>${lombok.version}</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-exec</artifactId>
|
|
<version>1.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.xml.bind</groupId>
|
|
<artifactId>jaxb-api</artifactId>
|
|
<version>2.3.0</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>${maven-compiler-plugin.version}</version>
|
|
<configuration>
|
|
<source>11</source>
|
|
<target>11</target>
|
|
<encoding>UTF-8</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|