blazegraph-jar
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.blazegraph</groupId> <artifactId>blazegraph-jar</artifactId> <version>2.1.5</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/maven-v4_0_0.xsd"> <parent> <artifactId>blazegraph-artifacts</artifactId> <groupId>com.blazegraph</groupId> <version>2.1.5</version> <relativePath>../../../../blazegraph-artifacts/pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <groupId>com.blazegraph</groupId> <artifactId>blazegraph-jar</artifactId> <name>Blazegraph Executable Jar</name> <version>2.1.5</version> <description>Blazegraph Executable Jar file. All files required to run Blazegraph DB in a single jar.</description> <build> <resources> <resource> <directory>src/main/resources</directory> <includes> <include>**/*.xml</include> <include>**/*.properties</include> <include>**/org.openrdf.rio.*</include> <include>**/com.bigdata.*</include> </includes> </resource> </resources> <plugins> <plugin> <artifactId>maven-dependency-plugin</artifactId> <version>2.10</version> <executions> <execution> <id>copy</id> <phase>compile</phase> <goals> <goal>copy</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>com.blazegraph</groupId> <artifactId>bigdata-war-html</artifactId> <version>${project.version}</version> <type>war</type> <overWrite>true</overWrite> <outputDirectory>target/classes/war</outputDirectory> <destFileName>blazegraph.war</destFileName> </artifactItem> </artifactItems> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-antrun-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>unpack-war</id> <phase>compile</phase> <goals> <goal>run</goal> </goals> <configuration> <target> <unzip> <fileset> <include /> </fileset> </unzip> <delete /> <copy /> </target> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>2.4</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <filters> <filter> <artifact>com.blazegraph:rdf-properties</artifact> <includes> <include>**/*</include> </includes> </filter> <filter> <artifact>com.blazegraph:blazegraph-jar</artifact> <includes> <include>**/*</include> </includes> </filter> <filter> <artifact>*:*</artifact> <excludes> <exclude>org/junit/experimental/**</exclude> <exclude>org/junit/runners/**</exclude> <exclude>junit/framework/**</exclude> <exclude>junit/**</exclude> <exclude>org/junit/**</exclude> <exclude>WEB-INF/**</exclude> <exclude>test*/**</exclude> <exclude>cia-factbook/**</exclude> <exclude>**/*.ttl</exclude> <exclude>**/*.ttlx</exclude> <exclude>**/*.rq</exclude> <exclude>**/*.srx</exclude> <exclude>**/*.trig</exclude> <exclude>**/sesame*testsuite/**</exclude> </excludes> </filter> </filters> <transformers> <transformer> <manifestEntries> <Main-Class>com.bigdata.rdf.sail.webapp.StandaloneNanoSparqlServer</Main-Class> <Build-Number>${project.version}</Build-Number> </manifestEntries> </transformer> </transformers> </configuration> </execution> </executions> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <stylesheetfile>${basedir}/src/main/javadoc/stylesheet.css</stylesheetfile> <show>public</show> <maxmemory>1000m</maxmemory> <author>true</author> <version>true</version> <doctitle><h1>Blazegraph Executable Jar</h1></doctitle> <bottom><i>Copyright &#169; 2006-2016 SYSTAP, LLC DBA Blazegraph. All Rights Reserved.</i> <script> jQuery(document).ready(function(){ jQuery('ul.sf-menu').superfish({ pathClass: 'current', cssArrows: false }); }); (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-50971023-6', 'blazegraph.com'); ga('send', 'pageview'); </script></bottom> </configuration> </plugin> </plugins> </reporting> </project>