• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<project xmlns="http://maven.apache.org/POM/4.0.0"
2         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4
5  <modelVersion>4.0.0</modelVersion>
6
7  <parent>
8    <groupId>org.slf4j</groupId>
9    <artifactId>slf4j-parent</artifactId>
10    <version>1.7.13-SNAPSHOT</version>
11  </parent>
12
13  <artifactId>slf4j-site</artifactId>
14
15  <packaging>jar</packaging>
16  <name>SLF4J Site</name>
17  <description>SLF4J Site</description>
18  <url>http://www.slf4j.org</url>
19
20  <build>
21    <resources>
22      <resource>
23        <directory>src/site/pages</directory>
24        <!--We're saving filtered html docs in a temporary folder-->
25        <!--and telling the site plug in to get the docs there.-->
26        <targetPath>../../../target/site</targetPath>
27        <filtering>true</filtering>
28      </resource>
29    </resources>
30    <plugins>
31      <plugin>
32        <groupId>org.apache.maven.plugins</groupId>
33        <artifactId>maven-site-plugin</artifactId>
34        <version>${maven-site-plugin.version}</version>
35        <configuration>
36          <outputDirectory>${project.parent.basedir}/target/site
37          </outputDirectory>
38        </configuration>
39      </plugin>
40    </plugins>
41  </build>
42
43</project>