blob: 7f0e0a5e3b4ef48ef22bd158b76864cee3276d80 [file] [log] [blame]
Éamonn McManusd68715b2017-12-27 16:54:45 -08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 Copyright (C) 2017 Google, Inc.
4
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16-->
Éamonn McManus0a340e32019-07-01 13:58:10 -070017<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/maven-v4_0_0.xsd">
Éamonn McManusd68715b2017-12-27 16:54:45 -080018 <modelVersion>4.0.0</modelVersion>
Éamonn McManus770c64c2018-06-06 14:29:09 -070019 <parent>
20 <groupId>org.sonatype.oss</groupId>
21 <artifactId>oss-parent</artifactId>
22 <version>9</version>
23 </parent>
Éamonn McManusd68715b2017-12-27 16:54:45 -080024
25 <groupId>com.google.escapevelocity</groupId>
26 <artifactId>escapevelocity</artifactId>
Éamonn McManus0a340e32019-07-01 13:58:10 -070027 <version>0.9.1</version>
Éamonn McManusd68715b2017-12-27 16:54:45 -080028 <name>EscapeVelocity</name>
29 <description>
30 A reimplementation of a subset of the Apache Velocity templating system.
31 </description>
32
Éamonn McManusa6dd1322018-06-04 17:35:33 -070033 <licenses>
34 <license>
35 <name>Apache License, Version 2.0</name>
36 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
37 <distribution>repo</distribution>
38 </license>
39 </licenses>
40
Éamonn McManusd68715b2017-12-27 16:54:45 -080041 <scm>
Éamonn McManus89ea4dd2018-04-20 17:14:33 -070042 <url>http://github.com/google/escapevelocity</url>
43 <connection>scm:git:git://github.com/google/escapevelocity.git</connection>
44 <developerConnection>scm:git:ssh://git@github.com/google/escapevelocity.git</developerConnection>
Éamonn McManusd68715b2017-12-27 16:54:45 -080045 <tag>HEAD</tag>
46 </scm>
Éamonn McManusd68715b2017-12-27 16:54:45 -080047
48 <dependencies>
49 <dependency>
50 <groupId>com.google.guava</groupId>
51 <artifactId>guava</artifactId>
52 <version>23.5-jre</version>
Éamonn McManusd68715b2017-12-27 16:54:45 -080053 </dependency>
54 <!-- test dependencies -->
55 <dependency>
56 <groupId>org.apache.velocity</groupId>
57 <artifactId>velocity</artifactId>
58 <version>1.7</version>
59 <scope>test</scope>
60 </dependency>
61 <dependency>
62 <groupId>com.google.guava</groupId>
63 <artifactId>guava-testlib</artifactId>
64 <version>23.5-jre</version>
65 <scope>test</scope>
66 </dependency>
67 <dependency>
68 <groupId>junit</groupId>
69 <artifactId>junit</artifactId>
70 <version>4.12</version>
71 <scope>test</scope>
72 </dependency>
73 <dependency>
74 <groupId>com.google.truth</groupId>
75 <artifactId>truth</artifactId>
emcmanusb515e832019-04-30 16:51:41 -040076 <version>0.44</version>
Éamonn McManusd68715b2017-12-27 16:54:45 -080077 <scope>test</scope>
78 </dependency>
79 </dependencies>
80
81 <build>
82 <plugins>
83 <plugin>
84 <groupId>org.apache.maven.plugins</groupId>
85 <artifactId>maven-compiler-plugin</artifactId>
86 <version>3.7.0</version>
87 <configuration>
Éamonn McManus89ea4dd2018-04-20 17:14:33 -070088 <source>1.8</source>
89 <target>1.8</target>
Éamonn McManusd68715b2017-12-27 16:54:45 -080090 <compilerArgument>-Xlint:all</compilerArgument>
91 <showWarnings>true</showWarnings>
92 <showDeprecation>true</showDeprecation>
93 </configuration>
94 </plugin>
95 <plugin>
96 <groupId>org.apache.maven.plugins</groupId>
97 <artifactId>maven-jar-plugin</artifactId>
98 <version>3.0.2</version>
99 </plugin>
100 <plugin>
101 <groupId>org.apache.maven.plugins</groupId>
102 <artifactId>maven-invoker-plugin</artifactId>
103 <version>3.0.1</version>
104 </plugin>
105 </plugins>
106 </build>
107</project>