pom-manipulation-ext
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.commonjava.maven.ext</groupId> <artifactId>pom-manipulation-ext</artifactId> <version>4.21</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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/maven-v4_0_0.xsd"> <parent> <artifactId>pom-manipulation-parent</artifactId> <groupId>org.commonjava.maven.ext</groupId> <version>4.21</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>pom-manipulation-ext</artifactId> <name>POM Manipulation for Maven Extension</name> <build> <plugins> <plugin> <groupId>org.eclipse.sisu</groupId> <artifactId>sisu-maven-plugin</artifactId> <executions> <execution> <id>index-dependencies</id> <phase>prepare-package</phase> <goals> <goal>index</goal> </goals> <configuration> <includeGroupIds>org.commonjava</includeGroupIds> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <artifactSet> <includes> <include>org.commonjava.*:*</include> <include>com.fasterxml.jackson.core:*</include> <include>com.jayway.jsonpath:json-path</include> <include>com.konghq:unirest-java</include> <include>com.konghq:unirest-objectmapper-jackson</include> <include>com.google.code.gson:gson</include> <include>com.redhat.resilience.otel:opentelemetry-ext-cli-java</include> <include>commons-codec:commons-codec</include> <include>commons-io:commons-io</include> <include>commons-jxpath:commons-jxpath</include> <include>commons-lang:commons-lang</include> <include>commons-logging:commons-logging</include> <include>io.opentelemetry:*</include> <include>net.minidev:*</include> <include>org.apache.httpcomponents:*</include> <include>org.apache.ivy:*</include> <include>org.apache.maven.release:*</include> <include>org.codehaus.groovy:groovy-json</include> <include>org.codehaus.groovy:groovy-xml</include> <include>org.codehaus.groovy:groovy</include> <include>org.jboss.da:reports-model</include> <include>org.jdom:jdom2</include> <include>org.ow2.asm:asm</include> <include>org.yaml:snakeyaml</include> </includes> <excludes> <exclude>org.codehaus.plexus:plexus-utils</exclude> </excludes> </artifactSet> <filters> <filter> <artifact>org.apache.maven.release:*</artifact> <excludes> <exclude>META-INF/plexus/components.xml</exclude> </excludes> </filter> </filters> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> <version>3.4.2</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> <version>1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-artifact</artifactId> <version>3.6.3</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>plexus-utils</artifactId> <groupId>org.codehaus.plexus</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-compat</artifactId> <version>3.6.3</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>plexus-utils</artifactId> <groupId>org.codehaus.plexus</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>3.6.3</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>plexus-utils</artifactId> <groupId>org.codehaus.plexus</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-model</artifactId> <version>3.6.3</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>plexus-utils</artifactId> <groupId>org.codehaus.plexus</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-model-builder</artifactId> <version>3.6.3</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>plexus-utils</artifactId> <groupId>org.codehaus.plexus</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-settings</artifactId> <version>3.6.3</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>plexus-utils</artifactId> <groupId>org.codehaus.plexus</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.eclipse.aether</groupId> <artifactId>aether-api</artifactId> <version>1.1.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.eclipse.sisu</groupId> <artifactId>org.eclipse.sisu.plexus</artifactId> <version>0.3.4</version> <scope>compile</scope> <exclusions> <exclusion> <artifactId>plexus-utils</artifactId> <groupId>org.codehaus.plexus</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>2.0.9</version> <scope>compile</scope> </dependency> </dependencies> </project>