This repository has been archived by the owner on Feb 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 113
/
caja-template.pom
98 lines (85 loc) · 2.99 KB
/
caja-template.pom
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!--
Copyright 2009 Google Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<project 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>com.google.caja</groupId>
<artifactId>caja</artifactId>
<packaging>jar</packaging>
<name>Caja</name>
<version>[email protected]@</version>
<url>http://code.google.com/p/google-caja</url>
<description>
Caja is a HTML/CSS/JavaScript compiler which allows websites to safely embed web applications
from third parties, and enables rich interaction between the embedding page and the embedded
applications using an object-capability security model.
</description>
<inceptionYear>2007</inceptionYear>
<scm>
<connection>scm:svn:http://google-caja.googlecode.com/svn/trunk</connection>
<developerConnection>scm:svn:https://google-caja.googlecode.com/svn/trunk</developerConnection>
<url>http://code.google.com/p/google-caja/source/browse/#svn/trunk</url>
</scm>
<issueManagement>
<system>code.google.com</system>
<url>http://code.google.com/p/google-caja/issues</url>
</issueManagement>
<organization>
<name>Google</name>
<url>http://www.google.com</url>
</organization>
<licenses>
<license>
<name>Apache 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>jasvir</id>
<name>Jasvir Nagra</name>
<email>[email protected]</email>
</developer>
<!-- TODO add more developers -->
</developers>
<dependencies>
<dependency>
<!--
- Includes trunk/third_party/java/htmlparser
- as described at http://about.validator.nu/htmlparser/
-->
<groupId>caja</groupId>
<artifactId>htmlparser</artifactId>
<version>r4209</version>
</dependency>
<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<version>1.1</version>
</dependency>
<!--
- The next two dependencies include third_party/java/xerces/
- as described at http://xerces.apache.org/xerces-j/
-->
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<version>2.9.1</version>
</dependency>
<dependency>
<groupId>xerces</groupId>
<artifactId>xmlParserAPIs</artifactId>
<version>2.6.2</version>
</dependency>
</dependencies>
</project>