sparqlify-platform
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.aksw.sparqlify</groupId> <artifactId>sparqlify-platform</artifactId> <version>0.9.8</version> </dependency>
<?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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <artifactId>sparqlify-platform</artifactId> <!-- <packaging>uberwar</packaging> --> <packaging>war</packaging> <name>Sparqlify SPARQL->SQL rewriter - Platform</name> <url>http://aksw.org/Projects/Sparqlify</url> <parent> <groupId>org.aksw.sparqlify</groupId> <artifactId>sparqlify-parent</artifactId> <version>0.9.8</version> </parent> <build> <plugins> <!-- <plugin> --> <!-- <groupId>org.apache.maven.plugins</groupId> --> <!-- <artifactId>maven-war-plugin</artifactId> --> <!-- <version>2.2</version> --> <!-- <configuration> <overlays> <overlay> <groupId>org.kurtjx.snorql</groupId> <artifactId>snorql-webapp</artifactId> <type>jar</type> <targetPath>.</targetPath> --> <!-- <includes> <include>build/**</include> </includes> <excludes> <exclude>WEB-INF</exclude> --> <!-- </excludes> </overlay> </overlays> </configuration> --> <!-- </plugin> --> <!-- <plugin> <groupId>org.codehaus.cargo</groupId> <artifactId>cargo-maven2-plugin</artifactId> <extensions>true</extensions> <configuration> <descriptor>src/assemble/merge.xml</descriptor> </configuration> </plugin> --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <version>3.1.0</version> <configuration> <warSourceDirectory>${basedir}/src/main/webapp</warSourceDirectory> <packagingExcludes>WEB-INF/lib/*.jar</packagingExcludes> <attachClasses>true</attachClasses> <!-- <classesClassifier>classes</classesClassifier> --> </configuration> </plugin> </plugins> </build> <dependencies> <!-- <dependency> <groupId>org.apache.jena</groupId> <artifactId>jena-arq</artifactId> </dependency> <dependency> <groupId>org.apache.jena</groupId> <artifactId>jena-core</artifactId> </dependency> <dependency> <groupId>org.apache.jena</groupId> <artifactId>jena-iri</artifactId> </dependency> --> <dependency> <groupId>org.aksw.sparqlify</groupId> <artifactId>sparqlify-core</artifactId> <exclusions> <exclusion> <groupId>aopalliance</groupId> <artifactId>aopalliance</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.aksw.jenax</groupId> <artifactId>jenax-server-core</artifactId> </dependency> <!-- <dependency> --> <!-- <groupId>org.aksw.sparqlify</groupId> --> <!-- <artifactId>sparqlify-server</artifactId> --> <!-- <type>war</type> --> <!-- <version>${parent.version}</version> --> <!-- </dependency> --> <dependency> <groupId>org.aksw.de.fuberlin.wiwiss</groupId> <artifactId>pubby</artifactId> <type>war</type> </dependency> <dependency> <groupId>org.aksw.de.fuberlin.wiwiss</groupId> <artifactId>pubby</artifactId> <classifier>classes</classifier> </dependency> <dependency> <groupId>org.kurtjx.snorql</groupId> <artifactId>snorql-webapp</artifactId> <type>war</type> </dependency> <!-- Spring dependencies --> <!-- <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> </dependency> <dependency> <groupId>com.sun.jersey.contribs</groupId> <artifactId>jersey-spring</artifactId> </dependency> --> <dependency> <groupId>org.tuckey</groupId> <artifactId>urlrewritefilter</artifactId> </dependency> <!-- <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> </dependency> --> </dependencies> </project>