Download marmotta-ldcache-common-3.3.0.jar file

Introduction

You can download marmotta-ldcache-common-3.3.0.jar in this page.

License

Apache License

Type List

marmotta-ldcache-common-3.3.0.jar file has the following types.

META-INF/DEPENDENCIES
META-INF/LICENSE
META-INF/MANIFEST.MF
META-INF/NOTICE
META-INF/beans.xml
META-INF/maven/org.apache.marmotta/marmotta-ldcache-common/pom.properties
META-INF/maven/org.apache.marmotta/marmotta-ldcache-common/pom.xml
build.info
config-defaults.properties
config-descriptions.properties
kiwi-module.properties
org.apache.marmotta.platform.ldcache.api.endpoint.LinkedDataEndpointService.class
org.apache.marmotta.platform.ldcache.api.ldcache.LDCacheSailProvider.class
org.apache.marmotta.platform.ldcache.logging.LDCacheLoggingModule.class
org.apache.marmotta.platform.ldcache.logging.LDClientLoggingModule.class
org.apache.marmotta.platform.ldcache.model.filter.LDCacheIgnoreFilter.class
org.apache.marmotta.platform.ldcache.model.filter.MarmottaNotCachedFilter.class
org.apache.marmotta.platform.ldcache.services.endpoint.LinkedDataEndpointServiceImpl.class
org.apache.marmotta.platform.ldcache.webservices.LinkedDataCachingWebService.class
rebel.xml
web/admin/about.html
web/admin/configuration.html
web/admin/img/ld-caching.png
web/admin/widgets/lmf_ldcache.js
web/doc/rest/cache/cached/index.html
web/doc/rest/cache/endpoint/index.html
web/doc/rest/cache/endpoint/list/index.html
web/doc/rest/cache/endpoint/{id}/disable/index.html
web/doc/rest/cache/endpoint/{id}/enable/index.html
web/doc/rest/cache/endpoint/{id}/index.html
web/doc/rest/cache/expire/index.html
web/doc/rest/cache/index.html
web/doc/rest/cache/info/index.html
web/doc/rest/cache/live/index.html
web/doc/rest/cache/provider/index.html
web/doc/rest/cache/provider/list/index.html
web/doc/rest/cache/refresh/index.html
web/doc/rest/doclet.css
web/doc/rest/index.html
web/doc/rest/overview-index.html
web/doc/rest/overview-summary.html

Pom

marmotta-ldcache-common-3.3.0.pom file content.

<?xml version="1.0" encoding="UTF-8"?>
<!--
  ~ Licensed to the Apache Software Foundation (ASF) under one or more
  ~ contributor license agreements.  See the NOTICE file distributed with
  ~ this work for additional information regarding copyright ownership.
  ~ The ASF licenses this file to You under the Apache License, Version 2.0
  ~ (the "License"); you may not use this file except in compliance with
  ~ the License.  You may obtain a copy of the License at
  ~
  ~      http://www.apache.org/licenses/LICENSE-2.0
  ~
  ~ Unless required by applicable law or agreed to in writing, software
  ~ distributed under the License is distributed on an "AS IS" BASIS,
  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  ~ See the License for the specific language governing permissions and
  ~ limitations under the License.
  -->

<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.apache.marmotta</groupId>
        <artifactId>marmotta-parent</artifactId>
        <version>3.3.0</version>
        <relativePath>../../../parent</relativePath>
    </parent>

    <artifactId>marmotta-ldcache-common</artifactId>
    <packaging>jar</packaging>

    <name>Apache Marmotta Platform: Linked Data Caching (Common)</name>
    <description>
        Provides common infrastructure for transparent Linked Data Caching in Marmotta. When a resource is queried using 
        e.g. LDPath or SPARQL and it represents an external resource (e.g. on DBPedia or GeoNames), the resource is 
        transparently fetched on demand and cached locally. This module contains the backend-independent services.
    </description>

    <build>
        <pluginManagement>
            <plugins>
                <plugin> <!-- generate JRebel Configuration -->
                    <groupId>org.zeroturnaround</groupId>
                    <artifactId>jrebel-maven-plugin</artifactId>
                    <version>1.1.3</version>
                    <executions>
                        <execution>
                            <id>generate-rebel-xml</id>
                            <phase>process-resources</phase>
                            <goals>
                                <goal>generate</goal>
                            </goals>
                        </execution>
                    </executions>
                    <configuration>
                        <relativePath>../../../</relativePath>
                        <rootPath>$${rebel.root}</rootPath>
                        <classpath>
                            <resources>
                                <resource><!-- default resource --></resource>
                                <resource><directory>src/main/resources</directory></resource>
                            </resources>
                        </classpath>
                    </configuration>
                </plugin>
            </plugins>
        </pluginManagement>
        <plugins>
            <plugin>
                <groupId>org.apache.marmotta</groupId>
                <artifactId>buildinfo-maven-plugin</artifactId>
                <configuration>
                    <systemProperties>
                        <systemProperty>user.name</systemProperty>
                        <systemProperty>user.timezone</systemProperty>
                        <systemProperty>java.vm.vendor</systemProperty>
                        <systemProperty>java.vm.version</systemProperty>
                        <systemProperty>java.vm.name</systemProperty>
                        <systemProperty>java.runtime.version</systemProperty>
                        <systemProperty>os.name</systemProperty>
                        <systemProperty>os.version</systemProperty>
                        <systemProperty>os.arch</systemProperty>
                    </systemProperties>
                </configuration>
                <executions>
                    <execution>
                        <phase>process-resources</phase>
                        <goals>
                            <goal>extract</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <executions>
                    <!--
                    <execution>
                        <id>aggregate</id>
                        <goals>
                            <goal>aggregate</goal>
                        </goals>
                        <phase>site</phase>
                    </execution>
                    -->
                    <execution>
                        <!-- configure how the REST API documentation will be produced -->
                        <id>restapi</id>
                        <configuration>
                            <doclet>com.lunatech.doclets.jax.jaxrs.JAXRSDoclet</doclet>

                            <name>REST API</name>
                            <description>REST API for Marmotta Webservices</description>

                            <outputDirectory>${project.build.outputDirectory}/doc</outputDirectory>
                            <reportOutputDirectory>${project.build.outputDirectory}/web/doc</reportOutputDirectory>
                            <destDir>rest</destDir>

                            <docletArtifact>
                                <groupId>com.lunatech.jax-doclets</groupId>
                                <artifactId>doclets</artifactId>
                                <version>${jax.doclets.version}</version>
                            </docletArtifact>
                            <additionalparam>
                                -jaxrscontext {BASE}
                                -charset UTF-8
                            </additionalparam>

                            <!--
                                                        <stylesheetfile>${project.parent.basedir}/config/doc/doclet.css</stylesheetfile>
                            -->

                            <header><![CDATA[<!--###BEGIN_CONTENT###--><div class="javadoc">]]></header>
                            <footer><![CDATA[</div><!--###END_CONTENT###-->]]></footer>
                            <encoding>UTF-8</encoding>
                            <detectOfflineLinks>false</detectOfflineLinks>

                            <!-- For the project-reports page -->
                        </configuration>
                        <goals>
                            <goal>javadoc</goal>
                        </goals>
                        <phase>generate-resources</phase>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

    <dependencies>
        <dependency>
            <groupId>org.apache.marmotta</groupId>
            <artifactId>marmotta-core</artifactId>
            <version>${project.parent.version}</version>
        </dependency>
        <dependency>
            <groupId>org.apache.marmotta</groupId>
            <artifactId>ldclient-api</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.marmotta</groupId>
            <artifactId>ldclient-core</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.marmotta</groupId>
            <artifactId>ldclient-provider-rdf</artifactId>
        </dependency>
        <!--
        <dependency>
            <groupId>org.apache.marmotta</groupId>
            <artifactId>ldclient-provider-xml</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.marmotta</groupId>
            <artifactId>ldclient-provider-html</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.marmotta</groupId>
            <artifactId>ldclient-provider-ldap</artifactId>
        </dependency>
        -->
        <dependency>
            <groupId>org.apache.marmotta</groupId>
            <artifactId>ldcache-api</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.marmotta</groupId>
            <artifactId>ldcache-core</artifactId>
        </dependency>


    </dependencies>
    
</project>

POM Entry

<dependency>
   <groupId>org.apache.marmotta</groupId>
   <artifactId>marmotta-ldcache-common</artifactId>
   <version>3.3.0</version>
</dependency>

Download

If you think the following marmotta-ldcache-common-3.3.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download marmotta-ldcache-common-3.3.0.jar file




PreviousNext

Related