-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MPLUGIN-441] Support mojos using the new maven v4 api
- Loading branch information
Showing
42 changed files
with
1,092 additions
and
153 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# 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. | ||
|
||
invoker.goals.1 = clean install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
<?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. | ||
--> | ||
|
||
<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"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>org.apache.maven.its</groupId> | ||
<artifactId>v4api</artifactId> | ||
<version>1.0-SNAPSHOT</version> | ||
<packaging>maven-plugin</packaging> | ||
|
||
<name>Maven Integration Test :: v4api</name> | ||
<description> | ||
Test plugin-plugin, which tests maven-plugin-tools-api and | ||
maven-plugin-tools-java. This will generate a plugin descriptor from | ||
java-based mojo sources, install the plugin, and then use it. | ||
</description> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<!-- pom properties values not taken into account since invoker defines properties --> | ||
<!-- that override what's defined in pom --> | ||
<maven.compiler.source>1.8</maven.compiler.source> | ||
<maven.compiler.target>1.8</maven.compiler.target> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.apache.maven</groupId> | ||
<artifactId>maven-api-core</artifactId> | ||
<version>@maven4Version@</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.1</version> | ||
<configuration> | ||
<source>1.8</source><!-- avoid ${maven.compiler.source} since value is not as expected --> | ||
<target>1.8</target><!-- avoid ${maven.compiler.target} since value is not as expected --> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-plugin-plugin</artifactId> | ||
<version>@project.version@</version> | ||
<configuration> | ||
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<id>mojo-descriptor</id> | ||
<goals> | ||
<goal>descriptor</goal> | ||
</goals> | ||
</execution> | ||
<execution> | ||
<id>help-goal</id> | ||
<goals> | ||
<goal>helpmojo</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
91 changes: 91 additions & 0 deletions
91
maven-plugin-plugin/src/it/v4api/src/main/java/org/apache/maven/its/v4api/FirstMojo.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
package org.apache.maven.its.v4api; | ||
|
||
/* | ||
* 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. | ||
*/ | ||
|
||
import org.apache.maven.api.MojoExecution; | ||
import org.apache.maven.api.ResolutionScope; | ||
import org.apache.maven.api.Session; | ||
import org.apache.maven.api.plugin.Log; | ||
import org.apache.maven.api.plugin.MojoException; | ||
import org.apache.maven.api.plugin.annotations.Component; | ||
import org.apache.maven.api.plugin.annotations.Execute; | ||
import org.apache.maven.api.plugin.annotations.LifecyclePhase; | ||
import org.apache.maven.api.plugin.annotations.Mojo; | ||
import org.apache.maven.api.plugin.annotations.Parameter; | ||
import org.apache.maven.api.Project; | ||
import org.apache.maven.api.services.ArtifactInstaller; | ||
import org.apache.maven.api.settings.Settings; | ||
|
||
import java.nio.file.Path; | ||
|
||
/** | ||
* Touches a test file. | ||
* | ||
* @since 1.2 | ||
*/ | ||
@Mojo( name = "first", requiresDependencyResolution = ResolutionScope.TEST, | ||
defaultPhase = LifecyclePhase.INTEGRATION_TEST ) | ||
@Execute( phase = LifecyclePhase.GENERATE_SOURCES, lifecycle = "cobertura" ) | ||
public class FirstMojo | ||
implements org.apache.maven.api.plugin.Mojo | ||
{ | ||
|
||
/** | ||
* Project directory. | ||
*/ | ||
@Parameter( defaultValue = "${basedir}", readonly = true ) | ||
private Path basedir; | ||
|
||
@Parameter( property = "first.touchFile", defaultValue = "${project.build.directory}/touch.txt", | ||
required = true ) | ||
private Path touchFile; | ||
|
||
/** | ||
* @since 0.1 | ||
* @deprecated As of 0.2 | ||
*/ | ||
@Deprecated | ||
@Parameter( name = "namedParam", alias = "alias" ) | ||
private String aliasedParam; | ||
|
||
@Component | ||
private Session session; | ||
|
||
@Component | ||
private Project project; | ||
|
||
@Component | ||
private MojoExecution mojo; | ||
|
||
@Component | ||
private Settings settings; | ||
|
||
@Component | ||
private Log log; | ||
|
||
@Component( role = ArtifactInstaller.class, hint = "test" ) | ||
private Object custom; | ||
|
||
public void execute() | ||
throws MojoException | ||
{ | ||
} | ||
|
||
} |
Oops, something went wrong.