Normal links are renderd with a version-subdirectory - canonical without
[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.0</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   <licenses>
39     <license>
40       <name>GNU Lesser General Public License, Version 3.0</name>
41       <url>http://www.gnu.org/licenses/lgpl-3.0.en.html</url>
42       <distribution>repo</distribution>
43     </license>
44   </licenses>
45
46
47   <properties>
48
49     <!-- Zeichensatz -->
50     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
51
52   </properties>
53
54   <build>
55     <plugins>
56       <plugin>
57         <groupId>org.apache.maven.plugins</groupId>
58         <artifactId>maven-resources-plugin</artifactId>
59         <version>2.7</version>
60         <dependencies>
61           <dependency>
62             <groupId>org.apache.maven.shared</groupId>
63             <artifactId>maven-filtering</artifactId>
64             <version>1.3</version>
65           </dependency>
66         </dependencies>
67         <executions>
68           <execution>
69             <id>copy-resources</id>
70             <phase>pre-site</phase>
71             <goals>
72               <goal>copy-resources</goal>
73             </goals>
74             <configuration>
75               <outputDirectory>${project.build.directory}/filtered-site</outputDirectory>
76               <resources>
77                 <resource>
78                   <directory>src/site</directory>
79                   <filtering>true</filtering>
80                 </resource>
81               </resources>
82             </configuration>
83           </execution>
84         </executions>
85       </plugin>
86       <plugin>
87         <artifactId>maven-site-plugin</artifactId>
88         <version>3.5.1</version>
89         <configuration>
90           <siteDirectory>${project.build.directory}/filtered-site</siteDirectory>
91         </configuration>
92       </plugin>
93     </plugins>
94   </build>
95
96   <reporting>
97     <plugins>
98       <plugin>
99         <groupId>org.apache.maven.plugins</groupId>
100         <artifactId>maven-project-info-reports-plugin</artifactId>
101         <version>2.9</version>
102         <configuration>
103           <linkOnly>true</linkOnly>
104         </configuration>
105       </plugin>
106     </plugins>
107   </reporting>
108
109 </project>