Skip to content

Commit

Permalink
[GSIP-154][GEOS-7939] Promote YSLD module to extension
Browse files Browse the repository at this point in the history
  • Loading branch information
tbarsballe committed Jan 31, 2017
1 parent 86e547b commit 7bf6e09
Show file tree
Hide file tree
Showing 17 changed files with 18 additions and 20 deletions.
4 changes: 2 additions & 2 deletions doc/en/user/source/styling/ysld/index.rst
Expand Up @@ -3,9 +3,9 @@
YSLD Styling
============

This community module adds support for the YSLD styling language.
This module adds support for the YSLD styling language.

`YSLD <https://github.com/geotools/geotools/blob/master/modules/unsupported/ysld/README.md>`_ is a YAML based language which closely matches the stucture of SLD, and the internal data model that GeoServer's renderer uses. For details on YSLD syntax see the reference below or the GeoTools documentation.
`YSLD <http://docs.geotools.org/latest/userguide/extension/ysld.html>`_ is a YAML based language which closely matches the stucture of SLD, and the internal data model that GeoServer's renderer uses. For details on YSLD syntax see the reference below or the GeoTools documentation.

YSLD is not a part of GeoServer by default, but is available as an optional install.

Expand Down
8 changes: 0 additions & 8 deletions src/community/pom.xml
Expand Up @@ -69,7 +69,6 @@
<descriptor>release/ext-params-extractor.xml</descriptor>
<descriptor>release/ext-wps-remote.xml</descriptor>
<descriptor>release/ext-python.xml</descriptor>
<descriptor>release/ext-ysld.xml</descriptor>
<descriptor>release/ext-jdbcstore.xml</descriptor>
<descriptor>release/ext-ncwms.xml</descriptor>
<descriptor>release/ext-gwc-sqlite.xml</descriptor>
Expand Down Expand Up @@ -211,7 +210,6 @@
<module>jdbcstore</module>
<module>gdal</module>
<module>gwc-s3</module>
<module>ysld</module>
<module>backup-restore</module>
<module>ncwms</module>
<module>web-resource</module>
Expand Down Expand Up @@ -436,12 +434,6 @@
<module>dem</module>
</modules>
</profile>
<profile>
<id>ysld</id>
<modules>
<module>ysld</module>
</modules>
</profile>
<profile>
<id>backup-restore</id>
<modules>
Expand Down
21 changes: 13 additions & 8 deletions src/extension/pom.xml
Expand Up @@ -313,12 +313,17 @@
<module>netcdf-out</module>
</modules>
</profile>

<profile>
<profile>
<id>vectortiles</id>
<modules>
<module>vectortiles</module>
</modules>
<modules>
<module>vectortiles</module>
</modules>
</profile>
<profile>
<id>ysld</id>
<modules>
<module>ysld</module>
</modules>
</profile>

<!-- allExtensions profile, includes all modules -->
Expand Down Expand Up @@ -358,7 +363,8 @@
<module>grib</module>
<module>netcdf</module>
<module>netcdf-out</module>
<module>vectortiles</module>
<module>vectortiles</module>
<module>ysld</module>
</modules>
</profile>

Expand Down Expand Up @@ -400,9 +406,8 @@
<module>netcdf</module>
<module>netcdf-out</module>
<module>vectortiles</module>
<module>ysld</module>
</modules>
</profile>

</profiles>

</project>
4 changes: 2 additions & 2 deletions src/community/ysld/pom.xml → src/extension/ysld/pom.xml
Expand Up @@ -6,11 +6,11 @@

<parent>
<groupId>org.geoserver</groupId>
<artifactId>community</artifactId>
<artifactId>extension</artifactId>
<version>2.11-SNAPSHOT</version>
</parent>

<groupId>org.geoserver.community</groupId>
<groupId>org.geoserver</groupId>
<artifactId>gs-ysld</artifactId>
<name>Ysld GeoServer Plugin</name>
<packaging>jar</packaging>
Expand Down
1 change: 1 addition & 0 deletions src/pom.xml
Expand Up @@ -1434,6 +1434,7 @@
<descriptor>release/ext-netcdf.xml</descriptor>
<descriptor>release/ext-netcdf-out.xml</descriptor>
<descriptor>release/ext-vectortiles.xml</descriptor>
<descriptor>release/ext-ysld.xml</descriptor>
</descriptors>
<finalName>geoserver-2.11-SNAPSHOT</finalName>
<outputDirectory>${project.build.directory}/release</outputDirectory>
Expand Down
File renamed without changes.

0 comments on commit 7bf6e09

Please sign in to comment.