Added aggregator module

This commit is contained in:
Kohsuke Kawaguchi 2016-01-23 15:47:58 -08:00
parent 699c1db5d1
commit 95e49bdfd3
3 changed files with 37 additions and 5 deletions

28
all/pom.xml Normal file
View File

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<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>io.jenkins.blueocean</groupId>
<artifactId>blueocean-parent</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<artifactId>blueocean-all</artifactId>
<packaging>hpi</packaging>
<name>BlueOcean :: Aggregator</name>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>blueocean-alpha</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>blueocean-bravo</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>

View File

@ -1,5 +1,8 @@
<html>
<body>
<h1>Hello</h1>
</body>
</html>
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler">
<st:contentType value="text/html;charset=UTF-8"/>
<html>
<body>
<h1>Hello</h1>
</body>
</html>
</j:jelly>

View File

@ -27,6 +27,7 @@
<module>alpha</module>
<module>bravo</module>
<module>war</module>
<module>all</module>
</modules>
<dependencyManagement>