Author: jsorel
Date: Fri Mar 16 10:26:45 2018
New Revision: 1826952
URL: http://svn.apache.org/viewvc?rev=1826952&view=rev
Log:
Portrayal : new maven module for symbology and mapping
Added:
sis/branches/JDK8/core/sis-portrayal/
sis/branches/JDK8/core/sis-portrayal/pom.xml
sis/branches/JDK8/core/sis-portrayal/src/
sis/branches/JDK8/core/sis-portrayal/src/main/
sis/branches/JDK8/core/sis-portrayal/src/main/java/
sis/branches/JDK8/core/sis-portrayal/src/main/java/org/
sis/branches/JDK8/core/sis-portrayal/src/main/java/org/apache/
sis/branches/JDK8/core/sis-portrayal/src/main/java/org/apache/sis/
sis/branches/JDK8/core/sis-portrayal/src/test/
sis/branches/JDK8/core/sis-portrayal/src/test/java/
sis/branches/JDK8/core/sis-portrayal/src/test/java/org/
sis/branches/JDK8/core/sis-portrayal/src/test/java/org/apache/
sis/branches/JDK8/core/sis-portrayal/src/test/java/org/apache/sis/
Modified:
sis/branches/JDK8/core/pom.xml
sis/branches/JDK8/ide-project/NetBeans/build.xml
sis/branches/JDK8/ide-project/NetBeans/nbproject/project.properties
sis/branches/JDK8/ide-project/NetBeans/nbproject/project.xml
Modified: sis/branches/JDK8/core/pom.xml
URL:
http://svn.apache.org/viewvc/sis/branches/JDK8/core/pom.xml?rev=1826952&r1=1826951&r2=1826952&view=diff
==============================================================================
--- sis/branches/JDK8/core/pom.xml (original)
+++ sis/branches/JDK8/core/pom.xml Fri Mar 16 10:26:45 2018
@@ -193,6 +193,7 @@
<module>sis-referencing-by-identifiers</module>
<module>sis-feature</module>
<module>sis-raster</module>
+ <module>sis-portrayal</module>
</modules>
</project>
Added: sis/branches/JDK8/core/sis-portrayal/pom.xml
URL:
http://svn.apache.org/viewvc/sis/branches/JDK8/core/sis-portrayal/pom.xml?rev=1826952&view=auto
==============================================================================
--- sis/branches/JDK8/core/sis-portrayal/pom.xml (added)
+++ sis/branches/JDK8/core/sis-portrayal/pom.xml Fri Mar 16 10:26:45 2018
@@ -0,0 +1,143 @@
+<?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>core</artifactId>
+ <version>1.0-jdk8-SNAPSHOT</version>
+ </parent>
+
+
+ <!-- ===========================================================
+ Module Description
+ =========================================================== -->
+ <groupId>org.apache.sis.core</groupId>
+ <artifactId>sis-portrayal</artifactId>
+ <packaging>bundle</packaging>
+ <name>Apache SIS portrayal</name>
+ <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. -->
+Symbology, map and rendering engine representation
+ </description>
+
+
+ <!-- ===========================================================
+ Developers and Contributors
+ =========================================================== -->
+ <developers>
+ <developer>
+ <name>Johann Sorel</name>
+ <id>jsorel</id>
+ <organization>Geomatys</organization>
+ <organizationUrl>http://www.geomatys.com</organizationUrl>
+ <timezone>+1</timezone>
+ <roles>
+ <role>developer</role>
+ </roles>
+ </developer>
+ <developer>
+ <name>Martin Desruisseaux</name>
+ <id>desruisseaux</id>
+ <email>[email protected]</email>
+ <organization>Geomatys</organization>
+ <organizationUrl>http://www.geomatys.com</organizationUrl>
+ <timezone>+1</timezone>
+ <roles>
+ <role>developer</role>
+ </roles>
+ </developer>
+ </developers>
+ <contributors>
+ </contributors>
+
+
+ <!-- ===========================================================
+ Build configuration
+ =========================================================== -->
+ <build>
+ <plugins>
+
+ <!-- Package as OSGi bundle -->
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ <configuration>
+ <instructions>
+ <Bundle-SymbolicName>org.apache.sis.portrayal</Bundle-SymbolicName>
+ </instructions>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+
+ <!-- ===========================================================
+ Dependencies
+ =========================================================== -->
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.sis.core</groupId>
+ <artifactId>sis-utility</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.sis.core</groupId>
+ <artifactId>sis-referencing</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.sis.core</groupId>
+ <artifactId>sis-feature</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+
+ <!-- Test dependencies -->
+ <dependency>
+ <groupId>org.apache.sis.core</groupId>
+ <artifactId>sis-utility</artifactId>
+ <version>${project.version}</version>
+ <type>test-jar</type>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.sis.core</groupId>
+ <artifactId>sis-metadata</artifactId>
+ <version>${project.version}</version>
+ <type>test-jar</type>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.sis.core</groupId>
+ <artifactId>sis-referencing</artifactId>
+ <version>${project.version}</version>
+ <type>test-jar</type>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+
+</project>
Modified: sis/branches/JDK8/ide-project/NetBeans/build.xml
URL:
http://svn.apache.org/viewvc/sis/branches/JDK8/ide-project/NetBeans/build.xml?rev=1826952&r1=1826951&r2=1826952&view=diff
==============================================================================
--- sis/branches/JDK8/ide-project/NetBeans/build.xml (original)
+++ sis/branches/JDK8/ide-project/NetBeans/build.xml Fri Mar 16 10:26:45 2018
@@ -48,6 +48,9 @@
<fileset
dir="${project.root}/core/sis-raster/target/generated-resources">
<include name="**/*.utf"/>
</fileset>
+ <fileset
dir="${project.root}/core/sis-portrayal/target/generated-resources">
+ <include name="**/*.utf"/>
+ </fileset>
<fileset
dir="${project.root}/storage/sis-storage/target/generated-resources">
<include name="**/*.utf"/>
</fileset>
Modified: sis/branches/JDK8/ide-project/NetBeans/nbproject/project.properties
URL:
http://svn.apache.org/viewvc/sis/branches/JDK8/ide-project/NetBeans/nbproject/project.properties?rev=1826952&r1=1826951&r2=1826952&view=diff
==============================================================================
--- sis/branches/JDK8/ide-project/NetBeans/nbproject/project.properties
[ISO-8859-1] (original)
+++ sis/branches/JDK8/ide-project/NetBeans/nbproject/project.properties
[ISO-8859-1] Fri Mar 16 10:26:45 2018
@@ -72,6 +72,8 @@ src.feature.dir = ${project.root}/c
test.feature.dir = ${project.root}/core/sis-feature/src/test/java
src.raster.dir = ${project.root}/core/sis-raster/src/main/java
test.raster.dir = ${project.root}/core/sis-raster/src/test/java
+src.portrayal.dir = ${project.root}/core/sis-portrayal/src/main/java
+test.portrayal.dir = ${project.root}/core/sis-portrayal/src/test/java
src.referencing.dir = ${project.root}/core/sis-referencing/src/main/java
test.referencing.dir = ${project.root}/core/sis-referencing/src/test/java
src.ref-by-id.dir =
${project.root}/core/sis-referencing-by-identifiers/src/main/java
Modified: sis/branches/JDK8/ide-project/NetBeans/nbproject/project.xml
URL:
http://svn.apache.org/viewvc/sis/branches/JDK8/ide-project/NetBeans/nbproject/project.xml?rev=1826952&r1=1826951&r2=1826952&view=diff
==============================================================================
--- sis/branches/JDK8/ide-project/NetBeans/nbproject/project.xml (original)
+++ sis/branches/JDK8/ide-project/NetBeans/nbproject/project.xml Fri Mar 16
10:26:45 2018
@@ -35,6 +35,7 @@
<root id="src.storage.dir" name="Storage"/>
<root id="src.feature.dir" name="Feature"/>
<root id="src.raster.dir" name="Raster"/>
+ <root id="src.portrayal.dir" name="Portrayal"/>
<root id="src.referencing.dir" name="Referencing"/>
<root id="src.ref-by-id.dir" name="Referencing by
identifiers"/>
<root id="src.metadata.dir" name="Metadata"/>
@@ -55,6 +56,7 @@
<root id="test.storage.dir" name="Test Storage"/>
<root id="test.feature.dir" name="Test Feature"/>
<root id="test.raster.dir" name="Test Raster"/>
+ <root id="test.portrayal.dir" name="Test Portrayal"/>
<root id="test.referencing.dir" name="Test Referencing"/>
<root id="test.ref-by-id.dir" name="Test Referencing by
identifiers"/>
<root id="test.metadata.dir" name="Test Metadata"/>