Skip to content

Commit

Permalink
Cleanup project site
Browse files Browse the repository at this point in the history
- fix broken links
- add breadcrumbs for site
- remove faq - there is no useful content
  • Loading branch information
slawekjaranowski committed Jul 10, 2022
1 parent 5e7a51c commit de7cfd3
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 44 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@ Changing the classpath scope when running Java programs
or, on the command line,

-----
mvn exec:exec [...] -Dexec.classpathScope="java"
mvn exec:java [...] -Dexec.classpathScope="test"
-----
16 changes: 10 additions & 6 deletions src/site/apt/index.apt
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,21 @@ Exec Maven Plugin
General instructions on how to use the Exec Maven Plugin can be found on the {{{./usage.html}usage page}}.

In case you still have questions regarding the plugin's usage, please feel
free to contact the {{{./mail-lists.html}user mailing list}}. The posts to the mailing list are archived and could
free to contact the {{{./mailing-lists.html}user mailing list}}. The posts to the mailing list are archived and could
already contain the answer to your question as part of an older thread. Hence, it is also worth browsing/searching
the {{{./mail-lists.html}mail archive}}.
the {{{./mailing-lists.html}mail archive}}.

If you feel like the plugin is missing a feature or has a defect, you can fill a feature request or bug report in our
{{{./issue-tracking.html}issue tracker}}. When creating a new issue, please provide a comprehensive description of your
{{{./issue-management.html}issue tracker}}.

When creating a new issue, please provide a comprehensive description of your
concern. Especially for fixing bugs it is crucial that the developers can reproduce your problem. For this reason,
entire debug logs, POMs or most preferably little demo projects attached to the issue are very much appreciated.
Of course, patches are most welcome too. Contributors can check out the project from our
{{{./source-repository.html}source repository}} and will find supplementary information in the
{{{http://maven.apache.org/guides/development/guide-helping.html}guide to helping with Maven}}.
Of course, patches are most welcome too.

Contributors can check out the project from our {{{./scm.html}source repository}} and will find supplementary
information in the {{{https://www.mojohaus.org/contribution/reporting-an-issue.html}Reporting an Issue}},
{{{https://www.mojohaus.org/contribution/submitting-a-patch.html}Submitting a Patch}}

* Examples

Expand Down
30 changes: 0 additions & 30 deletions src/site/fml/faq.fml

This file was deleted.

24 changes: 17 additions & 7 deletions src/site/site.xml
Original file line number Diff line number Diff line change
@@ -1,19 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/DECORATION/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/DECORATION/1.0.0 http://maven.apache.org/xsd/decoration-1.0.0.xsd">
<project xmlns="http://maven.apache.org/DECORATION/1.8.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/DECORATION/1.8.0 http://maven.apache.org/xsd/decoration-1.8.0.xsd">
<body>
<breadcrumbs>
<item name="MojoHaus" href="https://www.mojohaus.org/"/>
<item name="${this.name}" href="${this.url}"/>
</breadcrumbs>

<menu name="Overview">
<item name="Introduction" href="index.html"/>
<item name="Goals" href="plugin-info.html"/>
<item name="Usage" href="usage.html"/>
<item name="FAQ" href="faq.html"/>
</menu>

<menu name="Examples">
<item name="Running Java programs with exec:exec" href="examples/example-exec-for-java-programs.html"/>
<item name="Changing the classpath scope when running Java programs" href="examples/example-exec-or-java-change-classpath-scope.html"/>
<item name="Using plugin dependencies with exec:exec" href="examples/example-exec-using-plugin-dependencies.html"/>
<item name="Using toolchains with exec:exec" href="examples/example-exec-using-toolchains.html"/>
<item name="Using executable binary dependencies instead of local executables" href="examples/example-exec-using-executabledependency.html"/>
<item name="Running Java programs with exec:exec"
href="examples/example-exec-for-java-programs.html"/>
<item name="Changing the classpath scope when running Java programs"
href="examples/example-exec-or-java-change-classpath-scope.html"/>
<item name="Using plugin dependencies with exec:exec"
href="examples/example-exec-using-plugin-dependencies.html"/>
<item name="Using toolchains with exec:exec"
href="examples/example-exec-using-toolchains.html"/>
<item name="Using executable binary dependencies instead of local executables"
href="examples/example-exec-using-executabledependency.html"/>
</menu>
</body>
</project>

0 comments on commit de7cfd3

Please sign in to comment.