Skip to content

Commit

Permalink
[GEOS-11376] Graduate Raster Attribute Table to extension
Browse files Browse the repository at this point in the history
  • Loading branch information
aaime committed Apr 30, 2024
1 parent 275b048 commit 655eee2
Show file tree
Hide file tree
Showing 33 changed files with 21 additions and 18 deletions.
1 change: 0 additions & 1 deletion doc/en/user/source/community/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ officially part of the GeoServer releases. They are however built along with the
opensearch-eo/index
pgraster/pgraster
proxy-base-ext/index
rat/index
remote-wps/index
s3-geotiff/index
schemaless-features/index
Expand Down
1 change: 1 addition & 0 deletions doc/en/user/source/extensions/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,4 @@ This section describes most of the extensions available for GeoServer. Other dat
csw-iso/index
metadata/index
iau/index
rat/index
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ Installing the RAT module

To install the Raster Attribute Table support:

#. Download the **rat** community extension from the appropriate `nightly build <https://build.geoserver.org/geoserver/>`_. The file name is called :file:`geoserver-*-rat-plugin.zip`, where ``*`` matches the version number of GeoServer you are using.
#. From the :website:`website download <download>` page, locate your release, and download: :download_extension:`rat`

.. warning:: Make sure to match the version of the extension to the version of GeoServer.

#. Extract this these files and place the JARs in ``WEB-INF/lib``.

Expand Down
File renamed without changes.
8 changes: 0 additions & 8 deletions src/community/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@
<descriptor>release/ext-xslt.xml</descriptor>
<descriptor>release/ext-datadir-catalog-loader.xml</descriptor>
<descriptor>release/ext-wps-longitudinal-profile.xml</descriptor>
<descriptor>release/ext-rat.xml</descriptor>
<descriptor>release/ext-monitor-kafka.xml</descriptor>
<descriptor>release/ext-graticule.xml</descriptor>
<descriptor>release/ext-wfs-freemarker.xml</descriptor>
Expand Down Expand Up @@ -251,7 +250,6 @@
<module>imagemap</module>
<module>datadir-catalog-loader</module>
<module>wps-longitudinal-profile</module>
<module>rat</module>
<module>monitor-kafka</module>
<module>graticule</module>
<module>wfs-freemarker</module>
Expand Down Expand Up @@ -716,12 +714,6 @@
<module>wps-longitudinal-profile</module>
</modules>
</profile>
<profile>
<id>rat</id>
<modules>
<module>rat</module>
</modules>
</profile>
<profile>
<id>graticule</id>
<build>
Expand Down
5 changes: 0 additions & 5 deletions src/community/release/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -435,11 +435,6 @@
<artifactId>gs-wps-longitudinal-profile</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.geoserver.community</groupId>
<artifactId>gs-rat</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.geoserver.community</groupId>
<artifactId>gs-monitor-kafka</artifactId>
Expand Down
8 changes: 8 additions & 0 deletions src/extension/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -394,6 +394,12 @@
<module>metadata</module>
</modules>
</profile>
<profile>
<id>rat</id>
<modules>
<module>rat</module>
</modules>
</profile>

<!-- allExtensions profile, includes all modules -->
<profile>
Expand Down Expand Up @@ -443,6 +449,7 @@
<module>mapml</module>
<module>geopkg-output</module>
<module>metadata</module>
<module>rat</module>
</modules>
</profile>

Expand Down Expand Up @@ -494,6 +501,7 @@
<module>mapml</module>
<module>geopkg-output</module>
<module>metadata</module>
<module>rat</module>
</modules>
</profile>
</profiles>
Expand Down
4 changes: 2 additions & 2 deletions src/community/rat/pom.xml → src/extension/rat/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.geoserver</groupId>
<artifactId>community</artifactId>
<artifactId>extension</artifactId>
<version>2.25-SNAPSHOT</version>
</parent>

<groupId>org.geoserver.community</groupId>
<groupId>org.geoserver.extension</groupId>
<artifactId>gs-rat</artifactId>
<name>Raster Attribute Table support</name>

Expand Down
1 change: 1 addition & 0 deletions src/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1874,6 +1874,7 @@
<descriptor>release/ext-wps-jdbc.xml</descriptor>
<descriptor>release/ext-wps.xml</descriptor>
<descriptor>release/ext-ysld.xml</descriptor>
<descriptor>release/ext-rat.xml</descriptor>
</descriptors>
<outputDirectory>${project.build.directory}/release</outputDirectory>
</configuration>
Expand Down
File renamed without changes.
5 changes: 5 additions & 0 deletions src/release/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -407,6 +407,11 @@
<artifactId>gs-metadata</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.geoserver.extension</groupId>
<artifactId>gs-rat</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
Expand Down
2 changes: 1 addition & 1 deletion src/web/app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1871,7 +1871,7 @@
<id>rat</id>
<dependencies>
<dependency>
<groupId>org.geoserver.community</groupId>
<groupId>org.geoserver.extension</groupId>
<artifactId>gs-rat</artifactId>
<version>${gs.version}</version>
</dependency>
Expand Down

0 comments on commit 655eee2

Please sign in to comment.