xref: /aosp_15_r20/external/apache-velocity-engine/pom.xml (revision 6626518d3d1a3a4cd21045b7974855fd6a3e2103)
1*6626518dSAndrew Vuong<?xml version="1.0" encoding="UTF-8"?>
2*6626518dSAndrew Vuong<!--
3*6626518dSAndrew Vuong
4*6626518dSAndrew Vuong    Licensed to the Apache Software Foundation (ASF) under one
5*6626518dSAndrew Vuong    or more contributor license agreements.  See the NOTICE file
6*6626518dSAndrew Vuong    distributed with this work for additional information
7*6626518dSAndrew Vuong    regarding copyright ownership.  The ASF licenses this file
8*6626518dSAndrew Vuong    to you under the Apache License, Version 2.0 (the
9*6626518dSAndrew Vuong    "License"); you may not use this file except in compliance
10*6626518dSAndrew Vuong    with the License.  You may obtain a copy of the License at
11*6626518dSAndrew Vuong
12*6626518dSAndrew Vuong      http://www.apache.org/licenses/LICENSE-2.0
13*6626518dSAndrew Vuong
14*6626518dSAndrew Vuong    Unless required by applicable law or agreed to in writing,
15*6626518dSAndrew Vuong    software distributed under the License is distributed on an
16*6626518dSAndrew Vuong    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17*6626518dSAndrew Vuong    KIND, either express or implied.  See the License for the
18*6626518dSAndrew Vuong    specific language governing permissions and limitations
19*6626518dSAndrew Vuong    under the License.
20*6626518dSAndrew Vuong
21*6626518dSAndrew Vuong-->
22*6626518dSAndrew Vuong<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/xsd/maven-4.0.0.xsd">
23*6626518dSAndrew Vuong
24*6626518dSAndrew Vuong    <modelVersion>4.0.0</modelVersion>
25*6626518dSAndrew Vuong
26*6626518dSAndrew Vuong    <parent>
27*6626518dSAndrew Vuong        <groupId>org.apache.velocity</groupId>
28*6626518dSAndrew Vuong        <artifactId>velocity-master</artifactId>
29*6626518dSAndrew Vuong        <version>4</version>
30*6626518dSAndrew Vuong        <relativePath />
31*6626518dSAndrew Vuong    </parent>
32*6626518dSAndrew Vuong
33*6626518dSAndrew Vuong    <artifactId>velocity-engine-parent</artifactId>
34*6626518dSAndrew Vuong    <version>2.4-SNAPSHOT</version>
35*6626518dSAndrew Vuong
36*6626518dSAndrew Vuong    <name>Apache Velocity</name>
37*6626518dSAndrew Vuong    <url>http://velocity.apache.org/engine/devel/</url>
38*6626518dSAndrew Vuong    <description>Apache Velocity is a general purpose template engine.</description>
39*6626518dSAndrew Vuong    <inceptionYear>2000</inceptionYear>
40*6626518dSAndrew Vuong    <packaging>pom</packaging>
41*6626518dSAndrew Vuong
42*6626518dSAndrew Vuong    <properties>
43*6626518dSAndrew Vuong        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
44*6626518dSAndrew Vuong        <junit.version>4.13.2</junit.version>
45*6626518dSAndrew Vuong        <slf4j.version>1.7.30</slf4j.version>
46*6626518dSAndrew Vuong        <surefire.plugin.version>2.22.1</surefire.plugin.version>
47*6626518dSAndrew Vuong        <jira.browse.url>https://issues.apache.org/jira/browse</jira.browse.url>
48*6626518dSAndrew Vuong        <maven.compiler.source>1.8</maven.compiler.source>
49*6626518dSAndrew Vuong        <maven.compiler.target>1.8</maven.compiler.target>
50*6626518dSAndrew Vuong    </properties>
51*6626518dSAndrew Vuong
52*6626518dSAndrew Vuong    <build>
53*6626518dSAndrew Vuong        <defaultGoal>install</defaultGoal>
54*6626518dSAndrew Vuong        <pluginManagement>
55*6626518dSAndrew Vuong            <plugins>
56*6626518dSAndrew Vuong                <plugin>
57*6626518dSAndrew Vuong                    <artifactId>maven-release-plugin</artifactId>
58*6626518dSAndrew Vuong                    <version>3.0.0-M1</version>
59*6626518dSAndrew Vuong                    <configuration>
60*6626518dSAndrew Vuong                        <useReleaseProfile>false</useReleaseProfile>
61*6626518dSAndrew Vuong                        <autoVersionSubmodules>true</autoVersionSubmodules>
62*6626518dSAndrew Vuong                        <goals>deploy</goals>
63*6626518dSAndrew Vuong                        <arguments>-Papache-release</arguments>
64*6626518dSAndrew Vuong                    </configuration>
65*6626518dSAndrew Vuong                </plugin>
66*6626518dSAndrew Vuong                <plugin>
67*6626518dSAndrew Vuong                    <artifactId>maven-jar-plugin</artifactId>
68*6626518dSAndrew Vuong                    <version>3.1.2</version>
69*6626518dSAndrew Vuong                    <configuration>
70*6626518dSAndrew Vuong                        <archive>
71*6626518dSAndrew Vuong                            <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
72*6626518dSAndrew Vuong                        </archive>
73*6626518dSAndrew Vuong                    </configuration>
74*6626518dSAndrew Vuong                </plugin>
75*6626518dSAndrew Vuong                <plugin>
76*6626518dSAndrew Vuong                    <groupId>org.apache.felix</groupId>
77*6626518dSAndrew Vuong                    <artifactId>maven-bundle-plugin</artifactId>
78*6626518dSAndrew Vuong                    <version>3.5.1</version>
79*6626518dSAndrew Vuong                    <executions>
80*6626518dSAndrew Vuong                        <execution>
81*6626518dSAndrew Vuong                            <id>bundle-manifest</id>
82*6626518dSAndrew Vuong                            <phase>process-classes</phase>
83*6626518dSAndrew Vuong                            <goals>
84*6626518dSAndrew Vuong                                <goal>manifest</goal>
85*6626518dSAndrew Vuong                            </goals>
86*6626518dSAndrew Vuong                        </execution>
87*6626518dSAndrew Vuong                    </executions>
88*6626518dSAndrew Vuong                </plugin>
89*6626518dSAndrew Vuong                <plugin>
90*6626518dSAndrew Vuong                    <groupId>org.apache.maven.plugins</groupId>
91*6626518dSAndrew Vuong                    <artifactId>maven-dependency-plugin</artifactId>
92*6626518dSAndrew Vuong                    <version>3.1.1</version>
93*6626518dSAndrew Vuong                </plugin>
94*6626518dSAndrew Vuong                <plugin>
95*6626518dSAndrew Vuong                    <groupId>org.apache.maven.plugins</groupId>
96*6626518dSAndrew Vuong                    <artifactId>maven-resources-plugin</artifactId>
97*6626518dSAndrew Vuong                    <version>3.1.0</version>
98*6626518dSAndrew Vuong                </plugin>
99*6626518dSAndrew Vuong                <plugin>
100*6626518dSAndrew Vuong                    <groupId>com.google.code.maven-replacer-plugin</groupId>
101*6626518dSAndrew Vuong                    <artifactId>replacer</artifactId>
102*6626518dSAndrew Vuong                    <version>1.5.3</version>
103*6626518dSAndrew Vuong                </plugin>
104*6626518dSAndrew Vuong                <plugin>
105*6626518dSAndrew Vuong                    <groupId>org.apache.maven.plugins</groupId>
106*6626518dSAndrew Vuong                    <artifactId>maven-clean-plugin</artifactId>
107*6626518dSAndrew Vuong                    <version>3.1.0</version>
108*6626518dSAndrew Vuong                </plugin>
109*6626518dSAndrew Vuong                <plugin>
110*6626518dSAndrew Vuong                    <groupId>org.apache.maven.plugins</groupId>
111*6626518dSAndrew Vuong                    <artifactId>maven-source-plugin</artifactId>
112*6626518dSAndrew Vuong                    <version>3.1.0</version>
113*6626518dSAndrew Vuong                    <configuration>
114*6626518dSAndrew Vuong                        <includePom>false</includePom>
115*6626518dSAndrew Vuong                    </configuration>
116*6626518dSAndrew Vuong                    <executions>
117*6626518dSAndrew Vuong                        <execution>
118*6626518dSAndrew Vuong                            <id>attach-sources</id>
119*6626518dSAndrew Vuong                            <goals>
120*6626518dSAndrew Vuong                                <goal>jar-no-fork</goal>
121*6626518dSAndrew Vuong                            </goals>
122*6626518dSAndrew Vuong                        </execution>
123*6626518dSAndrew Vuong                    </executions>
124*6626518dSAndrew Vuong                </plugin>
125*6626518dSAndrew Vuong                <plugin>
126*6626518dSAndrew Vuong                    <groupId>org.codehaus.mojo</groupId>
127*6626518dSAndrew Vuong                    <artifactId>extra-enforcer-rules</artifactId>
128*6626518dSAndrew Vuong                </plugin>
129*6626518dSAndrew Vuong                <plugin>
130*6626518dSAndrew Vuong                    <groupId>org.apache.maven.plugins</groupId>
131*6626518dSAndrew Vuong                    <artifactId>maven-assembly-plugin</artifactId>
132*6626518dSAndrew Vuong                    <version>3.2.0</version>
133*6626518dSAndrew Vuong                </plugin>
134*6626518dSAndrew Vuong            </plugins>
135*6626518dSAndrew Vuong        </pluginManagement>
136*6626518dSAndrew Vuong        <plugins>
137*6626518dSAndrew Vuong            <plugin>
138*6626518dSAndrew Vuong                <groupId>org.apache.maven.plugins</groupId>
139*6626518dSAndrew Vuong                <artifactId>maven-compiler-plugin</artifactId>
140*6626518dSAndrew Vuong                <configuration>
141*6626518dSAndrew Vuong                    <showDeprecation>true</showDeprecation>
142*6626518dSAndrew Vuong                    <showWarning>true</showWarning>
143*6626518dSAndrew Vuong                    <source>${maven.compiler.source}</source>
144*6626518dSAndrew Vuong                    <target>${maven.compiler.target}</target>
145*6626518dSAndrew Vuong                </configuration>
146*6626518dSAndrew Vuong            </plugin>
147*6626518dSAndrew Vuong            <plugin>
148*6626518dSAndrew Vuong                <groupId>org.apache.maven.plugins</groupId>
149*6626518dSAndrew Vuong                <artifactId>maven-javadoc-plugin</artifactId>
150*6626518dSAndrew Vuong                <version>3.1.1</version>
151*6626518dSAndrew Vuong                <configuration>
152*6626518dSAndrew Vuong                    <!-- full checking is left disabled
153*6626518dSAndrew Vuong                         <doclint>html,missing,reference,syntax</doclint>
154*6626518dSAndrew Vuong                    -->
155*6626518dSAndrew Vuong                    <doclint>none</doclint>
156*6626518dSAndrew Vuong                </configuration>
157*6626518dSAndrew Vuong                <executions>
158*6626518dSAndrew Vuong                    <execution>
159*6626518dSAndrew Vuong                        <id>aggregate</id>
160*6626518dSAndrew Vuong                        <goals>
161*6626518dSAndrew Vuong                            <goal>aggregate</goal>
162*6626518dSAndrew Vuong                        </goals>
163*6626518dSAndrew Vuong                    </execution>
164*6626518dSAndrew Vuong                </executions>
165*6626518dSAndrew Vuong            </plugin>
166*6626518dSAndrew Vuong            <plugin>
167*6626518dSAndrew Vuong                <groupId>org.apache.maven.plugins</groupId>
168*6626518dSAndrew Vuong                <artifactId>maven-enforcer-plugin</artifactId>
169*6626518dSAndrew Vuong                <executions>
170*6626518dSAndrew Vuong                    <execution>
171*6626518dSAndrew Vuong                        <id>enforce-bytecode-version</id>
172*6626518dSAndrew Vuong                        <goals>
173*6626518dSAndrew Vuong                            <goal>enforce</goal>
174*6626518dSAndrew Vuong                        </goals>
175*6626518dSAndrew Vuong                        <configuration>
176*6626518dSAndrew Vuong                            <rules>
177*6626518dSAndrew Vuong                                <enforceBytecodeVersion>
178*6626518dSAndrew Vuong                                    <maxJdkVersion>${maven.compiler.target}</maxJdkVersion>
179*6626518dSAndrew Vuong                                </enforceBytecodeVersion>
180*6626518dSAndrew Vuong                                <requireJavaVersion>
181*6626518dSAndrew Vuong                                    <version>[1.8,)</version>
182*6626518dSAndrew Vuong                                </requireJavaVersion>
183*6626518dSAndrew Vuong                            </rules>
184*6626518dSAndrew Vuong                            <fail>true</fail>
185*6626518dSAndrew Vuong                        </configuration>
186*6626518dSAndrew Vuong                    </execution>
187*6626518dSAndrew Vuong                    <execution>
188*6626518dSAndrew Vuong                        <id>ban-known-bad-maven-versions</id>
189*6626518dSAndrew Vuong                        <goals>
190*6626518dSAndrew Vuong                            <goal>enforce</goal>
191*6626518dSAndrew Vuong                        </goals>
192*6626518dSAndrew Vuong                        <configuration>
193*6626518dSAndrew Vuong                            <rules>
194*6626518dSAndrew Vuong                                <requireMavenVersion>
195*6626518dSAndrew Vuong                                    <version>[3.0.5,)</version>
196*6626518dSAndrew Vuong                                    <message>Maven minimal expected version is 3.0.5.</message>
197*6626518dSAndrew Vuong                                </requireMavenVersion>
198*6626518dSAndrew Vuong                            </rules>
199*6626518dSAndrew Vuong                        </configuration>
200*6626518dSAndrew Vuong                    </execution>
201*6626518dSAndrew Vuong                </executions>
202*6626518dSAndrew Vuong                <dependencies>
203*6626518dSAndrew Vuong                    <dependency>
204*6626518dSAndrew Vuong                        <groupId>org.codehaus.mojo</groupId>
205*6626518dSAndrew Vuong                        <artifactId>extra-enforcer-rules</artifactId>
206*6626518dSAndrew Vuong                        <version>1.3</version>
207*6626518dSAndrew Vuong                    </dependency>
208*6626518dSAndrew Vuong                </dependencies>
209*6626518dSAndrew Vuong            </plugin>
210*6626518dSAndrew Vuong        </plugins>
211*6626518dSAndrew Vuong    </build>
212*6626518dSAndrew Vuong
213*6626518dSAndrew Vuong    <distributionManagement>
214*6626518dSAndrew Vuong        <site>
215*6626518dSAndrew Vuong            <id>velocity.apache.org</id>
216*6626518dSAndrew Vuong            <url>scpexe://people.apache.org/www/velocity.apache.org/engine/devel/
217*6626518dSAndrew Vuong            </url>
218*6626518dSAndrew Vuong        </site>
219*6626518dSAndrew Vuong    </distributionManagement>
220*6626518dSAndrew Vuong
221*6626518dSAndrew Vuong    <scm>
222*6626518dSAndrew Vuong        <connection>scm:git:https://gitbox.apache.org/repos/asf/velocity-engine.git</connection>
223*6626518dSAndrew Vuong        <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/velocity-engine.git</developerConnection>
224*6626518dSAndrew Vuong        <url>https://gitbox.apache.org/repos/asf?p=velocity-engine.git</url>
225*6626518dSAndrew Vuong        <tag>HEAD</tag>
226*6626518dSAndrew Vuong    </scm>
227*6626518dSAndrew Vuong
228*6626518dSAndrew Vuong    <issueManagement>
229*6626518dSAndrew Vuong        <system>JIRA</system>
230*6626518dSAndrew Vuong        <url>${jira.browse.url}/VELOCITY</url>
231*6626518dSAndrew Vuong    </issueManagement>
232*6626518dSAndrew Vuong    <modules>
233*6626518dSAndrew Vuong        <module>velocity-engine-core</module>
234*6626518dSAndrew Vuong        <module>velocity-engine-examples</module>
235*6626518dSAndrew Vuong        <module>velocity-engine-scripting</module>
236*6626518dSAndrew Vuong        <module>velocity-custom-parser-example</module>
237*6626518dSAndrew Vuong        <module>spring-velocity-support</module>
238*6626518dSAndrew Vuong    </modules>
239*6626518dSAndrew Vuong
240*6626518dSAndrew Vuong    <!-- This project is an effort by many people. If you feel that your name
241*6626518dSAndrew Vuong         should be in here and has been omitted in error, please open an issue
242*6626518dSAndrew Vuong         with the Apache Velocity Issue tracker. -->
243*6626518dSAndrew Vuong    <contributors>
244*6626518dSAndrew Vuong        <contributor>
245*6626518dSAndrew Vuong            <name>Adrian Tarau</name>
246*6626518dSAndrew Vuong        </contributor>
247*6626518dSAndrew Vuong        <contributor>
248*6626518dSAndrew Vuong            <name>Aki Nieminen</name>
249*6626518dSAndrew Vuong        </contributor>
250*6626518dSAndrew Vuong        <contributor>
251*6626518dSAndrew Vuong            <name>Alexey Pachenko</name>
252*6626518dSAndrew Vuong        </contributor>
253*6626518dSAndrew Vuong        <contributor>
254*6626518dSAndrew Vuong            <name>Anil K. Vijendran</name>
255*6626518dSAndrew Vuong        </contributor>
256*6626518dSAndrew Vuong        <contributor>
257*6626518dSAndrew Vuong            <name>Attila Szegedi</name>
258*6626518dSAndrew Vuong        </contributor>
259*6626518dSAndrew Vuong        <contributor>
260*6626518dSAndrew Vuong            <name>Bob McWhirter</name>
261*6626518dSAndrew Vuong        </contributor>
262*6626518dSAndrew Vuong        <contributor>
263*6626518dSAndrew Vuong            <name>Byron Foster</name>
264*6626518dSAndrew Vuong        </contributor>
265*6626518dSAndrew Vuong        <contributor>
266*6626518dSAndrew Vuong            <name>Candid Dauth</name>
267*6626518dSAndrew Vuong        </contributor>
268*6626518dSAndrew Vuong        <contributor>
269*6626518dSAndrew Vuong            <name>Christoph Reck</name>
270*6626518dSAndrew Vuong        </contributor>
271*6626518dSAndrew Vuong        <contributor>
272*6626518dSAndrew Vuong            <name>Darren Cruse</name>
273*6626518dSAndrew Vuong        </contributor>
274*6626518dSAndrew Vuong        <contributor>
275*6626518dSAndrew Vuong            <name>Dave Bryson</name>
276*6626518dSAndrew Vuong        </contributor>
277*6626518dSAndrew Vuong        <contributor>
278*6626518dSAndrew Vuong            <name>David Kinnvall</name>
279*6626518dSAndrew Vuong        </contributor>
280*6626518dSAndrew Vuong        <contributor>
281*6626518dSAndrew Vuong            <name>Dawid Weiss</name>
282*6626518dSAndrew Vuong        </contributor>
283*6626518dSAndrew Vuong        <contributor>
284*6626518dSAndrew Vuong            <name>Dishara Wijewardana</name>
285*6626518dSAndrew Vuong        </contributor>
286*6626518dSAndrew Vuong        <contributor>
287*6626518dSAndrew Vuong            <name>Eelco Hillenius</name>
288*6626518dSAndrew Vuong        </contributor>
289*6626518dSAndrew Vuong        <contributor>
290*6626518dSAndrew Vuong            <name>Fedor Karpelevitch</name>
291*6626518dSAndrew Vuong        </contributor>
292*6626518dSAndrew Vuong        <contributor>
293*6626518dSAndrew Vuong            <name>Felipe Maschio</name>
294*6626518dSAndrew Vuong        </contributor>
295*6626518dSAndrew Vuong        <contributor>
296*6626518dSAndrew Vuong            <name>Gal Shachor</name>
297*6626518dSAndrew Vuong        </contributor>
298*6626518dSAndrew Vuong        <contributor>
299*6626518dSAndrew Vuong            <name>Hervé Boutemy</name>
300*6626518dSAndrew Vuong        </contributor>
301*6626518dSAndrew Vuong        <contributor>
302*6626518dSAndrew Vuong            <name>Jarkko Viinamäki</name>
303*6626518dSAndrew Vuong        </contributor>
304*6626518dSAndrew Vuong        <contributor>
305*6626518dSAndrew Vuong            <name>Jeff Bowden</name>
306*6626518dSAndrew Vuong        </contributor>
307*6626518dSAndrew Vuong        <contributor>
308*6626518dSAndrew Vuong            <name>Jorgen Rydenius</name>
309*6626518dSAndrew Vuong        </contributor>
310*6626518dSAndrew Vuong        <contributor>
311*6626518dSAndrew Vuong            <name>Jose Alberto Fernandez</name>
312*6626518dSAndrew Vuong        </contributor>
313*6626518dSAndrew Vuong        <contributor>
314*6626518dSAndrew Vuong            <name>Kasper Nielsen</name>
315*6626518dSAndrew Vuong        </contributor>
316*6626518dSAndrew Vuong        <contributor>
317*6626518dSAndrew Vuong            <name>Kent Johnson</name>
318*6626518dSAndrew Vuong        </contributor>
319*6626518dSAndrew Vuong        <contributor>
320*6626518dSAndrew Vuong            <name>Kyle F. Downey</name>
321*6626518dSAndrew Vuong        </contributor>
322*6626518dSAndrew Vuong        <contributor>
323*6626518dSAndrew Vuong            <name>Leon Messerschmidt</name>
324*6626518dSAndrew Vuong        </contributor>
325*6626518dSAndrew Vuong        <contributor>
326*6626518dSAndrew Vuong            <name>Llewellyn Falco</name>
327*6626518dSAndrew Vuong        </contributor>
328*6626518dSAndrew Vuong        <contributor>
329*6626518dSAndrew Vuong            <name>Matt Raible</name>
330*6626518dSAndrew Vuong        </contributor>
331*6626518dSAndrew Vuong        <contributor>
332*6626518dSAndrew Vuong            <name>Matt Ryall</name>
333*6626518dSAndrew Vuong        </contributor>
334*6626518dSAndrew Vuong        <contributor>
335*6626518dSAndrew Vuong            <name>Matthijs Lambooy</name>
336*6626518dSAndrew Vuong        </contributor>
337*6626518dSAndrew Vuong        <contributor>
338*6626518dSAndrew Vuong            <name>Oswaldo Hernandez</name>
339*6626518dSAndrew Vuong        </contributor>
340*6626518dSAndrew Vuong        <contributor>
341*6626518dSAndrew Vuong            <name>Paulo Gaspar</name>
342*6626518dSAndrew Vuong        </contributor>
343*6626518dSAndrew Vuong        <contributor>
344*6626518dSAndrew Vuong            <name>Peter Romianowski</name>
345*6626518dSAndrew Vuong        </contributor>
346*6626518dSAndrew Vuong        <contributor>
347*6626518dSAndrew Vuong            <name>Robert Burrell Donkin</name>
348*6626518dSAndrew Vuong        </contributor>
349*6626518dSAndrew Vuong        <contributor>
350*6626518dSAndrew Vuong            <name>Robert Fuller</name>
351*6626518dSAndrew Vuong        </contributor>
352*6626518dSAndrew Vuong        <contributor>
353*6626518dSAndrew Vuong            <name>Sam Ruby</name>
354*6626518dSAndrew Vuong        </contributor>
355*6626518dSAndrew Vuong        <contributor>
356*6626518dSAndrew Vuong            <name>Sean Legassick</name>
357*6626518dSAndrew Vuong        </contributor>
358*6626518dSAndrew Vuong        <contributor>
359*6626518dSAndrew Vuong            <name>Serge Knystautas</name>
360*6626518dSAndrew Vuong        </contributor>
361*6626518dSAndrew Vuong        <contributor>
362*6626518dSAndrew Vuong            <name>Stephane Bailliez</name>
363*6626518dSAndrew Vuong        </contributor>
364*6626518dSAndrew Vuong        <contributor>
365*6626518dSAndrew Vuong            <name>Stephen Habermann</name>
366*6626518dSAndrew Vuong        </contributor>
367*6626518dSAndrew Vuong        <contributor>
368*6626518dSAndrew Vuong            <name>Sylwester Lachiewicz</name>
369*6626518dSAndrew Vuong        </contributor>
370*6626518dSAndrew Vuong    </contributors>
371*6626518dSAndrew Vuong</project>
372