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: 0 additions & 2 deletions maven-plugin-testing-harness/pom.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?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
Expand All @@ -18,7 +17,6 @@ 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>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
package org.apache.maven.api.plugin.testing;

/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
Expand All @@ -18,40 +16,36 @@
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.maven.api.plugin.testing;

/**
* ConfigurationException
*
* @author jesse
*/
public class ConfigurationException
extends Exception
{
public class ConfigurationException extends Exception {
/** serialVersionUID */
static final long serialVersionUID = -6180939638742159065L;

/**
* @param message The detailed message.
*/
public ConfigurationException( String message )
{
super( message );
public ConfigurationException(String message) {
super(message);
}

/**
* @param cause The detailed cause.
*/
public ConfigurationException( Throwable cause )
{
super( cause );
public ConfigurationException(Throwable cause) {
super(cause);
}

/**
* @param message The detailed message.
* @param cause The detailed cause.
*/
public ConfigurationException( String message, Throwable cause )
{
super( message, cause );
public ConfigurationException(String message, Throwable cause) {
super(message, cause);
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
package org.apache.maven.api.plugin.testing;

/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
Expand All @@ -9,7 +7,7 @@
* "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
* 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
Expand All @@ -18,21 +16,20 @@
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.maven.api.plugin.testing;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

/**
*
*/
@Retention( RetentionPolicy.RUNTIME )
public @interface InjectMojo
{
@Retention(RetentionPolicy.RUNTIME)
public @interface InjectMojo {

String goal();

String pom();

boolean empty() default false;

}
Loading