xref: /aosp_15_r20/external/apache-velocity-engine/velocity-engine-examples/pom.xml (revision 6626518d3d1a3a4cd21045b7974855fd6a3e2103)
1*6626518dSAndrew Vuong<?xml version="1.0" encoding="UTF-8"?>
2*6626518dSAndrew Vuong<!--
3*6626518dSAndrew Vuong
4*6626518dSAndrew VuongLicensed to the Apache Software Foundation (ASF) under one
5*6626518dSAndrew Vuongor more contributor license agreements.  See the NOTICE file
6*6626518dSAndrew Vuongdistributed with this work for additional information
7*6626518dSAndrew Vuongregarding copyright ownership.  The ASF licenses this file
8*6626518dSAndrew Vuongto you under the Apache License, Version 2.0 (the
9*6626518dSAndrew Vuong"License"); you may not use this file except in compliance
10*6626518dSAndrew Vuongwith the License.  You may obtain a copy of the License at
11*6626518dSAndrew Vuong
12*6626518dSAndrew Vuonghttp://www.apache.org/licenses/LICENSE-2.0
13*6626518dSAndrew Vuong
14*6626518dSAndrew VuongUnless required by applicable law or agreed to in writing,
15*6626518dSAndrew Vuongsoftware distributed under the License is distributed on an
16*6626518dSAndrew Vuong"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17*6626518dSAndrew VuongKIND, either express or implied.  See the License for the
18*6626518dSAndrew Vuongspecific language governing permissions and limitations
19*6626518dSAndrew Vuongunder 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    <modelVersion>4.0.0</modelVersion>
24*6626518dSAndrew Vuong    <parent>
25*6626518dSAndrew Vuong        <groupId>org.apache.velocity</groupId>
26*6626518dSAndrew Vuong        <artifactId>velocity-engine-parent</artifactId>
27*6626518dSAndrew Vuong        <version>2.4-SNAPSHOT</version>
28*6626518dSAndrew Vuong    </parent>
29*6626518dSAndrew Vuong
30*6626518dSAndrew Vuong    <artifactId>velocity-engine-examples</artifactId>
31*6626518dSAndrew Vuong    <name>Apache Velocity Engine - Examples</name>
32*6626518dSAndrew Vuong    <description>Very simple examples to use Velocity</description>
33*6626518dSAndrew Vuong
34*6626518dSAndrew Vuong    <build>
35*6626518dSAndrew Vuong        <plugins>
36*6626518dSAndrew Vuong            <plugin>
37*6626518dSAndrew Vuong                <groupId>org.apache.felix</groupId>
38*6626518dSAndrew Vuong                <artifactId>maven-bundle-plugin</artifactId>
39*6626518dSAndrew Vuong            </plugin>
40*6626518dSAndrew Vuong            <plugin>
41*6626518dSAndrew Vuong                <groupId>org.apache.maven.plugins</groupId>
42*6626518dSAndrew Vuong                <artifactId>maven-dependency-plugin</artifactId>
43*6626518dSAndrew Vuong                <executions>
44*6626518dSAndrew Vuong                    <execution>
45*6626518dSAndrew Vuong                        <phase>prepare-package</phase>
46*6626518dSAndrew Vuong                        <goals>
47*6626518dSAndrew Vuong                            <goal>copy-dependencies</goal>
48*6626518dSAndrew Vuong                        </goals>
49*6626518dSAndrew Vuong                        <configuration>
50*6626518dSAndrew Vuong                            <outputDirectory>${project.build.directory}/lib</outputDirectory>
51*6626518dSAndrew Vuong                        </configuration>
52*6626518dSAndrew Vuong                    </execution>
53*6626518dSAndrew Vuong                </executions>
54*6626518dSAndrew Vuong            </plugin>
55*6626518dSAndrew Vuong            <plugin>
56*6626518dSAndrew Vuong                <groupId>org.apache.maven.plugins</groupId>
57*6626518dSAndrew Vuong                <artifactId>maven-resources-plugin</artifactId>
58*6626518dSAndrew Vuong                <configuration>
59*6626518dSAndrew Vuong                    <outputDirectory>${project.build.directory}/examples</outputDirectory>
60*6626518dSAndrew Vuong                </configuration>
61*6626518dSAndrew Vuong            </plugin>
62*6626518dSAndrew Vuong            <plugin>
63*6626518dSAndrew Vuong                <groupId>org.apache.maven.plugins</groupId>
64*6626518dSAndrew Vuong                <artifactId>maven-assembly-plugin</artifactId>
65*6626518dSAndrew Vuong                <configuration>
66*6626518dSAndrew Vuong                    <descriptors>
67*6626518dSAndrew Vuong                        <descriptor>src/assembly/examples.xml</descriptor>
68*6626518dSAndrew Vuong                    </descriptors>
69*6626518dSAndrew Vuong                </configuration>
70*6626518dSAndrew Vuong                <executions>
71*6626518dSAndrew Vuong                    <execution>
72*6626518dSAndrew Vuong                        <id>package-examples</id>
73*6626518dSAndrew Vuong                        <phase>package</phase>
74*6626518dSAndrew Vuong                        <goals>
75*6626518dSAndrew Vuong                            <goal>single</goal>
76*6626518dSAndrew Vuong                        </goals>
77*6626518dSAndrew Vuong                    </execution>
78*6626518dSAndrew Vuong                </executions>
79*6626518dSAndrew Vuong            </plugin>
80*6626518dSAndrew Vuong        </plugins>
81*6626518dSAndrew Vuong        <resources>
82*6626518dSAndrew Vuong            <resource>
83*6626518dSAndrew Vuong                <directory>src/main/resources</directory>
84*6626518dSAndrew Vuong                <filtering>true</filtering>
85*6626518dSAndrew Vuong            </resource>
86*6626518dSAndrew Vuong            <resource>
87*6626518dSAndrew Vuong                <directory>src/etc</directory>
88*6626518dSAndrew Vuong                <filtering>true</filtering>
89*6626518dSAndrew Vuong            </resource>
90*6626518dSAndrew Vuong        </resources>
91*6626518dSAndrew Vuong    </build>
92*6626518dSAndrew Vuong
93*6626518dSAndrew Vuong    <dependencies>
94*6626518dSAndrew Vuong        <dependency>
95*6626518dSAndrew Vuong            <groupId>org.apache.velocity</groupId>
96*6626518dSAndrew Vuong            <artifactId>velocity-engine-core</artifactId>
97*6626518dSAndrew Vuong            <version>${project.version}</version>
98*6626518dSAndrew Vuong        </dependency>
99*6626518dSAndrew Vuong        <dependency>
100*6626518dSAndrew Vuong            <groupId>org.jdom</groupId>
101*6626518dSAndrew Vuong            <artifactId>jdom</artifactId>
102*6626518dSAndrew Vuong            <version>1.1.3</version>
103*6626518dSAndrew Vuong        </dependency>
104*6626518dSAndrew Vuong        <dependency>
105*6626518dSAndrew Vuong            <groupId>org.slf4j</groupId>
106*6626518dSAndrew Vuong            <artifactId>slf4j-simple</artifactId>
107*6626518dSAndrew Vuong            <version>${slf4j.version}</version>
108*6626518dSAndrew Vuong            <scope>test</scope>
109*6626518dSAndrew Vuong        </dependency>
110*6626518dSAndrew Vuong    </dependencies>
111*6626518dSAndrew Vuong</project>
112