-
Notifications
You must be signed in to change notification settings - Fork 172
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update for missing blazegraph-artifacts parent pom.
- Loading branch information
1 parent
9508061
commit 20df903
Showing
1 changed file
with
103 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
<?xml version="1.0"?> | ||
<!-- | ||
Copyright (C) SYSTAP, LLC 2006-2015. All rights reserved. | ||
Contact: | ||
SYSTAP, LLC | ||
2501 Calvert ST NW #106 | ||
Washington, DC 20008 | ||
licenses@systap.com | ||
This program is free software; you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation; version 2 of the License. | ||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with this program; if not, write to the Free Software | ||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
Copyright 2010 by TalkingTrends (Amsterdam, The Netherlands) | ||
--> | ||
<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>com.blazegraph</groupId> | ||
<artifactId>blazegraph-parent</artifactId> | ||
<version>2.0.0-RC1</version> | ||
<relativePath>../blazegraph-parent/pom.xml</relativePath> | ||
</parent> | ||
<groupId>com.blazegraph</groupId> | ||
<artifactId>blazegraph-artifacts</artifactId> | ||
<version>2.0.0-RC1</version> | ||
<name>Blazegraph Deployment Artifacts</name> | ||
<url>http://www.blazegraph.com</url> | ||
<packaging>pom</packaging> | ||
|
||
<build> | ||
<pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-assembly-plugin</artifactId> | ||
<version>2.5.3</version> | ||
<configuration> | ||
<descriptors> | ||
<descriptor>src/main/assembly/blazegraph.xml</descriptor> | ||
</descriptors> | ||
<tarLongFileMode>posix</tarLongFileMode> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
</build> | ||
|
||
<reporting> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<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><![CDATA[<h1>Blazegraph Deployment Artifacts</h1>]]></doctitle> | ||
<bottom> <![CDATA[<i>Copyright © 2006-2015 SYSTAP, LLC. 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> | ||
<modules> | ||
<!-- Legacy artifacts for /bigdata context path --> | ||
<module>../bigdata-war</module> | ||
<module>../bigdata-jar</module> | ||
<!-- Blazegraph artifacts --> | ||
<module>../blazegraph-war</module> | ||
<module>../blazegraph-jar</module> | ||
<module>../blazegraph-deb</module> | ||
<module>../blazegraph-rpm</module> | ||
<module>../blazegraph-tgz</module> | ||
</modules> | ||
</project> |