1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
|
<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>
<properties>
<vtk.snapshots.repo>file://@MAVEN_LOCAL_REPOSITORY@/snapshots</vtk.snapshots.repo>
<vtk.releases.repo>file://@MAVEN_LOCAL_REPOSITORY@/releases</vtk.releases.repo>
</properties>
<groupId>@MAVEN_VTK_GROUP_ID@</groupId>
<artifactId>vtk</artifactId>
<version>@VTK_MAJOR_VERSION@.@VTK_MINOR_VERSION@-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Maven VTK Wrapper</name>
<description>Builds VTK and Mavenize it</description>
<organization>
<name>Kitware Inc.</name>
<url>http://www.kitware.com</url>
</organization>
<issueManagement>
<system>GitLab</system>
<url>https://gitlab.kitware.com/vtk/vtk/issues</url>
</issueManagement>
<licenses>
<license>
<name>BSD license</name>
<url>http://en.wikipedia.org/wiki/BSD_licenses</url>
<comments>
VTK is an open-source toolkit licensed under the BSD license.
Copyright (c) 1993-2008 Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
Neither name of Ken Martin, Will Schroeder, or Bill Lorensen nor the names of any contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
</comments>
<distribution>repo</distribution>
</license>
</licenses>
<dependencies>@MAVEN_DEPENDENCY_XML@
</dependencies>
<distributionManagement>
<!-- Warning: Generating release artifacts is only meant to be used after
a compilation of VTK across all the targeted platforms while overriding
the following CMake properties:
# Customize the Group ID
-DMAVEN_VTK_GROUP_ID:STRING=kitware.community
# This will be generated by CMake automatically but can be override
-DMAVEN_LOCAL_NATIVE_NAME:STRING=Win32
# List of all the MAVEN_LOCAL_NATIVE_NAME on each computer
-DMAVEN_NATIVE_ARTIFACTS:STRING=Win32;Win64;Linux32;Linux64;OSX
# Path where the local repo should be stored at least at the end
# when Maven will be called
-DMAVEN_LOCAL_REPOSITORY:STRING=${user.home}/vtk-maven-repos
Each platform will generate an OS specific install directory but
the generated pom.xml will remain the same on each computer which
will ease the merge of those directory for a one step maven deploy.
-->
<repository>
<id>vtk-releases-repo</id>
<name>VTK Release Artifact Repository</name>
<url>${vtk.releases.repo}</url>
</repository>
<snapshotRepository>
<id>vtk-snapshots-repo</id>
<name>VTK Snapshot Artifact Repository</name>
<url>${vtk.snapshots.repo}</url>
</snapshotRepository>
</distributionManagement>
<pluginRepositories>
<pluginRepository>
<id>sonatype-public-repository</id>
<url>https://oss.sonatype.org/content/groups/public</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>true</enabled>
</releases>
</pluginRepository>
</pluginRepositories>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<id>attach-vtk-artifacts</id>
<phase>package</phase>
<goals>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifacts>
<artifact>
<file>vtk-@VTK_MAJOR_VERSION@.@VTK_MINOR_VERSION@.jar</file>
<type>jar</type>
</artifact>@MAVEN_NATIVE_ARTIFACT_XML@
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
|