xref: /aosp_15_r20/external/apache-velocity-engine/velocity-engine-scripting/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    <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    <artifactId>velocity-engine-scripting</artifactId>
30*6626518dSAndrew Vuong    <name>Apache Velocity - JSR 223 Scripting</name>
31*6626518dSAndrew Vuong    <dependencies>
32*6626518dSAndrew Vuong        <dependency>
33*6626518dSAndrew Vuong            <groupId>org.apache.velocity</groupId>
34*6626518dSAndrew Vuong            <artifactId>velocity-engine-core</artifactId>
35*6626518dSAndrew Vuong            <version>${project.version}</version>
36*6626518dSAndrew Vuong        </dependency>
37*6626518dSAndrew Vuong        <dependency>
38*6626518dSAndrew Vuong            <groupId>junit</groupId>
39*6626518dSAndrew Vuong            <artifactId>junit</artifactId>
40*6626518dSAndrew Vuong            <version>${junit.version}</version>
41*6626518dSAndrew Vuong            <scope>test</scope>
42*6626518dSAndrew Vuong        </dependency>
43*6626518dSAndrew Vuong        <dependency>
44*6626518dSAndrew Vuong            <groupId>org.slf4j</groupId>
45*6626518dSAndrew Vuong            <artifactId>slf4j-simple</artifactId>
46*6626518dSAndrew Vuong            <version>${slf4j.version}</version>
47*6626518dSAndrew Vuong            <scope>test</scope>
48*6626518dSAndrew Vuong        </dependency>
49*6626518dSAndrew Vuong    </dependencies>
50*6626518dSAndrew Vuong    <build>
51*6626518dSAndrew Vuong        <plugins>
52*6626518dSAndrew Vuong            <plugin>
53*6626518dSAndrew Vuong                <groupId>org.apache.maven.plugins</groupId>
54*6626518dSAndrew Vuong                <artifactId>maven-source-plugin</artifactId>
55*6626518dSAndrew Vuong            </plugin>
56*6626518dSAndrew Vuong            <plugin>
57*6626518dSAndrew Vuong                <groupId>org.apache.maven.plugins</groupId>
58*6626518dSAndrew Vuong                <artifactId>maven-surefire-plugin</artifactId>
59*6626518dSAndrew Vuong                <version>${surefire.plugin.version}</version>
60*6626518dSAndrew Vuong                <configuration>
61*6626518dSAndrew Vuong                    <systemProperties>
62*6626518dSAndrew Vuong                        <property>
63*6626518dSAndrew Vuong                            <name>test.resources.dir</name>
64*6626518dSAndrew Vuong                            <value>${project.build.directory}</value>
65*6626518dSAndrew Vuong                        </property>
66*6626518dSAndrew Vuong                    </systemProperties>
67*6626518dSAndrew Vuong                </configuration>
68*6626518dSAndrew Vuong                <executions>
69*6626518dSAndrew Vuong                    <execution>
70*6626518dSAndrew Vuong                        <id>integration-test</id>
71*6626518dSAndrew Vuong                        <phase>integration-test</phase>
72*6626518dSAndrew Vuong                        <goals>
73*6626518dSAndrew Vuong                            <goal>test</goal>
74*6626518dSAndrew Vuong                        </goals>
75*6626518dSAndrew Vuong                        <configuration>
76*6626518dSAndrew Vuong                            <skip>false</skip>
77*6626518dSAndrew Vuong                        </configuration>
78*6626518dSAndrew Vuong                    </execution>
79*6626518dSAndrew Vuong                </executions>
80*6626518dSAndrew Vuong            </plugin>
81*6626518dSAndrew Vuong            <plugin>
82*6626518dSAndrew Vuong                <groupId>org.apache.felix</groupId>
83*6626518dSAndrew Vuong                <artifactId>maven-bundle-plugin</artifactId>
84*6626518dSAndrew Vuong            </plugin>
85*6626518dSAndrew Vuong        </plugins>
86*6626518dSAndrew Vuong    </build>
87*6626518dSAndrew Vuong</project>
88