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