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