Implemented juplo:inactive, that replaces inactive <a>-tags by the tag <span>
[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     <thymeleaf.version>2.1.5.RELEASE</thymeleaf.version>
13   </properties>
14
15   <dependencies>
16     <dependency>
17       <groupId>org.thymeleaf</groupId>
18       <artifactId>thymeleaf</artifactId>
19       <version>${thymeleaf.version}</version>
20     </dependency>
21   </dependencies>
22
23   <build>
24     <plugins>
25       <plugin>
26         <groupId>org.apache.maven.plugins</groupId>
27         <artifactId>maven-compiler-plugin</artifactId>
28         <version>3.5.1</version>
29         <configuration>
30           <source>${java.version}</source>
31           <target>${java.version}</target>
32         </configuration>
33       </plugin>
34     </plugins>
35   </build>
36
37 </project>