Skip to content

Commit

Permalink
Add table of contents
Browse files Browse the repository at this point in the history
  • Loading branch information
ctomc committed Jun 1, 2017
1 parent c409354 commit 7a59b6f
Show file tree
Hide file tree
Showing 3 changed files with 69 additions and 13 deletions.
13 changes: 6 additions & 7 deletions dist/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,30 +15,29 @@
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">
<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.jboss</groupId>
<artifactId>jboss-parent</artifactId>
<version>22</version>
<version>23</version>
<relativePath/>
</parent>
<groupId>org.jboss.eap.quickstarts</groupId>
<artifactId>quickstarts-dist</artifactId>
<version>7.1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>JBoss EAP Quickstarts Distribution</name>
<description>JBoss EAP Quickstarts Distribution</description>
<url>https://github.com/jboss-developer/jboss-eap-quickstarts</url>

<name>Quickstarts Distribution</name>
<description>Quickstarts Distribution</description>

<licenses>
<license>
<name>Apache License, Version 2.0</name>
<distribution>repo</distribution>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
</license>
</licenses>

<build>
<plugins>
<plugin>
Expand Down
5 changes: 3 additions & 2 deletions dist/src/main/assembly/assembly.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@
xsi:schemaLocation="
http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/assembly-1.1.1.xsd">
<id>dist</id>
<baseDirectory>jboss-as-quickstarts-${project.version}</baseDirectory>
<baseDirectory>eap-quickstarts-${project.version}</baseDirectory>
<formats>
<format>zip</format>
</formats>

<fileSets>
<fileSet>
<directory>${project.basedir}/..</directory>
<outputDirectory>/</outputDirectory>
<outputDirectory>./</outputDirectory>
<excludes>
<exclude>dist/**</exclude>
<exclude>template/**</exclude>
Expand All @@ -36,6 +36,7 @@
<exclude>**/.settings/**</exclude>
<exclude>**/.classpath</exclude>
<exclude>**/.gitignore</exclude>
<exclude>**/.iml</exclude>
</excludes>
</fileSet>
</fileSets>
Expand Down
64 changes: 60 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
<parent>
<groupId>org.jboss</groupId>
<artifactId>jboss-parent</artifactId>
<version>23</version>
<relativePath />
<version>23</version>
<relativePath />
</parent>
<groupId>org.jboss.eap.quickstarts</groupId>
<artifactId>quickstart-parent</artifactId>
Expand Down Expand Up @@ -490,6 +490,7 @@
<module>h2-console</module>
<module>jts-distributed-crash-rec</module>
<module>messaging-clustering</module>
<module>dist</module>
</modules>
</profile>
<profile>
Expand Down Expand Up @@ -570,6 +571,44 @@
<module>spring-petclinic/functional-tests</module>
</modules>
</profile>
<profile>
<id>release</id>
<modules>
<module>dist</module>
</modules>
<build>
<!--<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.0.0</version>
<configuration>
<pomElements>
<dependencyManagement>keep</dependencyManagement>
<properties>interpolate</properties>
<dependencies>interpolate</dependencies>
</pomElements>
</configuration>
<executions>
<execution>
<id>flatten</id>
<phase>process-resources</phase>
<goals>
<goal>flatten</goal>
</goals>
</execution>
<execution>
<id>flatten.clean</id>
<phase>clean</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>-->
</build>
</profile>

<profile>
<!-- An optional Arquillian testing profile that executes tests in your JBoss EAP instance.
Expand Down Expand Up @@ -680,7 +719,6 @@
<executions>
<execution>
<id>copy-resources</id>
<!-- here the phase you need -->
<phase>generate-resources</phase>
<goals>
<goal>copy-resources</goal>
Expand All @@ -703,10 +741,28 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.wildfly.maven.plugins</groupId>
<artifactId>quickstart-documentation-plugin</artifactId>
<version>1.0.0</version>
<inherited>false</inherited>
<configuration>
<rootDirectory>.</rootDirectory>
<targetDocument>${project.build.directory}/docs/README.md</targetDocument>
</configuration>
<executions>
<execution>
<phase>process-resources</phase>
<goals>
<goal>table-of-contents</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.vladsch.flexmark</groupId>
<artifactId>markdown-page-generator-plugin</artifactId>
<version>0.15.4</version>
<version>0.18.2</version>
<executions>
<execution>
<phase>process-resources</phase>
Expand Down

0 comments on commit 7a59b6f

Please sign in to comment.