Skip to content

Commit

Permalink
Merge pull request #48 from apache/dependabot/maven/org.apache.maven.…
Browse files Browse the repository at this point in the history
…plugins-maven-plugin-plugin-3.10.2

Bump org.apache.maven.plugins:maven-plugin-plugin from 2.9 to 3.10.2
  • Loading branch information
reta authored Dec 8, 2023
2 parents 1a83b85 + 3375997 commit 4723fe1
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>3.6.0</version>
<version>3.10.2</version>
</plugin>
</plugins>
</pluginManagement>
Expand Down
2 changes: 1 addition & 1 deletion xml2fastinfoset-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>2.9</version>
<version>3.10.2</version>
</plugin>
</plugins>
</pluginManagement>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ public class XML2FastInfosetCompilerMojo extends AbstractMojo {
private static final String[] DEFAULT_INCLUDES = {"**/*.xml"};

/**
* @parameter expression="${project}"
* The Maven project containing the XML files to be compiled.
*
* @parameter default-value="${project}"
* @required
* @readonly
*/
Expand All @@ -68,7 +70,7 @@ public class XML2FastInfosetCompilerMojo extends AbstractMojo {
/**
* The resource directories containing the XML files to be compiled.
*
* @parameter expression="${project.resources}"
* @parameter default-value="${project.resources}"
* @required
* @readonly
*/
Expand All @@ -91,14 +93,17 @@ public class XML2FastInfosetCompilerMojo extends AbstractMojo {
/**
* The directory for the results.
*
* @parameter expression="${project.build.outputDirectory}"
* @parameter default-value="${project.build.outputDirectory}"
* @required
*/
private File outputDirectory;

/** @component */
/**
* Build context
*
* @component
**/
protected BuildContext buildContext;


@SuppressWarnings("unchecked")
public void execute() throws MojoExecutionException {
Expand Down

0 comments on commit 4723fe1

Please sign in to comment.