You can download marmotta-sparql-3.3.0.jar in this page.
Apache License
marmotta-sparql-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-sparql/pom.properties META-INF/maven/org.apache.marmotta/marmotta-sparql/pom.xml META-INF/services/org.openrdf.query.resultio.BooleanQueryResultWriterFactory META-INF/services/org.openrdf.query.resultio.TupleQueryResultWriterFactory build.info config-defaults.properties config-descriptions.properties kiwi-module.properties org.apache.marmotta.platform.sparql.api.sparql.QueryType.class org.apache.marmotta.platform.sparql.api.sparql.SparqlService.class org.apache.marmotta.platform.sparql.logging.SparqlLoggingModule.class org.apache.marmotta.platform.sparql.services.sparql.SparqlServiceImpl.class org.apache.marmotta.platform.sparql.services.sparql.SparqlWritersHelper.class org.apache.marmotta.platform.sparql.services.sparqlio.rdf.SPARQLGraphResultWriter.class org.apache.marmotta.platform.sparql.services.sparqlio.sparqlhtml.SPARQLBooleanHTMLFormat.class org.apache.marmotta.platform.sparql.services.sparqlio.sparqlhtml.SPARQLBooleanHTMLWriter.class org.apache.marmotta.platform.sparql.services.sparqlio.sparqlhtml.SPARQLBooleanHTMLWriterFactory.class org.apache.marmotta.platform.sparql.services.sparqlio.sparqlhtml.SPARQLHTMLSettings.class org.apache.marmotta.platform.sparql.services.sparqlio.sparqlhtml.SPARQLResultsHTMLFormat.class org.apache.marmotta.platform.sparql.services.sparqlio.sparqlhtml.SPARQLResultsHTMLWriter.class org.apache.marmotta.platform.sparql.services.sparqlio.sparqlhtml.SPARQLResultsHTMLWriterFactory.class org.apache.marmotta.platform.sparql.services.sparqlio.sparqlhtml.SPARQLResultsHTMLWriterXSL.class org.apache.marmotta.platform.sparql.webservices.SparqlWebService.class org/apache/marmotta/platform/sparql/services/sparqlio/sparqlhtml/style.xsl rebel.xml templates/sparql_select_end.ftl templates/sparql_select_result.ftl templates/sparql_select_start.ftl web/admin/about.html web/admin/configuration.html web/admin/configuration.js web/admin/img/sparql_small.png web/admin/link.png web/admin/sgvizler.html web/admin/squebi.html web/admin/style.css web/doc/rest/doclet.css web/doc/rest/index.html web/doc/rest/overview-index.html web/doc/rest/overview-summary.html web/doc/rest/sparql/index.html web/doc/rest/sparql/select/index.html web/doc/rest/sparql/update/index.html
marmotta-sparql-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-sparql</artifactId> <packaging>jar</packaging> <name>Apache Marmotta Platform: SPARQL Endpoint</name> <description> Provides support for SPARQL 1.1 Queries and Updates and offers different UIs for exploring SPARQL results. </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> <plugin> <groupId>org.apache.rat</groupId> <artifactId>apache-rat-plugin</artifactId> <configuration> <excludes> <!-- No License-Header in META-INF/services --> <exclude>src/main/resources/META-INF/services/*</exclude> </excludes> </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> <plugin> <groupId>org.apache.rat</groupId> <artifactId>apache-rat-plugin</artifactId> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.apache.marmotta</groupId> <artifactId>marmotta-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.webjars</groupId> <artifactId>jquery-ui</artifactId> </dependency> <dependency> <groupId>com.github.tkurz.webjars</groupId> <artifactId>squebi</artifactId> </dependency> <dependency> <groupId>org.webjars</groupId> <artifactId>codemirror</artifactId> </dependency> <dependency> <groupId>org.webjars</groupId> <artifactId>requirejs</artifactId> </dependency> <dependency> <groupId>org.webjars</groupId> <artifactId>sgvizler</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.marmotta</groupId> <artifactId>kiwi-sparql</artifactId> </dependency> <dependency> <groupId>org.openrdf.sesame</groupId> <artifactId>sesame-query</artifactId> </dependency> <dependency> <groupId>org.openrdf.sesame</groupId> <artifactId>sesame-queryparser-api</artifactId> </dependency> <dependency> <groupId>org.openrdf.sesame</groupId> <artifactId>sesame-queryparser-sparql</artifactId> </dependency> <dependency> <groupId>org.openrdf.sesame</groupId> <artifactId>sesame-queryalgebra-model</artifactId> </dependency> <dependency> <groupId>org.openrdf.sesame</groupId> <artifactId>sesame-queryalgebra-evaluation</artifactId> </dependency> <dependency> <groupId>org.openrdf.sesame</groupId> <artifactId>sesame-queryresultio-api</artifactId> </dependency> <dependency> <groupId>org.openrdf.sesame</groupId> <artifactId>sesame-queryresultio-sparqljson</artifactId> </dependency> <dependency> <groupId>org.openrdf.sesame</groupId> <artifactId>sesame-queryresultio-sparqlxml</artifactId> </dependency> <dependency> <groupId>org.openrdf.sesame</groupId> <artifactId>sesame-queryresultio-text</artifactId> </dependency> <!-- testing --> <dependency> <groupId>org.apache.marmotta</groupId> <artifactId>marmotta-core</artifactId> <version>${project.version}</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-server</artifactId> <version>${jetty.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-servlet</artifactId> <version>${jetty.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jboss.weld.se</groupId> <artifactId>weld-se-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>javax.el</groupId> <artifactId>javax.el-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.jayway.restassured</groupId> <artifactId>rest-assured</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.google.code.tempus-fugit</groupId> <artifactId>tempus-fugit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.googlecode.jatl</groupId> <artifactId>jatl</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.openrdf.sesame</groupId> <artifactId>sesame-sail-memory</artifactId> <scope>test</scope> </dependency> </dependencies> </project>
<dependency> <groupId>org.apache.marmotta</groupId> <artifactId>marmotta-sparql</artifactId> <version>3.3.0</version> </dependency>
If you think the following marmotta-sparql-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-sparql-3.3.0.jar file