blob: dcd843ee3c1c6696349455b1d45f8f2242e00ef4 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (C) 2009-2010 the original author or authors.
See the notice.md file distributed with this work for additional
information regarding copyright ownership.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.apache.karaf</groupId>
<artifactId>karaf</artifactId>
<version>2.2.9</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>site</artifactId>
<name>Apache Karaf :: Site</name>
<packaging>war</packaging>
<properties>
<must-succeed>false</must-succeed>
<site.dir>${project.build.directory}/site</site.dir>
<manual>${site.dir}/manual-${project.version}</manual>
<netbeans.hint.deploy.server>Tomcat60</netbeans.hint.deploy.server>
<jetty-port>8080</jetty-port>
<jetty-war-dir>${project.build.directory}/webapp/</jetty-war-dir>
<scalate.version>1.4.0</scalate.version>
<wikitext.version>1.3</wikitext.version>
<scalate.editor>${env.SCALATE_EDITOR}</scalate.editor>
<scalate.mode>production</scalate.mode>
<scalate.workdir>${project.build.directory}/scalateWorkDir</scalate.workdir>
<karaf.version>${project.version}</karaf.version>
<maven.wagon.version>1.0-beta-6</maven.wagon.version>
</properties>
<repositories>
<repository>
<id>fusesource</id>
<name>Fusesource Maven Repository</name>
<url>http://repo.fusesource.com/nexus/content/repositories/snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>fusesource</id>
<name>Fusesource Maven Repository</name>
<url>http://repo.fusesource.com/nexus/content/repositories/snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
<dependencies>
<dependency>
<groupId>org.fusesource.scalate</groupId>
<artifactId>scalate-wikitext</artifactId>
<version>${scalate.version}</version>
</dependency>
<dependency>
<groupId>org.fusesource.wikitext</groupId>
<artifactId>wikitext-core</artifactId>
<version>${wikitext.version}</version>
</dependency>
<dependency>
<groupId>org.fusesource.wikitext</groupId>
<artifactId>confluence-core</artifactId>
<version>${wikitext.version}</version>
</dependency>
<dependency>
<groupId>org.fusesource.scalate</groupId>
<artifactId>scalate-page</artifactId>
<version>${scalate.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.0.9</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.2</version>
</dependency>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
<version>2.8.1</version>
</dependency>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-compiler</artifactId>
<version>2.8.1</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>filter</id>
<phase>generate-resources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/webapp</outputDirectory>
<resources>
<resource>
<directory>src/main/webapp</directory>
<filtering>true</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<id>add-source</id>
<phase>generate-resources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>${project.build.directory}/webapp</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.fusesource.scalate</groupId>
<artifactId>maven-scalate-plugin</artifactId>
<version>${scalate.version}</version>
<executions>
<execution>
<id>generate-htmls</id>
<!-- <phase>compile</phase> -->
<goals>
<goal>sitegen</goal>
</goals>
<!-- <configuration>
<warSourceDirectory>${project.build.directory}/webapp</warSourceDirectory>
</configuration> -->
</execution>
</executions>
<configuration>
<remoteServerId>people.apache.org</remoteServerId>
<remoteServerUrl>scp://people.apache.org/www/karaf.apache.org/</remoteServerUrl>
<url>https://cwiki.apache.org/confluence/rpc/xmlrpc</url>
<space>KARAF</space>
<user>${confluence.user}</user>
<password>${confluence.password}</password>
<target>${basedir}/src/main/webapp</target>
</configuration>
<dependencies>
<dependency>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh</artifactId>
<version>${maven.wagon.version}</version>
</dependency>
<dependency>
<groupId>org.fusesource.wikitext</groupId>
<artifactId>confluence-core</artifactId>
<version>${wikitext.version}</version>
</dependency>
<dependency>
<groupId>org.fusesource.wikitext</groupId>
<artifactId>wikitext-core</artifactId>
<version>${wikitext.version}</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>2.2</version>
<configuration>
<webResources>
<resource>
<directory>${project.build.directory}/webapp/</directory>
</resource>
</webResources>
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>8.1.4.v20120524</version>
<configuration>
<!-- When editing the conf files, you can comment this line to run
mvn jetty:run
to have a live web site
-->
<webAppSourceDirectory>${jetty-war-dir}</webAppSourceDirectory>
<systemProperties>
<systemProperty>
<name>scalate.editor</name>
<value>${scalate.editor}</value>
</systemProperty>
<systemProperty>
<name>scalate.workdir</name>
<value>${scalate.workdir}</value>
</systemProperty>
<systemProperty>
<name>scalate.mode</name>
<value>${scalate.mode}</value>
</systemProperty>
</systemProperties>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<executions>
<execution>
<id>bundle-manifest</id>
<phase>process-classes</phase>
<goals>
<goal>manifest</goal>
</goals>
</execution>
</executions>
<configuration>
<supportedProjectTypes>
<supportedProjectType>jar</supportedProjectType>
<supportedProjectType>bundle</supportedProjectType>
<supportedProjectType>war</supportedProjectType>
</supportedProjectTypes>
<instructions>
<Import-Package>
javax.servlet,
javax.servlet.http,
org.osgi.framework,
org.osgi.service.packageadmin,
javax.swing.tree,
org.apache.commons.logging;provider=paxlogging;resolution:=optional,
org.apache.log4j;provider=paxlogging;resolution:=optional,
org.slf4j;provider=paxlogging;resolution:=optional;version="[1.5,2)",
*
</Import-Package>
<Bundle-ClassPath>.,WEB-INF/classes</Bundle-ClassPath>
<Embed-Directory>WEB-INF/lib</Embed-Directory>
<Embed-Dependency>*;scope=compile|runtime</Embed-Dependency>
<Embed-Transitive>true</Embed-Transitive>
<Webapp-Context>/karaf-doc</Webapp-Context>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-publish-plugin</artifactId>
<version>1.0-beta-2</version>
<configuration>
<checkinComment>[scm-publish] Updating main website contents</checkinComment>
<pubScmUrl>scm:svn:https://svn.apache.org/repos/asf/karaf/site/production</pubScmUrl>
<content>${project.build.directory}/sitegen</content>
<ignorePathsToDelete>
<ignorePathToDelete>docs/**</ignorePathToDelete>
</ignorePathsToDelete>
<tryUpdate>true</tryUpdate>
<skipDeletedFiles>true</skipDeletedFiles>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.fusesource.scalate</groupId>
<artifactId>maven-scalate-plugin</artifactId>
<version>${scalate.version}</version>
</plugin>
</plugins>
</reporting>
<profiles>
<profile>
<id>live</id>
<properties>
<jetty-war-dir>${basedir}/src/main/webapp/</jetty-war-dir>
<scalate.mode>development</scalate.mode>
</properties>
</profile>
<profile>
<id>release</id>
<properties>
<must-succeed>true</must-succeed>
</properties>
</profile>
</profiles>
</project>