juplo:variables parses its parameter as JSON and can merge variable-defs
[juplo-dialect] / pom.xml
1 <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">
2
3   <modelVersion>4.0.0</modelVersion>
4
5   <groupId>de.juplo.thymeleaf</groupId>
6   <artifactId>juplo-dialect</artifactId>
7   <version>1.0-SNAPSHOT</version>
8
9   <properties>
10     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
11     <java.version>1.8</java.version>
12     <junit.version>4.12</junit.version>
13     <logback.version>1.1.7</logback.version>
14     <simple-mapper.version>1.0.0</simple-mapper.version>
15     <thymeleaf.version>2.1.5.RELEASE</thymeleaf.version>
16   </properties>
17
18
19   <dependencies>
20
21     <dependency>
22       <groupId>org.thymeleaf</groupId>
23       <artifactId>thymeleaf</artifactId>
24       <version>${thymeleaf.version}</version>
25     </dependency>
26
27     <!-- Needed to parse JSON -->
28     <dependency>
29       <groupId>de.juplo.jackson</groupId>
30       <artifactId>simple-mapper</artifactId>
31       <version>${simple-mapper.version}</version>
32     </dependency>
33
34     <!-- Testing -->
35     <dependency>
36       <groupId>junit</groupId>
37       <artifactId>junit</artifactId>
38       <version>${junit.version}</version>
39       <scope>test</scope>
40     </dependency>
41     <dependency>
42       <groupId>ch.qos.logback</groupId>
43       <artifactId>logback-classic</artifactId>
44       <version>${logback.version}</version>
45       <scope>test</scope>
46     </dependency>
47
48   </dependencies>
49
50   <build>
51     <plugins>
52       <plugin>
53         <groupId>org.apache.maven.plugins</groupId>
54         <artifactId>maven-compiler-plugin</artifactId>
55         <version>3.5.1</version>
56         <configuration>
57           <source>${java.version}</source>
58           <target>${java.version}</target>
59         </configuration>
60       </plugin>
61     </plugins>
62   </build>
63
64 </project>