blob: f712f205e78bf7a0896b0cc9a65ff42e25a2c543 [file] [log] [blame]
Jim Manico5b28a402015-03-29 14:14:11 -10001<?xml version="1.0" encoding="US-ASCII"?>
2
3<!--
4 ~ Copyright (c) 2012 OWASP.
5 ~
6 ~ Licensed under the Apache License, Version 2.0 (the "License");
7 ~ you may not use this file except in compliance with the License.
8 ~ You may obtain a copy of the License at
9 ~
10 ~ http://www.apache.org/licenses/LICENSE-2.0
11 ~
12 ~ Unless required by applicable law or agreed to in writing, software
13 ~ distributed under the License is distributed on an "AS IS" BASIS,
14 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 ~ See the License for the specific language governing permissions and
16 ~ limitations under the License.
17 -->
18
19<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
21 <modelVersion>4.0.0</modelVersion>
22
23 <groupId>org.owasp.encoder</groupId>
24 <artifactId>encoder-parent</artifactId>
25 <version>1.2-SNAPSHOT</version>
26 <packaging>pom</packaging>
27
28 <name>OWASP Encoders Parent</name>
29 <description>
30 The OWASP Encoders package is a collection of high-performance low-overhead
31 contextual encoders, that when utilized correctly, is an effective tool in
32 preventing Web Application security vulnerabilities such as Cross-Site
33 Scripting.
34 </description>
35
36 <url>https://www.owasp.org/index.php/OWASP_Java_Encoder_Project</url>
37 <inceptionYear>2011</inceptionYear>
38 <organization>
39 <name>OWASP (Open Web-Application Security Project)</name>
40 <url>https://www.owasp.org/</url>
41 </organization>
42
43 <licenses>
44 <license>
45 <name>The BSD 3-Clause License</name>
46 <url>http://www.opensource.org/licenses/BSD-3-Clause</url>
47 <distribution>repo</distribution>
48 </license>
49 </licenses>
50
51 <parent>
52 <groupId>org.sonatype.oss</groupId>
53 <artifactId>oss-parent</artifactId>
54 <version>7</version>
55 </parent>
56
57 <scm>
58 <developerConnection>scm:svn:https://owasp-java-encoder.googlecode.com/svn/trunk/</developerConnection>
59 <connection>scm:svn:http://owasp-java-encoder.googlecode.com/svn/trunk/</connection>
60 <url>http://code.google.com/p/owasp-java-encoder/source/browse/</url>
61 </scm>
62
63 <mailingLists>
64 <mailingList>
65 <name>Owasp-java-encoder-project</name>
66 <subscribe>https://lists.owasp.org/mailman/listinfo/owasp-java-encoder-project</subscribe>
67 <unsubscribe>https://lists.owasp.org/mailman/listinfo/owasp-java-encoder-project</unsubscribe>
68 <post>owasp-java-encoder-project@lists.owasp.org</post>
69 <archive>http://lists.owasp.org/pipermail/owasp-java-encoder-project/</archive>
70 </mailingList>
71 </mailingLists>
72
73 <issueManagement>
74 <system>Google Code</system>
75 <url>http://code.google.com/p/owasp-java-encoder/issues/list</url>
76 </issueManagement>
77
78 <developers>
79 <developer>
80 <name>Jeff Ichnowski</name>
81 <roles>
82 <role>Project Owner</role>
83 <role>Architect</role>
84 <role>Developer</role>
85 </roles>
86 </developer>
87 <developer>
88 <name>Jim Manico</name>
89 <roles>
90 <role>Architect</role>
91 <role>Developer</role>
92 </roles>
93 </developer>
94 </developers>
95 <contributors>
96 <contributor>
97 <name>Jeremy Long</name>
98 <email>jeremy.long@gmail.com</email>
99 </contributor>
100 </contributors>
101
102 <properties>
103 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
104 </properties>
105
106 <build>
107 <plugins>
108 <plugin>
109 <groupId>org.apache.maven.plugins</groupId>
110 <artifactId>maven-compiler-plugin</artifactId>
111 <version>3.0</version>
112 <configuration>
113 <source>1.5</source>
114 <target>1.5</target>
115 </configuration>
116 </plugin>
117 </plugins>
118 </build>
119
120 <modules>
121 <module>core</module>
122 <module>jsp</module>
123 <module>esapi</module>
124 </modules>
125
126</project>