972375bf6311abab8187925056c2a4b0e9a5f691
[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   <organization>
34     <name>juplo</name>
35     <url>http://juplo.de</url>
36   </organization>
37
38
39   <properties>
40
41     <!-- Zeichensatz -->
42     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
43
44   </properties>
45
46   <build>
47     <plugins>
48       <plugin>
49         <groupId>org.apache.maven.plugins</groupId>
50         <artifactId>maven-resources-plugin</artifactId>
51         <version>2.7</version>
52         <dependencies>
53           <dependency>
54             <groupId>org.apache.maven.shared</groupId>
55             <artifactId>maven-filtering</artifactId>
56             <version>1.3</version>
57           </dependency>
58         </dependencies>
59         <executions>
60           <execution>
61             <id>copy-resources</id>
62             <phase>pre-site</phase>
63             <goals>
64               <goal>copy-resources</goal>
65             </goals>
66             <configuration>
67               <outputDirectory>${project.build.directory}/filtered-site</outputDirectory>
68               <resources>
69                 <resource>
70                   <directory>src/site</directory>
71                   <filtering>true</filtering>
72                 </resource>
73               </resources>
74             </configuration>
75           </execution>
76         </executions>
77       </plugin>
78       <plugin>
79         <artifactId>maven-site-plugin</artifactId>
80         <version>3.5.1</version>
81         <configuration>
82           <siteDirectory>${project.build.directory}/filtered-site</siteDirectory>
83         </configuration>
84       </plugin>
85     </plugins>
86   </build>
87
88 </project>