| <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"> |
| |
| <modelVersion>4.0.0</modelVersion> |
| <parent> |
| <groupId>org.apache.struts</groupId> |
| <artifactId>struts2-parent</artifactId> |
| <version>2.5.13</version> |
| </parent> |
| |
| <artifactId>struts2-site</artifactId> |
| <packaging>pom</packaging> |
| <name>Apache Struts site and docs</name> |
| |
| <properties> |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| </properties> |
| |
| <profiles> |
| <profile> |
| <id>cwiki</id> |
| <activation> |
| <activeByDefault>true</activeByDefault> |
| </activation> |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.cxf.site-export</groupId> |
| <artifactId>cxf-site-export</artifactId> |
| <version>1.0-SNAPSHOT</version> |
| </dependency> |
| </dependencies> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>exec-maven-plugin</artifactId> |
| <version>1.2</version> |
| <executions> |
| <execution> |
| <id>cwiki-docs</id> |
| <phase>prepare-package</phase> |
| <goals> |
| <goal>java</goal> |
| </goals> |
| <configuration> |
| <includeProjectDependencies>true</includeProjectDependencies> |
| <mainClass>org.apache.cxf.cwiki.SiteExporter</mainClass> |
| <arguments> |
| <argument>-d</argument> |
| <argument>${project.build.directory}/cwiki/WW</argument> |
| <argument>-password</argument> |
| <argument>${confluence.password}</argument> |
| <argument>-user</argument> |
| <argument>${confluence.user}</argument> |
| <argument>${basedir}/src/etc/docs.cfg</argument> |
| </arguments> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| |
| </build> |
| </profile> |
| <profile> |
| <id>md</id> |
| <dependencies> |
| <dependency> |
| <groupId>de.viaboxx.markdown</groupId> |
| <artifactId>confluence2md</artifactId> |
| <version>2.1</version> |
| <classifier>fat</classifier> |
| </dependency> |
| </dependencies> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>exec-maven-plugin</artifactId> |
| <version>1.2</version> |
| <executions> |
| <execution> |
| <id>md-docs</id> |
| <phase>prepare-package</phase> |
| <goals> |
| <goal>java</goal> |
| </goals> |
| <configuration> |
| <includeProjectDependencies>true</includeProjectDependencies> |
| <mainClass>de.viaboxx.markdown.Confluence2MD</mainClass> |
| <arguments> |
| <argument>-jar</argument> |
| <argument>confluence2md-fat.jar</argument> |
| <argument>-a</argument> |
| <argument>${project.build.directory}/md/attachments</argument> |
| <argument>-o</argument> |
| <argument>${project.build.directory}/md/big-picture.md</argument> |
| <argument>-u</argument> |
| <argument>${confluence.user}:${confluence.password}</argument> |
| <argument>-server</argument> |
| <argument>https://cwiki.apache.org/confluence</argument> |
| <argument>+gfm</argument> |
| <argument>true</argument> |
| <argument>13850</argument> |
| </arguments> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| </profile> |
| </profiles> |
| |
| </project> |