inline:inline
Full name:
org.basepom.maven:inline-maven-plugin:1.5.1-SNAPSHOT:inline
Description:
Inlines one or more dependencies of the project, relocated the classes and writes a new artifact.
Attributes:
- Requires a Maven project to be executed.
- Requires dependency resolution of artifacts in scope:
compile+runtime
. - The goal is thread-safe and supports parallel builds.
- Binds by default to the lifecycle phase:
package
.
Required Parameters
Name | Type | Since | Description |
---|---|---|---|
<prefix> |
String |
- |
Defines the package prefix for all relocated classes. This prefix must be a valid package name. All relocated classes are put under this prefix. User Property: inline.prefix |
Optional Parameters
Name | Type | Since | Description |
---|---|---|---|
<additionalProcessors> |
List<String> |
- |
Adds external jar processors. These must be on the dependency path for the plugin. See the "Additional Processors" documentation. |
<excludes> |
List<ArtifactIdentifier> |
- |
Exclude dependencies from inclusion. A dependency is given as groupId:artifactId. Any transitive dependency that has been pulled in can be excluded here. The wildcard character '*' is supported for group id and artifact id.
Includes and excludes operate on the list of potential dependencies to inline. They can not be used to add additional dependencies that are not listed in the <inlineDependency> elements. |
<failOnDuplicate> |
boolean |
- |
Fail if any duplicate exists after processing the contents. Default: true User Property: inline.failOnDuplicate |
<failOnNoMatch> |
boolean |
- |
Fail if an inline dependency is defined but the corresponding dependency is not actually found. Default: true User Property: inline.failOnNoMatch |
<hideClasses> |
boolean |
- |
Hide inlined classes from IDE autocompletion. Default: true User Property: inline.hide-classes |
<includes> |
List<ArtifactIdentifier> |
- |
Include dependencies. A dependency is given as groupId:artifactId. The wildcard character '*' is supported for group id and artifact id.
Includes and excludes operate on the list of potential dependencies to inline. They can not be used to add additional dependencies that are not listed in the <inlineDependency> elements. |
<inlineDependencies> |
List<InlineDependency> |
- |
Direct dependencies to inline. Each dependency here must be listed in the project POM. Any transitive dependency is added to the final jar, unless it is in RUNTIME scope. RUNTIME dependencies become a runtime dependency of the resulting final jar unless they are listed here. In that case, they are inlined in the final jar as well. |
<inlinedArtifactAttached> |
boolean |
- |
If true, attach the inlined artifact, if false replace the original artifact. Default: false User Property: inline.attachArtifact |
<inlinedClassifierName> |
String |
- |
The name of the classifier used in case the inlined artifact is attached. Default: inlined |
<outputDirectory> |
File |
- |
The destination directory for the inlined artifact. Default: ${project.build.directory} |
<outputJarFile> |
File |
- |
The path to the output file for the inlined artifact. When this parameter is set, the created archive will neither replace the project's main artifact nor will it be attached. Hence, this parameter causes the parameters inlinedArtifactAttached , inlinedClassifierName to be ignored when used. |
<outputPomFile> |
File |
- |
The path to the output file for the new POM file. When this parameter is set, the created pom file will not replace the project's pom file. |
<outputTimestamp> |
String |
- |
Timestamp for reproducible output archive entries, either formatted as ISO 8601 yyyy-MM-dd'T'HH:mm:ssXXX or as an int representing seconds since the epoch (like SOURCE_DATE_EPOCH).Default: ${project.build.outputTimestamp} |
<pomFile> |
File |
- |
The POM file to use. Default: ${project.file} User Property: inline.pomFile |
<quiet> |
boolean |
- |
Silence all non-output and non-error messages. Default: false User Property: inline.quiet |
<replacePomFile> |
boolean |
- |
If true, replace the POM file with a new version that has all inlined dependencies removed. It is possible to write a POM file that works to build the jar with inlined dependencies and then use the same POM file for the resulting artifact (by having all dependencies marked as provided and ensure that those dependencies do not have additional, transitive dependencies. This tends to be error prone and it is recommended to have the plugin rewrite the POM file. Default: true User Property: inline.replacePomFile |
<skip> |
boolean |
- |
Skip the execution. Default: false User Property: inline.skip |
Parameter Details
<additionalProcessors>
- Type:
java.util.List<java.lang.String>
- Required:
No
<excludes>
Includes and excludes operate on the list of potential dependencies to inline. They can not be used to add additional dependencies that are not listed in the <inlineDependency> elements.
- Type:
java.util.List<org.basepom.inline.mojo.ArtifactIdentifier>
- Required:
No
<failOnDuplicate>
- Type:
boolean
- Required:
No
- User Property:
inline.failOnDuplicate
- Default:
true
<failOnNoMatch>
- Type:
boolean
- Required:
No
- User Property:
inline.failOnNoMatch
- Default:
true
<hideClasses>
- Type:
boolean
- Required:
No
- User Property:
inline.hide-classes
- Default:
true
<includes>
Includes and excludes operate on the list of potential dependencies to inline. They can not be used to add additional dependencies that are not listed in the <inlineDependency> elements.
- Type:
java.util.List<org.basepom.inline.mojo.ArtifactIdentifier>
- Required:
No
<inlineDependencies>
RUNTIME
scope. RUNTIME
dependencies become a runtime dependency of the resulting final jar unless they are listed here. In that case, they are inlined in the final jar as well.- Type:
java.util.List<org.basepom.inline.mojo.InlineDependency>
- Required:
No
<inlinedArtifactAttached>
- Type:
boolean
- Required:
No
- User Property:
inline.attachArtifact
- Default:
false
<inlinedClassifierName>
- Type:
java.lang.String
- Required:
No
- Default:
inlined
<outputDirectory>
- Type:
java.io.File
- Required:
No
- Default:
${project.build.directory}
<outputJarFile>
inlinedArtifactAttached
, inlinedClassifierName
to be ignored when used.- Type:
java.io.File
- Required:
No
<outputPomFile>
- Type:
java.io.File
- Required:
No
<outputTimestamp>
yyyy-MM-dd'T'HH:mm:ssXXX
or as an int representing seconds since the epoch (like SOURCE_DATE_EPOCH).- Type:
java.lang.String
- Required:
No
- Default:
${project.build.outputTimestamp}
<pomFile>
- Type:
java.io.File
- Required:
No
- User Property:
inline.pomFile
- Default:
${project.file}
<prefix>
- Type:
java.lang.String
- Required:
Yes
- User Property:
inline.prefix
<quiet>
- Type:
boolean
- Required:
No
- User Property:
inline.quiet
- Default:
false
<replacePomFile>
- Type:
boolean
- Required:
No
- User Property:
inline.replacePomFile
- Default:
true
<skip>
- Type:
boolean
- Required:
No
- User Property:
inline.skip
- Default:
false