|
| 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.3.0</version> |
| 46 | + </parent> |
| 47 | + |
| 48 | + <artifactId>encoder-jakarta-jsp</artifactId> |
| 49 | + <packaging>jar</packaging> |
| 50 | + |
| 51 | + <name>Jakarta JSP Encoder</name> |
| 52 | + <description> |
| 53 | + The OWASP Encoder Jakarta JSP package contains JSP tag definitions and TLDs to allow |
| 54 | + easy use of the OWASP Encoder Project's core API. The TLDs contain both tag |
| 55 | + definitions and JSP EL functions. |
| 56 | + </description> |
| 57 | + |
| 58 | + <properties> |
| 59 | + <jigsaw.module.name>org.owasp.encoder.jakarta</jigsaw.module.name> |
| 60 | + </properties> |
| 61 | + |
| 62 | + <dependencies> |
| 63 | + <dependency> |
| 64 | + <groupId>org.owasp.encoder</groupId> |
| 65 | + <artifactId>encoder</artifactId> |
| 66 | + <version>${project.parent.version}</version> |
| 67 | + </dependency> |
| 68 | + <dependency> |
| 69 | + <groupId>jakarta.servlet.jsp</groupId> |
| 70 | + <artifactId>jakarta.servlet.jsp-api</artifactId> |
| 71 | + <version>3.0.0</version> |
| 72 | + <scope>provided</scope> |
| 73 | + </dependency> |
| 74 | + <dependency> |
| 75 | + <groupId>jakarta.servlet</groupId> |
| 76 | + <artifactId>jakarta.servlet-api</artifactId> |
| 77 | + <version>6.0.0</version> |
| 78 | + <scope>test</scope> |
| 79 | + </dependency> |
| 80 | + <dependency> |
| 81 | + <groupId>org.springframework</groupId> |
| 82 | + <artifactId>spring-test</artifactId> |
| 83 | + <version>6.0.22</version> |
| 84 | + <scope>test</scope> |
| 85 | + </dependency> |
| 86 | + <dependency> |
| 87 | + <groupId>org.springframework</groupId> |
| 88 | + <artifactId>spring-core</artifactId> |
| 89 | + <version>5.3.19</version> |
| 90 | + <scope>test</scope> |
| 91 | + </dependency> |
| 92 | + </dependencies> |
| 93 | + <build> |
| 94 | + <plugins> |
| 95 | + <plugin> |
| 96 | + <groupId>org.apache.maven.plugins</groupId> |
| 97 | + <artifactId>maven-compiler-plugin</artifactId> |
| 98 | + <configuration> |
| 99 | + <source>17</source> |
| 100 | + <target>17</target> |
| 101 | + </configuration> |
| 102 | + </plugin> |
| 103 | + </plugins> |
| 104 | + </build> |
| 105 | +</project> |
0 commit comments