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>spring-velocity-support</artifactId> 30*6626518dSAndrew Vuong <name>Spring framework Velocity support</name> 31*6626518dSAndrew Vuong <description>Velocity Engine factory bean for Spring framework</description> 32*6626518dSAndrew Vuong <properties> 33*6626518dSAndrew Vuong <springframework.version>5.3.20</springframework.version> 34*6626518dSAndrew Vuong </properties> 35*6626518dSAndrew Vuong <dependencies> 36*6626518dSAndrew Vuong <dependency> 37*6626518dSAndrew Vuong <groupId>org.apache.velocity</groupId> 38*6626518dSAndrew Vuong <artifactId>velocity-engine-core</artifactId> 39*6626518dSAndrew Vuong <version>${project.version}</version> 40*6626518dSAndrew Vuong </dependency> 41*6626518dSAndrew Vuong <dependency> 42*6626518dSAndrew Vuong <groupId>org.springframework</groupId> 43*6626518dSAndrew Vuong <artifactId>spring-core</artifactId> 44*6626518dSAndrew Vuong <version>${springframework.version}</version> 45*6626518dSAndrew Vuong </dependency> 46*6626518dSAndrew Vuong <dependency> 47*6626518dSAndrew Vuong <groupId>org.springframework</groupId> 48*6626518dSAndrew Vuong <artifactId>spring-beans</artifactId> 49*6626518dSAndrew Vuong <version>${springframework.version}</version> 50*6626518dSAndrew Vuong </dependency> 51*6626518dSAndrew Vuong <dependency> 52*6626518dSAndrew Vuong <groupId>org.springframework</groupId> 53*6626518dSAndrew Vuong <artifactId>spring-context</artifactId> 54*6626518dSAndrew Vuong <version>${springframework.version}</version> 55*6626518dSAndrew Vuong </dependency> 56*6626518dSAndrew Vuong <dependency> 57*6626518dSAndrew Vuong <groupId>junit</groupId> 58*6626518dSAndrew Vuong <artifactId>junit</artifactId> 59*6626518dSAndrew Vuong <version>${junit.version}</version> 60*6626518dSAndrew Vuong <scope>test</scope> 61*6626518dSAndrew Vuong </dependency> 62*6626518dSAndrew Vuong <dependency> 63*6626518dSAndrew Vuong <groupId>org.slf4j</groupId> 64*6626518dSAndrew Vuong <artifactId>slf4j-simple</artifactId> 65*6626518dSAndrew Vuong <version>${slf4j.version}</version> 66*6626518dSAndrew Vuong <scope>test</scope> 67*6626518dSAndrew Vuong </dependency> 68*6626518dSAndrew Vuong </dependencies> 69*6626518dSAndrew Vuong <build> 70*6626518dSAndrew Vuong <plugins> 71*6626518dSAndrew Vuong <plugin> 72*6626518dSAndrew Vuong <groupId>org.apache.maven.plugins</groupId> 73*6626518dSAndrew Vuong <artifactId>maven-source-plugin</artifactId> 74*6626518dSAndrew Vuong </plugin> 75*6626518dSAndrew Vuong <plugin> 76*6626518dSAndrew Vuong <groupId>org.apache.maven.plugins</groupId> 77*6626518dSAndrew Vuong <artifactId>maven-surefire-plugin</artifactId> 78*6626518dSAndrew Vuong <version>${surefire.plugin.version}</version> 79*6626518dSAndrew Vuong <configuration> 80*6626518dSAndrew Vuong <systemProperties> 81*6626518dSAndrew Vuong <property> 82*6626518dSAndrew Vuong <name>test.resources.dir</name> 83*6626518dSAndrew Vuong <value>${project.build.testOutputDirectory}</value> 84*6626518dSAndrew Vuong </property> 85*6626518dSAndrew Vuong </systemProperties> 86*6626518dSAndrew Vuong </configuration> 87*6626518dSAndrew Vuong <executions> 88*6626518dSAndrew Vuong <execution> 89*6626518dSAndrew Vuong <id>integration-test</id> 90*6626518dSAndrew Vuong <phase>integration-test</phase> 91*6626518dSAndrew Vuong <goals> 92*6626518dSAndrew Vuong <goal>test</goal> 93*6626518dSAndrew Vuong </goals> 94*6626518dSAndrew Vuong <configuration> 95*6626518dSAndrew Vuong <skip>false</skip> 96*6626518dSAndrew Vuong </configuration> 97*6626518dSAndrew Vuong </execution> 98*6626518dSAndrew Vuong </executions> 99*6626518dSAndrew Vuong </plugin> 100*6626518dSAndrew Vuong <plugin> 101*6626518dSAndrew Vuong <groupId>org.apache.felix</groupId> 102*6626518dSAndrew Vuong <artifactId>maven-bundle-plugin</artifactId> 103*6626518dSAndrew Vuong </plugin> 104*6626518dSAndrew Vuong </plugins> 105*6626518dSAndrew Vuong </build> 106*6626518dSAndrew Vuong</project> 107