1<?xml version="1.0" encoding="US-ASCII"?> 2<!-- 3~ Copyright (c) 2015 OWASP. 4~ All rights reserved. 5~ 6~ Redistribution and use in source and binary forms, with or without 7~ modification, are permitted provided that the following conditions 8~ are met: 9~ 10~ * Redistributions of source code must retain the above 11~ copyright notice, this list of conditions and the following 12~ disclaimer. 13~ 14~ * Redistributions in binary form must reproduce the above 15~ copyright notice, this list of conditions and the following 16~ disclaimer in the documentation and/or other materials 17~ provided with the distribution. 18~ 19~ * Neither the name of the OWASP nor the names of its 20~ contributors may be used to endorse or promote products 21~ derived from this software without specific prior written 22~ permission. 23~ 24~ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 25~ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 26~ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 27~ FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 28~ COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, 29~ INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 30~ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 31~ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 32~ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 33~ STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 34~ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 35~ OF THE POSSIBILITY OF SUCH DAMAGE. 36--> 37 38<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 39 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 40 <modelVersion>4.0.0</modelVersion> 41 42 <parent> 43 <groupId>org.owasp.encoder</groupId> 44 <artifactId>encoder-parent</artifactId> 45 <version>1.2.3</version> 46 </parent> 47 48 <artifactId>encoder-esapi</artifactId> 49 <packaging>jar</packaging> 50 51 <name>ESAPI Thunk</name> 52 <description> 53 The OWASP Encoders ESAPI Thunk provides an easy way to plugin the Encoder 54 Projects API into an implementation of ESAPI. 55 </description> 56 57 <properties> 58 <jigsaw.module.name>org.owasp.encoder.esapi</jigsaw.module.name> 59 </properties> 60 61 <dependencies> 62 <dependency> 63 <groupId>org.owasp.encoder</groupId> 64 <artifactId>encoder</artifactId> 65 <version>${project.parent.version}</version> 66 </dependency> 67 <dependency> 68 <groupId>org.owasp.esapi</groupId> 69 <artifactId>esapi</artifactId> 70 <version>[2.2.3.1,3)</version> 71 </dependency> 72 </dependencies> 73</project> 74