forked from mojohaus/flatten-maven-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
93085a1
commit e28aee2
Showing
8 changed files
with
236 additions
and
186 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
34 changes: 17 additions & 17 deletions
34
src/main/java/org/codehaus/mojo/flatten/extendedinterpolation/ExtendedModelInterpolator.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 |
---|---|---|
@@ -1,17 +1,17 @@ | ||
package org.codehaus.mojo.flatten.extendedinterpolation; | ||
|
||
import java.io.File; | ||
|
||
import org.apache.maven.model.Model; | ||
import org.apache.maven.model.building.ModelBuildingRequest; | ||
import org.apache.maven.model.building.ModelProblemCollector; | ||
import org.apache.maven.model.interpolation.ModelInterpolator; | ||
|
||
public interface ExtendedModelInterpolator extends ModelInterpolator { | ||
Model interpolateModel( | ||
Model effectiveModel, | ||
Model model, | ||
File projectDir, | ||
ModelBuildingRequest config, | ||
ModelProblemCollector problems); | ||
} | ||
package org.codehaus.mojo.flatten.extendedinterpolation; | ||
|
||
import java.io.File; | ||
|
||
import org.apache.maven.model.Model; | ||
import org.apache.maven.model.building.ModelBuildingRequest; | ||
import org.apache.maven.model.building.ModelProblemCollector; | ||
import org.apache.maven.model.interpolation.ModelInterpolator; | ||
|
||
public interface ExtendedModelInterpolator extends ModelInterpolator { | ||
Model interpolateModel( | ||
Model effectiveModel, | ||
Model model, | ||
File projectDir, | ||
ModelBuildingRequest config, | ||
ModelProblemCollector problems); | ||
} |
14 changes: 7 additions & 7 deletions
14
...a/org/codehaus/mojo/flatten/extendedinterpolation/ExtendedModelInterpolatorException.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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
package org.codehaus.mojo.flatten.extendedinterpolation; | ||
|
||
public class ExtendedModelInterpolatorException extends RuntimeException { | ||
public ExtendedModelInterpolatorException(Throwable cause) { | ||
super(cause.getMessage(), cause); | ||
} | ||
} | ||
package org.codehaus.mojo.flatten.extendedinterpolation; | ||
|
||
public class ExtendedModelInterpolatorException extends RuntimeException { | ||
public ExtendedModelInterpolatorException(Throwable cause) { | ||
super(cause.getMessage(), cause); | ||
} | ||
} |
Oops, something went wrong.