blob: 2e0c180d956bd75826e8b1e110cc07616b4891e4 [file] [log] [blame]
Ceki Gulcu88c4c452009-12-03 19:16:42 +01001<project xmlns="http://maven.apache.org/POM/4.0.0"
Ceki Gulcu38915da2011-10-31 23:51:10 +01002 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Jeremy Landis16b8c132014-09-27 16:48:43 -04003 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Ceki Gulcu88c4c452009-12-03 19:16:42 +01004
Ceki Gulcu67c07b72014-12-13 19:12:03 +01005 <modelVersion>4.0.0</modelVersion>
6
Ceki Gulcu38915da2011-10-31 23:51:10 +01007 <parent>
8 <groupId>org.slf4j</groupId>
9 <artifactId>slf4j-parent</artifactId>
Ceki Gulcu7122d7e2015-03-26 22:01:21 +010010 <version>1.7.13-SNAPSHOT</version>
Ceki Gulcu38915da2011-10-31 23:51:10 +010011 </parent>
Ceki Gulcu88c4c452009-12-03 19:16:42 +010012
Ceki Gulcu38915da2011-10-31 23:51:10 +010013 <artifactId>slf4j-site</artifactId>
Ceki Gulcu67c07b72014-12-13 19:12:03 +010014
Ceki Gulcu38915da2011-10-31 23:51:10 +010015 <packaging>jar</packaging>
16 <name>SLF4J Site</name>
Ceki Gulcud8b43cb2012-05-08 18:47:02 +020017 <description>SLF4J Site</description>
Ceki Gulcu38915da2011-10-31 23:51:10 +010018 <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.-->
Ceki Gulcu88c4c452009-12-03 19:16:42 +010026 <targetPath>../../../target/site</targetPath>
Ceki Gulcu38915da2011-10-31 23:51:10 +010027 <filtering>true</filtering>
28 </resource>
29 </resources>
30 <plugins>
31 <plugin>
32 <groupId>org.apache.maven.plugins</groupId>
33 <artifactId>maven-site-plugin</artifactId>
Ceki Gulcu8a1702b2014-12-14 17:51:48 +010034 <version>${maven-site-plugin.version}</version>
Ceki Gulcu38915da2011-10-31 23:51:10 +010035 <configuration>
36 <outputDirectory>${project.parent.basedir}/target/site
37 </outputDirectory>
38 </configuration>
39 </plugin>
40 </plugins>
41 </build>
Ceki Gulcu88c4c452009-12-03 19:16:42 +010042
Ceki Gulcu654ad812006-08-16 19:52:21 +000043</project>