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