Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions modello-maven-plugin/src/it/features/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>org.codehaus.modello.its</groupId>
<artifactId>features</artifactId>
<version>0.1-SNAPSHOT</version>
<version>@project.version@</version>

<name>Full features IT</name>
<description>
Expand Down Expand Up @@ -72,7 +72,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.7.1</version>
<version>3.22.0</version>
</plugin>
<plugin>
<groupId>org.codehaus.modello</groupId>
Expand All @@ -85,6 +85,7 @@
<version>1.0.0</version>
<javaSource>5</javaSource>
</configuration>
<!-- START SNIPPET: executions -->
<executions>
<execution>
<id>standard</id>
Expand Down Expand Up @@ -117,6 +118,7 @@
</goals>
</execution>
</executions>
<!-- END SNIPPET: executions -->
</plugin>
</plugins>
</build>
Expand All @@ -125,7 +127,7 @@
<plugins>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.2.0</version>
<version>3.12.0</version>
<configuration>
<show>private</show>
<linksource>true</linksource>
Expand All @@ -134,12 +136,12 @@
</plugin>
<plugin>
<artifactId>maven-jxr-plugin</artifactId>
<version>3.0.0</version>
<version>3.6.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>3.0.0</version>
<version>3.9.0</version>
<reportSets>
<reportSet>
<reports>
Expand Down
12 changes: 12 additions & 0 deletions modello-maven-plugin/src/it/features/src/site/markdown/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Modello Features Demo

Displays results from some key generators on `features.mdo` that is intended as a testbed for Modello features:
- [xdoc](./features.html),
- [xsd](xsd/features-1.0.0.xsd),
- Java code generators (Java model + readers/writers) results are visible in [JavaDocs](./apidocs/index.html) and [Source Xref](./xref/index.html).

Modello executions are configured in `pom.xml`:

<pre>
<!-- MACRO{snippet|id=executions|file=pom.xml} -->
</pre>
29 changes: 20 additions & 9 deletions modello-maven-plugin/src/it/features/src/site/site.xml
Original file line number Diff line number Diff line change
@@ -1,23 +1,34 @@
<?xml version="1.0"?>
<?xml version="1.0" encoding="UTF-8"?>
<site xmlns="http://maven.apache.org/SITE/2.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SITE/2.0.0 https://maven.apache.org/xsd/site-2.0.0.xsd">
<bannerLeft name="Modello" />
<skin>
<groupId>org.apache.maven.skins</groupId>
<artifactId>maven-fluido-skin</artifactId>
<version>2.1.0</version>
</skin>

<project xmlns="http://maven.apache.org/DECORATION/1.8.1"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/DECORATION/1.8.1 https://maven.apache.org/xsd/decoration-1.8.1.xsd">
<bannerLeft>
<name>Modello</name>
</bannerLeft>
<publishDate position="right" />
<version position="right" />

<body>
<breadcrumbs>
<item name="Plexus" href="../../../index.html" />
<item name="Modello" href="../../index.html" />
<item name="Modello Maven Plugin" href="../index.html" />
</breadcrumbs>

<menu name="Overview">
<item name="Introduction" href="index.html"/>
</menu>
<menu name="Results">
<item name="xdoc" href="features.html"/>
<item name="xsd" href="xsd/features-1.0.0.xsd"/>
<item name="JavaDocs" href="apidocs/index.html"/>
<item name="Source Xref" href="xref/index.html"/>
<!--item name="FAQ" href="faq.html"/-->
</menu>

<menu ref="reports"/>
</body>

</project>
</site>
Loading