You can download fcrepo-http-api-4.0.0.jar in this page.
Open Source
fcrepo-http-api-4.0.0.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/org.fcrepo/fcrepo-http-api/pom.properties META-INF/maven/org.fcrepo/fcrepo-http-api/pom.xml META-INF/spring/rest.xml logback.xml org.fcrepo.http.api.FedoraBatch.class org.fcrepo.http.api.FedoraContent.class org.fcrepo.http.api.FedoraExport.class org.fcrepo.http.api.FedoraFieldSearch.class org.fcrepo.http.api.FedoraFixity.class org.fcrepo.http.api.FedoraIdentifiers.class org.fcrepo.http.api.FedoraImport.class org.fcrepo.http.api.FedoraNodes.class org.fcrepo.http.api.FedoraSitemap.class org.fcrepo.http.api.FedoraTransactions.class org.fcrepo.http.api.FedoraVersions.class org.fcrepo.http.api.repository.FedoraRepositoriesProperties.class org.fcrepo.http.api.repository.FedoraRepositoryBackup.class org.fcrepo.http.api.repository.FedoraRepositoryExport.class org.fcrepo.http.api.repository.FedoraRepositoryIdentifiers.class org.fcrepo.http.api.repository.FedoraRepositoryImport.class org.fcrepo.http.api.repository.FedoraRepositoryNamespaces.class org.fcrepo.http.api.repository.FedoraRepositoryNodeTypes.class org.fcrepo.http.api.repository.FedoraRepositoryRestore.class org.fcrepo.http.api.repository.FedoraRepositoryTransactions.class org.fcrepo.http.api.repository.FedoraRepositoryWorkspaces.class org.fcrepo.http.api.responses.HtmlProvider.class org.fcrepo.http.api.responses.StreamingHtmlProvider.class org.fcrepo.http.api.url.HttpApiResources.class velocity.properties views/common-breadcrumb.vsl views/common-head.vsl views/common-header.vsl views/common-metadata.vsl views/common-node-actions.vsl views/common-node-header.vsl views/common.css views/common.js views/common.vsl views/fcr-versions.vsl views/jcr-namespaces.vsl views/jcr-nodetypes.vsl views/jcr-workspaces.vsl views/mode-root.vsl views/node.vsl views/nt-file.vsl views/nt-resource.vsl views/search-results.vsl views/sitemap-html.xsl
fcrepo-http-api-4.0.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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.fcrepo</groupId> <artifactId>fcrepo</artifactId> <version>4.0.0-alpha-3</version> </parent> <artifactId>fcrepo-http-api</artifactId> <name>${project.artifactId}</name> <description>The Fedora Commons repository HTTP API: Provides a RESTful HTTP API to interact with the Fedora Commons repository.</description> <packaging>bundle</packaging> <dependencies> <dependency> <groupId>org.modeshape</groupId> <artifactId>modeshape-web-jcr</artifactId> <version>${modeshape.version}</version> </dependency> <dependency> <groupId>org.fcrepo</groupId> <artifactId>fcrepo-http-commons</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.fcrepo</groupId> <artifactId>fcrepo-kernel</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.fcrepo</groupId> <artifactId>fcrepo-serialization</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.sun.jersey</groupId> <artifactId>jersey-core</artifactId> </dependency> <dependency> <groupId>com.sun.jersey</groupId> <artifactId>jersey-json</artifactId> </dependency> <dependency> <groupId>com.sun.jersey.contribs</groupId> <artifactId>jersey-multipart</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> </dependency> <!-- test gear --> <dependency> <groupId>org.fcrepo</groupId> <artifactId>fcrepo-kernel</artifactId> <version>${project.version}</version> <classifier>tests</classifier> <scope>test</scope> </dependency> <dependency> <groupId>org.fcrepo</groupId> <artifactId>fcrepo-http-commons</artifactId> <version>${project.version}</version> <scope>test</scope> <type>test-jar</type> </dependency> <dependency> <groupId>org.glassfish.grizzly</groupId> <artifactId>grizzly-http-server</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.glassfish.grizzly</groupId> <artifactId>grizzly-http-servlet</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.sun.jersey</groupId> <artifactId>jersey-grizzly2</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.sun.jersey</groupId> <artifactId>jersey-grizzly2-servlet</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>javax.mail</groupId> <artifactId>mail</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.sun.jersey.contribs</groupId> <artifactId>jersey-spring</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient-cache</artifactId> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpmime</artifactId> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>nu.validator.htmlparser</groupId> <artifactId>htmlparser</artifactId> <version>1.4</version> <scope>test</scope> </dependency> <dependency> <groupId>net.sourceforge.htmlunit</groupId> <artifactId>htmlunit</artifactId> <scope>test</scope> <version>2.13</version> <exclusions> <exclusion> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> </exclusion> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>net.sourceforge.htmlunit</groupId> <artifactId>htmlunit-core-js</artifactId> <scope>test</scope> <version>2.13</version> </dependency> <!-- This dependency is for compile-time: it keeps this module independent of any given choice of JAX-RS implementation. It must be _after_ the test gear. Otherwise it will get loaded during test phase, but because this is just an API, the tests will not be able to execute. --> <dependency> <groupId>javax</groupId> <artifactId>javaee-api</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> </plugin> <plugin> <artifactId>maven-failsafe-plugin</artifactId> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <goals> <!-- Package tests in a JAR for reuse. See: https://maven.apache.org/guides/mini/guide-attached-tests.html --> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> </plugin> </plugins> </build> </project>
<dependency> <groupId>org.fcrepo</groupId> <artifactId>fcrepo-http-api</artifactId> <version>4.0.0</version> </dependency>
If you think the following fcrepo-http-api-4.0.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download fcrepo-http-api-4.0.0.jar file