1
0
mirror of https://github.com/Rogiel/httpchannel synced 2025-12-05 23:22:51 +00:00

Implements multimodule site deployment

This commit is contained in:
2012-01-23 02:04:01 -02:00
parent cd075252a5
commit d2a0e4baa4
3 changed files with 45 additions and 2 deletions

View File

@@ -1,4 +1,5 @@
<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"> <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">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<artifactId>httpchannel</artifactId> <artifactId>httpchannel</artifactId>
@@ -22,4 +23,18 @@
<version>1.0.1-SNAPSHOT</version> <version>1.0.1-SNAPSHOT</version>
</dependency> </dependency>
</dependencies> </dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>com.github.github</groupId>
<artifactId>site-maven-plugin</artifactId>
<configuration>
<path>/${project.parent.artifactId}/${project.artifactId}</path>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project> </project>

View File

@@ -1,4 +1,5 @@
<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"> <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">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<artifactId>httpchannel</artifactId> <artifactId>httpchannel</artifactId>
@@ -39,4 +40,18 @@
<version>1.0.1-SNAPSHOT</version> <version>1.0.1-SNAPSHOT</version>
</dependency> </dependency>
</dependencies> </dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>com.github.github</groupId>
<artifactId>site-maven-plugin</artifactId>
<configuration>
<path>/${project.parent.artifactId}/${project.artifactId}</path>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project> </project>

13
pom.xml
View File

@@ -175,6 +175,8 @@
<message>Creating ${project.artifactId} site for ${project.version}</message> <message>Creating ${project.artifactId} site for ${project.version}</message>
<repositoryOwner>seedbox</repositoryOwner> <repositoryOwner>seedbox</repositoryOwner>
<repositoryName>httpchannel.github.com</repositoryName> <repositoryName>httpchannel.github.com</repositoryName>
<merge>true</merge>
<path>/</path>
</configuration> </configuration>
<executions> <executions>
<execution> <execution>
@@ -226,6 +228,17 @@
</executions> </executions>
</plugin> </plugin>
</plugins> </plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>com.github.github</groupId>
<artifactId>site-maven-plugin</artifactId>
<configuration>
<path>/${project.artifactId}</path>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build> </build>
<profiles> <profiles>