Initial version (not really functioning)
[maven-thymeleaf-skin] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4
5   <groupId>de.juplo.maven</groupId>
6   <artifactId>maven-thymeleaf-skin</artifactId>
7   <version>1.0-SNAPSHOT</version>
8
9   <name>Apache-Maven Thymeleaf-Skin</name>
10   <description>A maven skin, that renders the site as templates, that can be styled without restrictions with the help of thymeleaf.</description>
11   <url>http://juplo.de/maven-thymeleaf-skin</url>
12
13   <scm>
14     <connection>scm:git:http://juplo.de/git/maven-thymeleaf-skin</connection>
15     <developerConnection>scm:git:ssh://juplo.de:/var/lib/git/juplo/maven-thymeleaf-skin</developerConnection>
16     <url>http://juplo.de/gitweb/?p=maven-thymeleaf-skin;a=summary</url>
17   </scm>
18
19   <developers>
20     <developer>
21       <id>kai</id>
22       <name>Kai Moritz</name>
23       <email>kai@juplo.de</email>
24     </developer>
25   </developers>
26
27
28   <properties>
29
30     <!-- Zeichensatz -->
31     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
32
33   </properties>
34
35   <build>
36     <plugins>
37       <plugin>
38         <groupId>org.apache.maven.plugins</groupId>
39         <artifactId>maven-resources-plugin</artifactId>
40         <version>2.7</version>
41         <dependencies>
42           <dependency>
43             <groupId>org.apache.maven.shared</groupId>
44             <artifactId>maven-filtering</artifactId>
45             <version>1.3</version>
46           </dependency>
47         </dependencies>
48         <executions>
49           <execution>
50             <id>copy-resources</id>
51             <phase>pre-site</phase>
52             <goals>
53               <goal>copy-resources</goal>
54             </goals>
55             <configuration>
56               <outputDirectory>${project.build.directory}/filtered-site</outputDirectory>
57               <resources>
58                 <resource>
59                   <directory>src/site</directory>
60                   <filtering>true</filtering>
61                 </resource>
62               </resources>
63             </configuration>
64           </execution>
65         </executions>
66       </plugin>
67       <plugin>
68         <artifactId>maven-site-plugin</artifactId>
69         <version>3.5.1</version>
70         <configuration>
71           <siteDirectory>${project.build.directory}/filtered-site</siteDirectory>
72         </configuration>
73       </plugin>
74     </plugins>
75   </build>
76
77 </project>