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
2 changes: 1 addition & 1 deletion src/site/fml/faq.fml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ under the License.
<faq id="how-to-add-generated-sources">
<question>How do I add my generated sources to the compile path of Maven, when using Modello?</question>
<answer>
<p>Modello generate the sources in the generate-sources phase and automatically adds the
<p>Modello generates the sources in the generate-sources phase and automatically adds the
source directory for compilation in Maven. So you don't have to copy the generated sources.
</p>
<p>You have to declare the <a href="https://codehaus-plexus.github.io/modello/modello-maven-plugin/">Modello Maven Plugin</a>
Expand Down
2 changes: 1 addition & 1 deletion src/site/markdown/examples/compile-using-different-jdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ or sets an environment variable, so that the build remains portable.
<profile>
<id>compiler</id>
<properties>
<JAVA_11_HOME>/usr/lib/jvm/java-11-openjdkk</JAVA_11_HOME>
<JAVA_11_HOME>/usr/lib/jvm/java-11-openjdk</JAVA_11_HOME>
</properties>
</profile>
</profiles>
Expand Down
4 changes: 2 additions & 2 deletions src/site/markdown/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Of course, patches are welcome, too.
Contributors can check out the project from our [source repository](./scm.html) and will find supplementary information
in the [guide to helping with Maven](https://maven.apache.org/guides/development/guide-helping.html).

The following pages describes how to use the plugin beyond the default
The following pages describe how to use the plugin beyond the default
"one source directory, one module, one release" default configuration:

* [Declaration of source directories](./sources.html)
Expand All @@ -69,7 +69,7 @@ you can take a look into the following examples:
* [Annotation processors](./examples/annotation-processor.html)
* [Arguments related to Java Platform Module System](./examples/jpms_args.html)
* [Compile using a different JDK](./examples/compile-using-different-jdk.html)
* [Compile using a non-javac compilers](./examples/non-javac-compilers.html)
* [Compile using a non-javac compiler](./examples/non-javac-compilers.html)
* [Compile using the --source and --target javac options](./examples/set-compiler-source-and-target.html)
* [Compile using the --release javac option](./examples/set-compiler-release.html)
* [Compile using memory allocation enhancements](./examples/compile-with-memory-enhancements.html)
Expand Down
8 changes: 4 additions & 4 deletions src/site/markdown/sources.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,15 @@ One can write:
<build>
<sources>
<source>
<scope>main</scope> <!-- Can be omited as it is the default -->
<scope>main</scope> <!-- Can be omitted as it is the default -->
<directory>my-custom-dir/foo</directory>
</source>
<source>
<scope>test</scope>
<directory>my-custom-dir/bar</directory>
</source>
</sources>
<build>
</build>
</project>
```

Expand All @@ -81,15 +81,15 @@ as their default values are `src/main/java` and `src/test/java` respectively.
<!-- Default directory is src/main/java -->
</source>
<source>
<scope>main</scope> <!-- Can be omited as it is the default -->
<scope>main</scope> <!-- Can be omitted as it is the default -->
<directory>src/extension/java</directory>
</source>
<source>
<scope>test</scope>
<!-- Default directory is src/test/java -->
</source>
</sources>
<build>
</build>
</project>
```

Expand Down
2 changes: 1 addition & 1 deletion src/site/site.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ under the License.
<item name="Compile Using the --release javac Option" href="examples/set-compiler-release.html"/>
<item name="Compile Using Memory Allocation Enhancements" href="examples/compile-with-memory-enhancements.html"/>
<item name="Pass Compiler Arguments" href="examples/pass-compiler-arguments.html"/>
<item name="Non-javac compilerIds" href="examples/non-javac-compilers.html"/>
<item name="Compile Using a Non-Javac Compiler" href="examples/non-javac-compilers.html"/>
<item name="Older projects with module-info" href="examples/module-info.html"/>
Comment thread
desruisseaux marked this conversation as resolved.
<item name="Perform annotation processing" href="examples/annotation-processor.html"/>
</menu>
Expand Down
Loading