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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ Maven Executor
==============

[![Apache License, Version 2.0, January 2004](https://img.shields.io/github/license/apache/maven-executor.svg?label=License)][license]
[![Maven Central](https://img.shields.io/maven-central/v/org.apache.maven.plugins/maven-executor-plugin.svg?label=Maven%20Central)](https://search.maven.org/artifact/org.apache.maven.plugins/maven-executor-plugin)
[![Maven Central](https://img.shields.io/maven-central/v/org.apache.maven.executor/maven-executor.svg?label=Maven%20Central)](https://search.maven.org/artifact/org.apache.maven.executor/maven-executor)
[![Reproducible Builds](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/jvm-repo-rebuild/reproducible-central/master/content/org/apache/maven/executor/badge.json)](https://github.com/jvm-repo-rebuild/reproducible-central/blob/master/content/org/apache/maven/executor/README.md)

The Executor suite provides means to execute Maven 3 and Maven 4 programmatically,
usually as part of some "integration builds" suite for some plugin or extensions,
or Maven itself.
or Maven itself. It is meant to replace [maven-invoker](https://github.com/apache/maven-invoker/) and [maven-verifier](https://github.com/apache/maven-verifier/).

The dependency-less artifact `maven-executor` provides API and two executor
implementations out of the box: "forked" and "embedded". There are more providers in
Expand All @@ -36,8 +36,8 @@ implementations out of the box: "forked" and "embedded". There are more provider
Versions
--------

Maven Executor 1.x line will contain **only** the executor bits, needed to run Maven ITs.
Maven Executor 2.x line will add extra features a top of executors.
Maven Executor 1.x line contains **only** the executor components extracted from Maven 4.0.0-RC, needed to run Maven ITs.
Maven Executor 2.x line will add extra features a top of executors, like a Maven plugin.

Contributing
------------
Expand Down
6 changes: 4 additions & 2 deletions maven-executor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,17 @@
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.apache.maven.executor</groupId>
<artifactId>executor</artifactId>
<groupId>org.apache.maven</groupId>
<artifactId>maven-executor</artifactId>
<version>1.0.1-SNAPSHOT</version>
</parent>

<groupId>org.apache.maven.executor</groupId>
<artifactId>maven-executor</artifactId>
<packaging>jar</packaging>

<name>Maven Executor</name>
<description />

<properties>
<version.toolbox>0.15.8</version.toolbox>
Expand Down
1 change: 1 addition & 0 deletions maven-executor/src/site/site.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ under the License.
<edit>${project.scm.url}</edit>

<body>
<menu ref="parent" />
<menu name="Overview">
<item name="Introduction" href="index.html"/>
<item name="Javadocs" href="apidocs/index.html"/>
Expand Down
32 changes: 28 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
~ 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/xsd/maven-4.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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
Expand All @@ -26,8 +26,8 @@
<version>47</version>
<relativePath />
</parent>
<groupId>org.apache.maven.executor</groupId>
<artifactId>executor</artifactId>
<groupId>org.apache.maven</groupId>
<artifactId>maven-executor</artifactId>
<version>1.0.1-SNAPSHOT</version>
<packaging>pom</packaging>

Expand All @@ -45,7 +45,7 @@
<scm>
<connection>scm:git:https://gitbox.apache.org/repos/asf/maven-executor.git</connection>
<developerConnection>scm:git:https://gitbox.apache.org/repos/asf/maven-executor.git</developerConnection>
<tag>HEAD</tag>
<tag>executor-1.x</tag>
<url>https://github.com/apache/maven-executor/tree/${project.scm.tag}</url>
</scm>
<issueManagement>
Expand Down Expand Up @@ -170,5 +170,29 @@
<!-- This is just an empty profile to not fail Maven 4 build that uses -P run-its -->
<id>run-its</id>
</profile>

<profile>
<id>reporting</id>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<failOnError>false</failOnError>
</configuration>
<reportSets>
<reportSet>
<id>aggregate</id>
<reports>
<report>aggregate</report>
</reports>
<inherited>false</inherited>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
</profile>
</profiles>
</project>
1 change: 1 addition & 0 deletions providers/docker-exe/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
<artifactId>docker-exe</artifactId>

<name>Docker CLI Executor</name>
<description>Maven Executor with Docker CLI</description>

<dependencies>
<dependency>
Expand Down
36 changes: 36 additions & 0 deletions providers/docker-exe/src/site/site.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<?xml version="1.0" encoding="UTF-8"?>

<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->

<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">

<edit>${project.scm.url}</edit>

<body>
<menu ref="parent" />
<menu name="Overview">
<item name="Introduction" href="index.html"/>
<item name="Javadocs" href="apidocs/index.html"/>
<item name="Source Xref" href="xref/index.html"/>
<!--item name="FAQ" href="faq.html"/-->
</menu>
</body>
</site>
6 changes: 4 additions & 2 deletions providers/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,18 @@
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.apache.maven.executor</groupId>
<artifactId>executor</artifactId>
<groupId>org.apache.maven</groupId>
<artifactId>maven-executor</artifactId>
<version>1.0.1-SNAPSHOT</version>
</parent>

<groupId>org.apache.maven.executor.providers</groupId>
<artifactId>providers</artifactId>

<packaging>pom</packaging>

<name>Extra Providers</name>
<description>Maven Executor Extra Providers</description>

<modules>
<module>docker-exe</module>
Expand Down
1 change: 1 addition & 0 deletions providers/testcontainers/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
<artifactId>testcontainers</artifactId>

<name>TestContainers Executor</name>
<description>Maven Executor with Testcontainer</description>

<dependencies>
<dependency>
Expand Down
36 changes: 36 additions & 0 deletions providers/testcontainers/src/site/site.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<?xml version="1.0" encoding="UTF-8"?>

<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->

<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">

<edit>${project.scm.url}</edit>

<body>
<menu ref="parent" />
<menu name="Overview">
<item name="Introduction" href="index.html"/>
<item name="Javadocs" href="apidocs/index.html"/>
<item name="Source Xref" href="xref/index.html"/>
<!--item name="FAQ" href="faq.html"/-->
</menu>
</body>
</site>
36 changes: 36 additions & 0 deletions src/site/site.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<?xml version="1.0" encoding="UTF-8"?>

<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->

<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">

<body>
<menu name="Overview">
<item name="Introduction" href="index.html"/>
<!-- According to https://issues.apache.org/jira/browse/MNGSITE-152 -->
<item name="License" href="http://www.apache.org/licenses/"/>
<item name="Download" href="download.html"/>
</menu>

<menu ref="modules" />
<menu ref="reports" />
</body>
</site>
126 changes: 126 additions & 0 deletions src/site/xdoc/download.xml.vm
Original file line number Diff line number Diff line change
@@ -0,0 +1,126 @@
<?xml version="1.0"?>

<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->

<document>
<properties>
<title>Download ${project.name} Source</title>
</properties>
<body>
<section name="Download ${project.name} ${project.version} Source">

<p>${project.name} ${project.version} is distributed in source format. Use a source archive if you intend to build
${project.name} yourself. Otherwise, simply use the ready-made binary artifacts from central repository.</p>

<p>You will be prompted for a mirror - if the file is not found on yours, please be patient, as it may take 24
hours to reach all mirrors.<p/>

<p>In order to guard against corrupted downloads/installations, it is highly recommended to
<a href="http://www.apache.org/dev/release-signing#verifying-signature">verify the signature</a>
of the release bundles against the public <a href="https://www.apache.org/dist/maven/KEYS">KEYS</a> used by the Apache Maven
developers.</p>

<p>${project.name} is distributed under the <a href="http://www.apache.org/licenses/">Apache License, version 2.0</a>.</p>

<p></p>We <b>strongly</b> encourage our users to configure a Maven repository mirror closer to their location, please read <a href="./guides/mini/guide-mirror-settings.html">How to Use Mirrors for Repositories</a>.</p>

<a name="mirror"/>
<subsection name="Mirror">

<p>
[if-any logo]
<a href="[link]">
<img align="right" src="[logo]" border="0"
alt="logo"/>
</a>
[end]
The currently selected mirror is
<b>[preferred]</b>.
If you encounter a problem with this mirror,
please select another mirror.
If all mirrors are failing, there are
<i>backup</i>
mirrors
(at the end of the mirrors list) that should be available.
</p>

<form action="[location]" method="get" id="SelectMirror">
Other mirrors:
<select name="Preferred">
[if-any http]
[for http]
<option value="[http]">[http]</option>
[end]
[end]
[if-any ftp]
[for ftp]
<option value="[ftp]">[ftp]</option>
[end]
[end]
[if-any backup]
[for backup]
<option value="[backup]">[backup] (backup)</option>
[end]
[end]
</select>
<input type="submit" value="Change"/>
</form>

<p>
You may also consult the
<a href="http://www.apache.org/mirrors/">complete list of
mirrors.</a>
</p>

</subsection>

<subsection name="${project.name} ${project.version}">

<p>This is the current stable version of ${project.name}.</p>

<table>
<thead>
<tr>
<th></th>
<th>Link</th>
<th>Checksum</th>
<th>Signature</th>
</tr>
</thead>
<tbody>
<tr>
<td>${project.name} ${project.version} (Source zip)</td>
<td><a href="[preferred]maven/executor/${project.artifactId}-${project.version}-source-release.zip">maven/executor/${project.artifactId}-${project.version}-source-release.zip</a></td>
<td><a href="https://www.apache.org/dist/maven/executor/${project.artifactId}-${project.version}-source-release.zip.sha512">maven/executor/${project.artifactId}-${project.version}-source-release.zip.sha512</a></td>
<td><a href="https://www.apache.org/dist/maven/executor/${project.artifactId}-${project.version}-source-release.zip.asc">maven/executor/${project.artifactId}-${project.version}-source-release.zip.asc</a></td>
</tr>
</tbody>
</table>
</subsection>

<subsection name="Previous Versions">

<p>Older non-recommended releases can be found on our <a href="http://archive.apache.org/dist/maven/executor/">archive site</a>.</p>

</subsection>
</section>
</body>
</document>

Loading
Loading