You can download pax-web-spi-3.1.4.jar in this page.
Apache Open Source
pax-web-spi-3.1.4.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/org.ops4j.base/ops4j-base-lang/pom.properties META-INF/maven/org.ops4j.base/ops4j-base-lang/pom.xml META-INF/maven/org.ops4j.pax.swissbox/pax-swissbox-core/pom.properties META-INF/maven/org.ops4j.pax.swissbox/pax-swissbox-core/pom.xml META-INF/maven/org.ops4j.pax.swissbox/pax-swissbox-lifecycle/pom.properties META-INF/maven/org.ops4j.pax.swissbox/pax-swissbox-lifecycle/pom.xml META-INF/maven/org.ops4j.pax.swissbox/pax-swissbox-optional-jcl/pom.properties META-INF/maven/org.ops4j.pax.swissbox/pax-swissbox-optional-jcl/pom.xml META-INF/maven/org.ops4j.pax.web/pax-web-spi/pom.properties META-INF/maven/org.ops4j.pax.web/pax-web-spi/pom.xml OSGI-INF/bundle.info org.apache.commons.logging.Log.class org.apache.commons.logging.LogConfigurationException.class org.apache.commons.logging.LogFactory.class org.ops4j.lang.NullArgumentException.class org.ops4j.lang.Ops4jException.class org.ops4j.lang.PostConditionException.class org.ops4j.lang.PreConditionException.class org.ops4j.pax.swissbox.core.BundleClassLoader.class org.ops4j.pax.swissbox.core.BundleUtils.class org.ops4j.pax.swissbox.core.ContextClassLoaderUtils.class org.ops4j.pax.swissbox.lifecycle.AbstractLifecycle.class org.ops4j.pax.swissbox.lifecycle.Lifecycle.class org.ops4j.pax.web.service.spi.Configuration.class org.ops4j.pax.web.service.spi.LifeCycle.class org.ops4j.pax.web.service.spi.ServerController.class org.ops4j.pax.web.service.spi.ServerControllerFactory.class org.ops4j.pax.web.service.spi.ServerEvent.class org.ops4j.pax.web.service.spi.ServerListener.class org.ops4j.pax.web.service.spi.ServletEvent.class org.ops4j.pax.web.service.spi.ServletListener.class org.ops4j.pax.web.service.spi.WarManager.class org.ops4j.pax.web.service.spi.WebEvent.class org.ops4j.pax.web.service.spi.WebListener.class org.ops4j.pax.web.service.spi.WebTopic.class org.ops4j.pax.web.service.spi.model.ContainerInitializerModel.class org.ops4j.pax.web.service.spi.model.ContextModel.class org.ops4j.pax.web.service.spi.model.ErrorPageModel.class org.ops4j.pax.web.service.spi.model.EventListenerModel.class org.ops4j.pax.web.service.spi.model.FilterModel.class org.ops4j.pax.web.service.spi.model.Identity.class org.ops4j.pax.web.service.spi.model.LoginConfigModel.class org.ops4j.pax.web.service.spi.model.Model.class org.ops4j.pax.web.service.spi.model.ResourceModel.class org.ops4j.pax.web.service.spi.model.SecurityConstraintMappingModel.class org.ops4j.pax.web.service.spi.model.ServerModel.class org.ops4j.pax.web.service.spi.model.ServiceModel.class org.ops4j.pax.web.service.spi.model.ServletModel.class org.ops4j.pax.web.service.spi.util.ConversionUtil.class org.ops4j.pax.web.service.spi.util.Path.class org.ops4j.pax.web.service.spi.util.ResourceDelegatingBundleClassLoader.class
pax-web-spi-3.1.4.pom file content.
<?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"> <modelVersion>4.0.0</modelVersion> <parent> <relativePath>../pom.xml</relativePath> <groupId>org.ops4j.pax</groupId> <artifactId>web</artifactId> <version>3.1.4</version> </parent> <groupId>org.ops4j.pax.web</groupId> <artifactId>pax-web-spi</artifactId> <packaging>bundle</packaging> <name>OPS4J Pax Web - Service SPI</name> <description> Pax Web is a OSGi Http Service based on Jetty 6. Detailed information to be found at http://wiki.ops4j.org/confluence/x/AYAz. </description> <properties> <bundle.symbolicName>org.ops4j.pax.web.pax-web-spi</bundle.symbolicName> <bundle.namespace>org.ops4j.pax.web.service.spi</bundle.namespace> <sonar.jacoco.itReportPath>${project.basedir}/../target/jacoco-it.exec</sonar.jacoco.itReportPath> </properties> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <configuration> <instructions> <Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName> <Bundle-Version>${project.version}</Bundle-Version> <Import-Package> ${bundle.namespace}.*; version="${project.version}", org.ops4j.pax.web.service; version="${project.version}", javax.servlet.*; version="[2.3.0,3.1.0)", org.slf4j; version="[1.5,2.0)", org.osgi.framework; version="[1.0.0,2.0.0)", org.osgi.service.http; version="[1.0.0,2.0.0)", org.osgi.service.packageadmin; resolution:=optional, </Import-Package> <Export-Package>${bundle.namespace}.*; version="${project.version}"</Export-Package> <Embed-Dependency>*; scope=compile; type=!pom; inline=true</Embed-Dependency> <Embed-Transitive>true</Embed-Transitive> <_removeheaders> Include-Resource, Private-Package, Embed-Dependency, Embed-Transitive </_removeheaders> </instructions> </configuration> </plugin> </plugins> </build> <dependencies> <!-- Embeded dependencies (not transitive) --> <dependency> <groupId>org.ops4j.base</groupId> <artifactId>ops4j-base-lang</artifactId> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.ops4j.pax.swissbox</groupId> <artifactId>pax-swissbox-optional-jcl</artifactId> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.ops4j.pax.swissbox</groupId> <artifactId>pax-swissbox-core</artifactId> <scope>compile</scope> <optional>true</optional> </dependency> <!-- Provided dependencies (not transitive) --> <dependency> <groupId>org.ops4j.pax.web</groupId> <artifactId>pax-web-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.core</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.compendium</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>${servlet.spec.groupId}</groupId> <artifactId>${servlet.spec.artifactId}</artifactId> <scope>provided</scope> </dependency> <!-- Test dependencies (not transitive) --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>org.easymock</groupId> <artifactId>easymock</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <type>jar</type> <scope>provided</scope> </dependency> </dependencies> </project>
<dependency> <groupId>org.ops4j.pax.web</groupId> <artifactId>pax-web-spi</artifactId> <version>3.1.4</version> </dependency>
If you think the following pax-web-spi-3.1.4.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download pax-web-spi-3.1.4.jar file