non-free
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.apache.sis</groupId>
<artifactId>non-free</artifactId>
<version>1.4</version>
</dependency><?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.sis</groupId>
<artifactId>parent</artifactId>
<version>1.4</version>
</parent>
<!-- ==============================================================
Project description. <licenses> elements are declared in
pom.xml of sub-modules.
============================================================== -->
<groupId>org.apache.sis</groupId>
<artifactId>non-free</artifactId>
<packaging>pom</packaging>
<name>Non-free resources for Apache SIS</name>
<url>http://sis.apache.org/epsg.html</url>
<description>
<!-- Left alignment because this description will be copied in META-INF/MANIFEST.MF
The leading space after the first line is necessary for proper formatting. -->
The "non-free" modules contain data that may be used, copied and distributed subject to conditions
more restrictive than the usual open source licenses. Those data are not included in Apache releases,
but are nevertheless deployed on Maven Central for convenience only. Users who want those data need
to declare a Maven dependency explicitely. Licenses are declared in their respective sub-module.
</description>
<scm>
<connection>
scm:svn:http://svn.apache.org/repos/asf/sis/data/non-free
</connection>
<developerConnection>
scm:svn:https://svn.apache.org/repos/asf/sis/data/non-free
</developerConnection>
<url>http://svn.apache.org/viewvc/sis/data/non-free</url>
</scm>
<!-- ==============================================================
Developers and Contributors.
============================================================== -->
<developers>
<developer>
<name>Martin Desruisseaux</name>
<id>desruisseaux</id>
<email>martin.desruisseaux@geomatys.com</email>
<organization>Geomatys</organization>
<organizationUrl>http://www.geomatys.com/</organizationUrl>
<timezone>+1</timezone>
<roles>
<role>Module Maintainer</role>
<role>Java Developer</role>
</roles>
</developer>
</developers>
<!-- ===========================================================
Dependencies to be inherited by all modules.
=========================================================== -->
<dependencies>
<dependency>
<groupId>org.apache.sis.core</groupId>
<artifactId>sis-referencing</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opengis</groupId>
<artifactId>geoapi-conformance</artifactId>
<version>3.0.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<!-- ===========================================================
Build configuration.
=========================================================== -->
<build>
<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
<configuration>
<skip>true</skip>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-remote-resources-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<!--
Needs an older plugin version because of change in the way symbolic links are handled.
https://issues.apache.org/jira/browse/MRESOURCES-237
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.7</version>
</plugin>
</plugins>
</build>
<!-- ==============================================================
Group of modules to build in approximate dependency order.
============================================================== -->
<modules>
<module>sis-epsg</module>
<module>sis-embedded-data</module>
</modules>
</project>