You can download pax-exam-link-assembly-3.5.0.jar in this page.
Apache Open Source
pax-exam-link-assembly-3.5.0.jar file has the following types.
META-INF.links.ch.qos.logback.classic.link META-INF/DEPENDENCIES.txt META-INF/LICENSE.txt META-INF/MANIFEST.MF META-INF/NOTICE.txt META-INF/links/ch.qos.logback.core.link META-INF/links/org.apache.geronimo.specs.atinject.link META-INF/links/org.ops4j.base.link META-INF/links/org.ops4j.pax.exam.inject.link META-INF/links/org.ops4j.pax.exam.invoker.junit.link META-INF/links/org.ops4j.pax.exam.link META-INF/links/org.ops4j.pax.exam.rbc.link META-INF/links/org.ops4j.pax.extender.service.link META-INF/links/org.ops4j.pax.logging.api.link META-INF/links/org.ops4j.pax.swissbox.core.link META-INF/links/org.ops4j.pax.swissbox.extender.link META-INF/links/org.ops4j.pax.swissbox.framework.link META-INF/links/org.ops4j.pax.swissbox.lifecycle.link META-INF/links/org.ops4j.pax.swissbox.tracker.link META-INF/links/org.ops4j.pax.tipi.hamcrest.core.link META-INF/links/org.ops4j.pax.tipi.junit.link META-INF/links/org.osgi.compendium.link META-INF/links/org.slf4j.api.link META-INF/maven/org.ops4j.pax.exam/pax-exam-link-assembly/pom.properties META-INF/maven/org.ops4j.pax.exam/pax-exam-link-assembly/pom.xml geronimo-atinject_1.0_spec.jar logback-classic.jar logback-core.jar ops4j-base.jar org.ops4j.pax.tipi.hamcrest.core.jar org.ops4j.pax.tipi.junit.jar org.osgi.compendium.jar pax-exam-container-rbc.jar pax-exam-extender-service.jar pax-exam-inject.jar pax-exam-invoker-junit.jar pax-exam.jar pax-logging-api.jar pax-swissbox-core.jar pax-swissbox-extender.jar pax-swissbox-framework.jar pax-swissbox-lifecycle.jar pax-swissbox-tracker.jar slf4j-api.jar
pax-exam-link-assembly-3.5.0.pom file content.
<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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.ops4j.pax</groupId> <artifactId>exam</artifactId> <version>3.5.0</version> <relativePath>../../pom</relativePath> </parent> <groupId>org.ops4j.pax.exam</groupId> <artifactId>pax-exam-link-assembly</artifactId> <name>OPS4J Pax Exam Links for Assembly</name> <description> Link Files to its own content. </description> <build> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> <plugins> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>embed-jar</id> <phase>generate-resources</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <includeScope>provided</includeScope> <excludeTransitive>true</excludeTransitive> <stripVersion>true</stripVersion> <outputDirectory>${project.basedir}/target/classes/</outputDirectory> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.ops4j.pax.exam</groupId> <artifactId>pax-exam</artifactId> <version>${project.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.ops4j.pax.exam</groupId> <artifactId>pax-exam-extender-service</artifactId> <version>${project.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.ops4j.pax.logging</groupId> <artifactId>pax-logging-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.compendium</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.ops4j.pax.exam</groupId> <artifactId>pax-exam-container-rbc</artifactId> <version>${project.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.ops4j.pax.exam</groupId> <artifactId>pax-exam-inject</artifactId> <version>${project.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.ops4j.pax.exam</groupId> <artifactId>pax-exam-invoker-junit</artifactId> <version>${project.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.ops4j.pax.swissbox</groupId> <artifactId>pax-swissbox-core</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.ops4j.pax.swissbox</groupId> <artifactId>pax-swissbox-extender</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.ops4j.pax.swissbox</groupId> <artifactId>pax-swissbox-framework</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.ops4j.pax.swissbox</groupId> <artifactId>pax-swissbox-lifecycle</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.ops4j.pax.swissbox</groupId> <artifactId>pax-swissbox-tracker</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.ops4j.base</groupId> <artifactId>ops4j-base</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.geronimo.specs</groupId> <artifactId>geronimo-atinject_1.0_spec</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-core</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.ops4j.pax.tipi</groupId> <artifactId>org.ops4j.pax.tipi.hamcrest.core</artifactId> <version>1.3.0.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.ops4j.pax.tipi</groupId> <artifactId>org.ops4j.pax.tipi.junit</artifactId> <version>4.11.0.1</version> <scope>provided</scope> </dependency> </dependencies> </project>
<dependency> <groupId>org.ops4j.pax.exam</groupId> <artifactId>pax-exam-link-assembly</artifactId> <version>3.5.0</version> </dependency>
If you think the following pax-exam-link-assembly-3.5.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download pax-exam-link-assembly-3.5.0.jar file