Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1 0 0 #917

Merged
merged 2 commits into from
Jan 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/CI release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ jobs:
cat <(echo -e "${{ secrets.OSSRH_GPG_SECRET_KEY }}") | gpg --batch --import
gpg --list-secret-keys --keyid-format LONG

# Test build
- name: Build test
run: mvn -ntp clean validate compile test javadoc:test-javadoc javadoc:jar

# Create the release :
# - move from Snapshot version to Release
# - commit and tag release
Expand Down
5 changes: 5 additions & 0 deletions bdtopo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@
<modelVersion>4.0.0</modelVersion>
<version>1.0.0-SNAPSHOT</version>

<!-- Project Information -->
<name>bdtopo</name>
<description>GeoClimate module to format the BDTopo data into the GeoClimate abstract model.
</description>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
Expand Down
5 changes: 5 additions & 0 deletions common-utils/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@
<version>1.0.0-SNAPSHOT</version>
</parent>

<!-- Project Information -->
<name>common-utils</name>
<description>GeoClimate common utilities.
</description>

<artifactId>common-utils</artifactId>
<version>1.0.0-SNAPSHOT</version>

Expand Down
5 changes: 5 additions & 0 deletions geoclimate-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@
<artifactId>geoclimate</artifactId>
<version>1.0.0-SNAPSHOT</version>

<!-- Project Information -->
<name>geoclimate-cli</name>
<description>GeoClimate module to run geoclimate workflow with a command line interface.
</description>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
Expand Down
5 changes: 5 additions & 0 deletions osm/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@
<groupId>org.orbisgis.geoclimate</groupId>
<version>1.0.0-SNAPSHOT</version>

<!-- Project Information -->
<name>osm</name>
<description>GeoClimate module to format the OSM data into the GeoClimate abstract model.
</description>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
Expand Down
5 changes: 5 additions & 0 deletions osmtools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@
<artifactId>osmtools</artifactId>
<version>1.0.0-SNAPSHOT</version>

<!-- Project Information -->
<name>osmtools</name>
<description>GeoClimate module to extract OSM data and tranform it as GIS layers.
</description>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
Expand Down
7 changes: 7 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@
<module>common-utils</module>
</modules>

<!-- Project Information -->
<name>geoclimate</name>
<description>GeoClimate is an opensource geospatial toolbox to compute a set of climate related parameters
describing a territory (morphological indicators such as Sky View Factor,
urban classifications such as Local Climate Zones, etc.).
</description>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.build.timestamp.format>YYYY-MM-dd</maven.build.timestamp.format>
Expand Down
5 changes: 5 additions & 0 deletions worldpoptools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@
<groupId>org.orbisgis.geoclimate</groupId>
<version>1.0.0-SNAPSHOT</version>

<!-- Project Information -->
<name>worldpoptools</name>
<description>GeoClimate module to download population data from the WorldPop OGC services.
</description>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
Expand Down
Loading