examind-community
Examind Community (formerly known as Constellation-SDI) is an open source platform dedicated to geographic data infrastructures development. It constitutes the foundation of custom developments carried out by Geomatys and results from more than 10 years of R&D.
Science Score: 26.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (14.7%) to scientific vocabulary
Repository
Examind Community (formerly known as Constellation-SDI) is an open source platform dedicated to geographic data infrastructures development. It constitutes the foundation of custom developments carried out by Geomatys and results from more than 10 years of R&D.
Basic Info
Statistics
- Stars: 8
- Watchers: 7
- Forks: 5
- Open Issues: 6
- Releases: 0
Metadata Files
README.md
EXAMIND Community
Examind Community makes it possible to easily create a complete Spatial Data Infrastructure, from cataloging geographic resources to operate a platform of sensors that feeds back information in real time.
Available OGC web services
- WMS : 1.1.1 and 1.3.0 (INSPIRE-compliant)
- WMTS : 1.0.0
- CSW : 2.0.0, 2.0.2 and 3.0.0 (INSPIRE-compliant)
- SOS : 1.0.0 and 2.0.0 (need PostGIS database)
- WFS : 1.1.0 and 2.0.0 (INSPIRE-compliant)
- WPS : 1.0.0
- WCS : 1.0.0
Available OGC API
- Coverages (link) : Part 1 - Core
- Styles (link) : Part 1 - Core
- Common (link) : Part 1 - Core | Part 2 - Collections
Supported input data
- Vector :
- Shapefiles
- GeoJSON
- KML
- GPX
- GML
- CSV (with geometry in WKT)
- MapInfo MIF/MID format
- PostGIS database
- Raster :
- Geotiff
- NetCDF/NetCDF+NCML
- Grib
- Images with .tfw and .prj files for projection and transformation informations
Java version support
- 1.0.23 is the last stable version supporting java 8.
- Any version after that are based upon Java 17
Get started
Build from sources
Requirements
Procedure
sh
git clone https://github.com/Geomatys/examind-community.git
cd examind-community
mvn install -DskipTests
Note 1 : for smaller download without git history: git clone --depth 1 https://github.com/Geomatys/examind-community.git
Note 2 : if you want to build with tests, an in-memory HSQL database will be created, however if you want to use a PostgreSQL database, you'll need an empty database. then execute the following command:
sh
mvn clean install -Dtest.database.url="postgres://<user>:<password>@<host>:<port>/<database name>"
example: postgres://cstl:admin@localhost:5432/cstl-test
S3 storage system
If you want to use S3 storage system client in the project, run this command before all others :
shell
mvn install -pl :exa-s3-bundle
You must also set an environement variable with the AWS region where the buckets you want to use are located. Currently only one region can be available at the same time. This will be fixed in the future.
aws.region : eu-central-1
Deploy using Docker
Build Docker image
When building the project, add the docker profile to also compile docker image.
This will produce a Tomcat based image of Examind-Community application. The resulting image will be images.geomatys.com/examind/examind-community:latest.
Tip: you can customize the docker tag of the image by specifying the docker.tag property.
Example: Build the project and the docker image, setting the image tag to myVersion:
shell
mvn install -Pdocker -Ddocker.tag=myVersion
Tip: If you've already compiled the project, and just want to rebuild docker image, you can reduce work by re-packaging the exa-bundle module with docker profile:
shell
mvn package -Pdocker -pl :exa-bundle
Run
Go to docker folder
cd <base directory>/docker
then type the command
```
./run.sh
or
docker-compose up -d ```
the web application will be available at http://localhost:8080/examind you can authenticate with user = admin and password = admin.
Deploy on Tomcat
Requirements
To run Examind, you'll need :
* JDK 17. Can be downloaded here for your platform.
* PostgreSQL 9.x (found here) with a database named constellation owned by role:password cstl:admin
* Apache Tomcat 7.0.47+ with support of websockets found here
or
* Apache Tomcat 8.0.39+ with support of websockets found here
Tomcat configuration
Create a setenv.sh executable file in bin/ folder of Tomcat with :
CATALINA_OPTS="$CATALINA_OPTS -Dfile.encoding=UTF8 -Xmx1024m -XX:MaxPermSize=128m -Dgeotk.image.cache.size=128m -XX:-HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=./constellation.hprof $CSTL_OPTS -Dspring.profiles.active=standard"
JAVA_HOME=<PATH_TO_JDK>
JRE_HOME=<PATH_TO_JDK>/jre
On tomcat 8 add the following property
CATALINA_OPTS="$CATALINA_OPTS -Dorg.apache.catalina.core.ApplicationContext.GET_RESOURCE_REQUIRE_SLASH=true"
Tomcat startup :
<PATH_TO_TOMCAT>/bin/startup.sh
Tomcat shutdown :
<PATH_TO_TOMCAT>/bin/shutdown.sh
Usage
Browse http://localhost:8080/examind and authenticate with user admin and password admin.
Configuration
Examind retrieve his configuration through various inputs using following priority :
1. System environment variables following standard naming convention
2. Startup options (-Dproperty=value) following standard java properties naming convention
3. External configuration file (referenced with -Dcstl.config=/path/to/config.properties option)
4. Default embedded configuration
For example, database configuration can be specified from environment variable DATABASE_URL or startup/external property database.url.
Available configuration properties
- database.url : application database URL in Hiroku like format. Default value
postgres://cstl:admin@localhost:5432/constellation - epsg.database.url : EPSG database URL. Default value same as database.url
- test.database.url : testing database URL. Default value
postgres://test:test@localhost:5432/cstl-test - cstl.config : Path to application external configuration properties file. Optional, default null.
- cstl.url : Examind application URL. Used by Examind to generate resources URLs.
- cstl.home : Application home directory, used by Examind to store logs, indexes, ... . By default, Examind will create a
.constellationdirectory in current user home folder. - cstl.data : Application data directory, used by Examind to store integrated data and some configurations ... . By default, Examind will create a
datadirectory relative tocstl.homeproperty.
SMTP server configuration (used to re-initialize user password) :
* cstl.mail.smtp.from : Default value no-reply@localhost
* cstl.mail.smtp.host : Default value localhost
* cstl.mail.smtp.port : Default value 25
* cstl.mail.smtp.username : Default value no-reply@localhost
* cstl.mail.smtp.password : Default value mypassword
* cstl.mail.smtp.ssl : Default value false
Database configuration syntax
It is recommended to use standard jdbc urls when specifying database url. A custom syntax is allowed, but not recommended anymore.
Contribute
Activate Git hooks
Examind use Git hooks to standardize commits message format.
shell
rm .git/hooks/commit-msg
ln -s githook/* .git/hooks/
Owner
- Name: GEOMATYS
- Login: Geomatys
- Kind: organization
- Email: vincent.heurteaux@geomatys.com
- Location: Arles, Montpellier
- Website: http://www.geomatys.com
- Repositories: 39
- Profile: https://github.com/Geomatys
CodeMeta (codemeta.json)
{
"@context": "https://w3id.org/codemeta/3.0",
"type": "SoftwareSourceCode",
"applicationCategory": "Geospatial",
"codeRepository": "https://github.com/Geomatys/examind-community",
"contributor": [
{
"id": "_:contributor_1",
"type": "Person",
"email": "guilhem.legal@geomatys.com",
"familyName": "Legal",
"givenName": "Guilhem"
},
{
"id": "_:contributor_2",
"type": "Person",
"email": "alexis.manin@geomatys.com",
"familyName": "Manin",
"givenName": "Alexis"
},
{
"id": "_:contributor_3",
"type": "Person",
"email": "johan.sorel@geomatys.com",
"familyName": "Sorel",
"givenName": "Johan"
},
{
"id": "_:contributor_4",
"type": "Person",
"email": "martin.desruisseaux@geomatys.com",
"familyName": "Desruisseaux",
"givenName": "Martin"
},
{
"id": "_:contributor_5",
"type": "Person",
"familyName": "BOUALLAGUE",
"givenName": "Hilmi"
},
{
"id": "_:contributor_6",
"type": "Person",
"email": "quentin.bialota@geomatys.com",
"familyName": "BIALOTA",
"givenName": "Quentin"
}
],
"dateCreated": "2019-03-25",
"dateModified": "2024-11-14",
"datePublished": "2019-08-01",
"description": "Examind Community is an open source platform dedicated to geographic data / geospatial data. Examind supports a wide range of geospatial data formats and standards (OGC, OpenEO, etc.) as well as different access points to data sources (local, S3, remote, etc.).",
"downloadUrl": "https://github.com/Geomatys/examind-community/releases/tag/1.1.1.1",
"funder": {
"type": "Organization",
"name": "Geomatys"
},
"keywords": [
"geospatial",
"platform",
"data",
"formats",
"ogc"
],
"license": "https://spdx.org/licenses/Apache-2.0",
"name": "Examind Community",
"operatingSystem": [
"Docker",
"Linux",
"Windows"
],
"programmingLanguage": "Java (JDK 17+)",
"runtimePlatform": "JVM",
"softwareRequirements": [
"https://maven.apache.org/download.cgi",
"https://www.oracle.com/java/technologies/downloads/#java17"
],
"version": "1.1.1.1",
"developmentStatus": "active",
"issueTracker": "https://github.com/Geomatys/examind-community/issues"
}
GitHub Events
Total
- Issues event: 11
- Watch event: 3
- Issue comment event: 21
- Push event: 11
- Fork event: 1
- Create event: 2
Last Year
- Issues event: 11
- Watch event: 3
- Issue comment event: 21
- Push event: 11
- Fork event: 1
- Create event: 2
Issues and Pull Requests
Last synced: 10 months ago
All Time
- Total issues: 4
- Total pull requests: 0
- Average time to close issues: about 1 month
- Average time to close pull requests: N/A
- Total issue authors: 1
- Total pull request authors: 0
- Average comments per issue: 2.5
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 4
- Pull requests: 0
- Average time to close issues: about 1 month
- Average time to close pull requests: N/A
- Issue authors: 1
- Pull request authors: 0
- Average comments per issue: 2.5
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- paulemilechilin (7)
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels
Dependencies
- com.examind.community:examind 1.0-SNAPSHOT import
- org.flywaydb:flyway-core 4.2.0
- com.examind.community:cstl-web-base 1.0-SNAPSHOT
- com.examind.community:exa-services 1.0-SNAPSHOT
- com.examind.community:exa-webui 1.0-SNAPSHOT
- javax.media:jai_codec
- javax.media:jai_core
- javax.mail:mail compile
- javax.servlet:javax.servlet-api provided
- ch.qos.logback:logback-classic
- com.examind.community.storage.sql:exa-store-data-sql 1.0-SNAPSHOT
- com.examind.community:cstl-database-api 1.0-SNAPSHOT
- com.examind.community:cstl-database-configuration 1.0-SNAPSHOT
- com.examind.community:cstl-database-impl 1.0-SNAPSHOT
- com.examind.community:cstl-engine-spring-security 1.0-SNAPSHOT
- com.examind.community:cstl-web-api 1.0-SNAPSHOT
- com.thoughtworks.xstream:xstream
- commons-collections:commons-collections
- commons-fileupload:commons-fileupload
- org.apache.sis.non-free:sis-epsg
- org.apache.sis.storage:sis-earth-observation
- org.geotoolkit:geotk-client-osmtms
- org.geotoolkit:geotk-client-wms
- org.geotoolkit:geotk-client-wmts
- org.geotoolkit:geotk-coverage-hgt
- org.geotoolkit:geotk-coverage-xml
- org.geotoolkit:geotk-feature-csv
- org.geotoolkit:geotk-feature-gml
- org.geotoolkit:geotk-feature-mapinfo
- org.geotoolkit:geotk-feature-osm
- org.geotoolkit:geotk-feature-shapefile
- org.geotoolkit:geotk-svg-batik
- org.slf4j:jcl-over-slf4j
- org.slf4j:jul-to-slf4j
- org.slf4j:log4j-over-slf4j
- org.slf4j:slf4j-api
- org.springframework:spring-context
- org.springframework:spring-context-support
- org.springframework:spring-messaging
- org.springframework:spring-oxm
- org.springframework:spring-tx
- org.springframework:spring-webmvc
- org.springframework:spring-websocket
- org.springframework:spring-test test
- org.aspectj:aspectjrt 1.7.4 compile
- org.aspectj:aspectjweaver 1.7.4 compile
- javax.servlet:javax.servlet-api provided
- ch.qos.logback:logback-classic
- ch.qos.logback:logback-core
- com.codahale.metrics:metrics-core 3.0.1
- com.codahale.metrics:metrics-graphite 3.0.1
- com.codahale.metrics:metrics-jvm 3.0.1
- com.codahale.metrics:metrics-servlet 3.0.1
- com.codahale.metrics:metrics-servlets 3.0.1
- com.examind.community:cstl-lib-api 1.0-SNAPSHOT
- com.fasterxml.jackson.dataformat:jackson-dataformat-cbor
- com.fasterxml.jackson.datatype:jackson-datatype-hppc
- com.fasterxml.jackson.datatype:jackson-datatype-joda
- com.fasterxml.jackson.datatype:jackson-datatype-json-org
- com.ryantenney.metrics:metrics-spring
- javax.annotation:jsr250-api 1.0
- javax.servlet:jstl 1.2
- javax.validation:validation-api
- org.glassfish.hk2.external:javax.inject
- org.slf4j:jcl-over-slf4j
- org.slf4j:slf4j-api
- org.springframework.security:spring-security-config
- org.springframework.security:spring-security-core
- org.springframework.security:spring-security-crypto
- org.springframework.security:spring-security-web
- org.springframework:spring-aop
- org.springframework:spring-beans
- org.springframework:spring-context
- org.springframework:spring-context-support
- org.springframework:spring-core
- org.springframework:spring-expression
- org.springframework:spring-orm
- org.springframework:spring-tx
- org.springframework:spring-web
- org.springframework:spring-webmvc
- javax.mail:mail compile
- ch.qos.logback:logback-classic
- com.examind.community:cstl-database-api ${project.version}
- com.examind.community:cstl-database-configuration ${project.version}
- com.examind.community:cstl-database-impl ${project.version}
- com.examind.community:cstl-engine-admin ${project.version}
- com.examind.community:cstl-engine-process ${project.version}
- com.examind.community:cstl-engine-spring-security ${project.version}
- com.examind.community:cstl-lib-index-elasticsearch ${project.version}
- com.examind.community:cstl-store-data-datastore ${project.version}
- com.examind.community:cstl-store-data-observationstore ${project.version}
- com.examind.community:cstl-store-metadatainternal ${project.version}
- com.examind.community:cstl-store-metadatanetcdf ${project.version}
- com.examind.community:cstl-web-api ${project.version}
- com.examind.community:cstl-web-csw ${project.version}
- com.examind.community:cstl-web-ogc ${project.version}
- com.examind.community:cstl-web-sos ${project.version}
- com.examind.community:cstl-web-thw ${project.version}
- com.examind.community:cstl-web-wcs ${project.version}
- com.examind.community:cstl-web-wfs ${project.version}
- com.examind.community:cstl-web-wms ${project.version}
- com.examind.community:cstl-web-wmts ${project.version}
- com.examind.community:cstl-web-wps ${project.version}
- com.thoughtworks.xstream:xstream
- commons-collections:commons-collections
- commons-fileupload:commons-fileupload
- javax.media:jai_codec
- javax.media:jai_core
- org.apache.bval:org.apache.bval.bundle
- org.slf4j:jcl-over-slf4j
- org.slf4j:jul-to-slf4j
- org.slf4j:log4j-over-slf4j
- org.slf4j:slf4j-api
- org.springframework.boot:spring-boot
- org.springframework.boot:spring-boot-autoconfigure
- org.springframework.boot:spring-boot-starter-web
- org.springframework.boot:spring-boot-starter-websocket
- org.springframework:spring-context
- org.springframework:spring-context-support
- org.springframework:spring-messaging
- org.springframework:spring-oxm
- org.springframework:spring-tx
- org.springframework:spring-webmvc
- org.springframework:spring-websocket
- com.examind.community:cstl-database-model 1.0-SNAPSHOT
- javax.validation:validation-api
- org.jooq:jooq
- org.jooq:jooq-codegen
- org.jooq:jooq-meta
- org.postgresql:postgresql provided
- ch.qos.logback:logback-classic
- com.examind.community:cstl-database-model ${project.version}
- com.examind.community:cstl-lib-base ${project.version}
- com.zaxxer:HikariCP
- org.flywaydb:flyway-core
- org.geotoolkit:geotk-utility
- org.jooq:jooq
- org.springframework:spring-context
- org.springframework:spring-jdbc
- com.examind.community:cstl-database-api ${project.version}
- com.examind.community:cstl-lib-api ${project.version}
- org.springframework:spring-context
- org.springframework:spring-tx
- com.examind.community:cstl-database-configuration ${project.version} test
- com.examind.community:cstl-test-data ${project.version} test
- junit:junit test
- org.springframework:spring-test test
- com.zaxxer:HikariCP
- org.flywaydb:flyway-core
- org.jooq:jooq
- org.jooq:jooq-codegen
- com.fasterxml.jackson.core:jackson-databind
- jakarta.xml.bind:jakarta.xml.bind-api
- javax.validation:validation-api
- com.examind.community:cstl-json-common ${project.version}
- com.examind.community:cstl-lib-base ${project.version}
- com.fasterxml.jackson.core:jackson-databind
- org.apache.sis.core:sis-metadata
- org.geotoolkit:geotk-xml-csw
- org.geotoolkit:geotk-xml-sensorML
- org.springframework:spring-context
- com.examind.community:cstl-test-data ${project.version} test
- com.examind.community:cstl-json-common ${project.version}
- com.examind.community:cstl-lib-api ${project.version}
- com.fasterxml.jackson.core:jackson-annotations
- com.fasterxml.jackson.core:jackson-core
- com.fasterxml.jackson.core:jackson-databind
- org.geotoolkit:geotk-render2d
- org.springframework:spring-context
- com.examind.community:cstl-engine-templating ${project.version}
- com.examind.community:cstl-json-common ${project.version}
- com.examind.community:cstl-json-metadata ${project.version}
- com.examind.community:cstl-lib-api ${project.version}
- com.examind.community:cstl-lib-base ${project.version}
- com.examind.community:cstl-store-provider ${project.version}
- com.google.guava:guava
- commons-codec:commons-codec
- commons-io:commons-io
- net.java.dev.stax-utils:stax-utils
- org.apache.commons:commons-email
- org.geotoolkit:geotk-client-wms
- org.geotoolkit:geotk-client-wps
- org.geotoolkit:geotk-coverage-geotiff
- org.geotoolkit:geotk-coverage-xml
- org.geotoolkit:geotk-xml-ebrim
- org.glassfish.hk2.external:javax.inject
- org.springframework.security:spring-security-core
- org.springframework:spring-context
- org.springframework:spring-messaging
- org.springframework:spring-tx
- org.springframework:spring-websocket
- com.examind.community:cstl-database-configuration ${project.version} test
- com.examind.community:cstl-database-impl ${project.version} test
- com.examind.community:cstl-engine-process ${project.version} test
- com.examind.community:cstl-engine-spring-security ${project.version} test
- com.examind.community:cstl-store-data-datastore ${project.version} test
- com.examind.community:cstl-store-data-sensor ${project.version} test
- com.examind.community:cstl-store-metadatainternal ${project.version} test
- com.examind.community:cstl-test-data ${project.version} test
- org.opengis:geoapi-conformance test
- org.springframework:spring-test test
- com.examind.community:cstl-lib-base ${project.version}
- com.examind.community:cstl-store-provider ${project.version}
- com.fasterxml.jackson.dataformat:jackson-dataformat-yaml
- org.geotoolkit:geotk-coverage-xml
- org.geotoolkit:geotk-processing-core
- org.geotoolkit:geotk-render2d
- com.examind.community:cstl-database-configuration ${project.version} test
- com.examind.community:cstl-engine-spring-security ${project.version} test
- com.examind.community:cstl-test-data ${project.version} test
- org.springframework:spring-test test
- com.examind.community:cstl-lib-api ${project.version}
- com.examind.community:cstl-lib-base ${project.version}
- javax.servlet:javax.servlet-api
- org.springframework.security:spring-security-config
- org.springframework.security:spring-security-core
- org.springframework.security:spring-security-web
- org.springframework:spring-aop
- org.springframework:spring-beans
- org.springframework:spring-context
- com.examind.community:cstl-lib-base ${project.version}
- org.codehaus.groovy:groovy-all
- org.geotoolkit:geotk-utility
- com.examind.community:cstl-engine-process ${project.version}
- com.examind.community:cstl-web-sensor ${project.version}
- com.opencsv:opencsv 3.1
- org.geotoolkit:geotk-feature-csv
- org.geotoolkit:geotk-feature-dbf
- org.geotoolkit:geotk-observation-store
- com.examind.community:cstl-database-impl ${project.version} test
- com.examind.community:cstl-engine-admin ${project.version} test
- com.examind.community:cstl-store-data-observationstore ${project.version} test
- com.examind.community:cstl-store-data-sensor ${project.version} test
- com.examind.community:cstl-test-data ${project.version} test
- com.examind.community:cstl-web-sos ${project.version} test
- com.examind.community:cstl-web-sts ${project.version} test
- com.examind.community:cstl-web-wps ${project.version} test
- com.examind.community:cstl-json-common ${project.version}
- org.apache.sis.core:sis-metadata
- com.examind.community:cstl-lib-api ${project.version}
- com.fasterxml.jackson.core:jackson-core
- com.fasterxml.jackson.core:jackson-databind
- com.google.guava:guava
- com.zaxxer:HikariCP
- javax.servlet:javax.servlet-api
- org.apache.commons:commons-lang3
- org.apache.sis.core:sis-metadata
- org.geotoolkit:geotk-jaxp-core
- org.geotoolkit:geotk-utility
- org.springframework:spring-context
- org.springframework:spring-tx
- org.geotoolkit:geotk-xml-ebrim test
- com.examind.community:cstl-lib-api ${project.version}
- org.geotoolkit:geotk-feature
- org.geotoolkit:geotk-spatial-lucene
- org.geotoolkit:geotk-xml-csw
- com.examind.community:cstl-test-data ${project.version} test
- com.examind.community:cstl-lib-api ${project.version}
- com.examind.community:cstl-lib-filter ${project.version}
- org.geotoolkit:geotk-index
- org.geotoolkit:geotk-metadata-store
- com.examind.community:cstl-lib-base ${project.version} test
- com.examind.community:cstl-lib-base ${project.version}
- com.examind.community:cstl-lib-filter ${project.version}
- com.examind.community:cstl-lib-index-base ${project.version}
- com.examind.community:cstl-store-metadata ${project.version}
- org.elasticsearch.client:elasticsearch-rest-client
- org.elasticsearch.client:elasticsearch-rest-high-level-client
- org.geotoolkit:geotk-index
- com.examind.community:cstl-test-data ${project.version} test
- com.examind.community:cstl-lib-api ${project.version}
- com.examind.community:cstl-lib-base ${project.version}
- com.examind.community:cstl-lib-index-base ${project.version}
- com.examind.community:cstl-store-metadata ${project.version}
- org.geotoolkit:geotk-spatial-lucene
- com.examind.community:cstl-database-configuration ${project.version} test
- com.examind.community:cstl-test-data ${project.version} test
- org.postgresql:postgresql compile
- com.examind.community:cstl-lib-api ${project.version}
- com.examind.community:cstl-store-provider ${project.version}
- javax.media:jai_codec
- javax.media:jai_core
- org.geotoolkit:geotk-client-wms
- org.geotoolkit:geotk-observation-store
- org.geotoolkit:geotk-processing
- org.geotoolkit:geotk-render
- com.examind.community:cstl-test-data ${project.version} test
- com.examind.community:cstl-store-provider ${project.version}
- org.geotoolkit:geotk-feature-om
- org.geotoolkit:geotk-observation-store
- com.examind.community:cstl-test-data ${project.version} test
- org.apache.derby:derby test
- org.geotoolkit:geotk-storage test
- org.postgresql:postgresql test
- com.examind.community:cstl-store-data-observationstore ${project.version}
- org.geotoolkit:geotk-feature-om
- org.geotoolkit:geotk-spatial-lucene
- com.examind.community:cstl-store-provider ${project.version}
- org.geotoolkit:geotk-observation-store
- org.geotoolkit:geotk-xml-sensorML
- com.examind.community:cstl-lib-api ${project.version}
- com.examind.community:cstl-lib-base ${project.version}
- com.examind.community:cstl-store-provider ${project.version}
- org.geotoolkit:geotk-metadata-store
- com.examind.community:cstl-test-data ${project.version} test
- com.examind.community:cstl-store-metadata ${project.version}
- com.examind.community:cstl-test-data ${project.version} test
- com.examind.community:cstl-store-metadata ${project.version}
- com.examind.community:cstl-database-configuration ${project.version} test
- com.examind.community:cstl-database-impl ${project.version} test
- com.examind.community:cstl-test-data ${project.version} test
- com.examind.community:cstl-store-metadata ${project.version}
- org.apache.sis.storage:sis-netcdf
- org.geotoolkit:geotk-xml-ebrim
- com.examind.community:cstl-test-data ${project.version} test
- org.postgresql:postgresql compile
- com.examind.community:cstl-lib-api ${project.version}
- com.examind.community:cstl-lib-base ${project.version}
- org.apache.sis.core:sis-portrayal
- org.geotoolkit:geotk-storage
- org.geotoolkit:geotk-xml-feature-catalogue
- org.springframework:spring-test test
- com.zaxxer:HikariCP
- org.apache.sis.storage:sis-sqlstore
- org.geotoolkit:geotk-storage
- junit:junit compile
- org.apache.sis.core:sis-metadata compile
- org.apache.sis.core:sis-utility compile
- com.examind.community:cstl-database-configuration ${project.version}
- com.examind.community:cstl-engine-spring-security ${project.version}
- com.examind.community:cstl-lib-api ${project.version}
- com.examind.community:cstl-lib-base ${project.version}
- com.examind.community:cstl-store-provider ${project.version}
- org.apache.sis.profiles:sis-french-profile
- org.geotoolkit:geotk-coverage-geotiff
- org.geotoolkit:geotk-coverage-worldfile
- org.geotoolkit:geotk-feature-shapefile
- org.geotoolkit:geotk-index
- org.geotoolkit:geotk-temporal
- org.geotoolkit:geotk-xml-ebrim
- org.geotoolkit:geotk-xml-feature-catalogue
- org.geotoolkit:geotk-xml-sensorML
- org.springframework:spring-test
- junit:junit compile
- org.apache.sis.core:sis-metadata compile
- org.apache.sis.core:sis-utility compile
- javax.servlet:javax.servlet-api provided
- com.examind.community:cstl-database-configuration ${project.version}
- com.examind.community:cstl-json-style ${project.version}
- com.examind.community:cstl-store-data-datastore ${project.version}
- com.examind.community:cstl-test-data ${project.version}
- com.examind.community:cstl-web-ogc ${project.version}
- com.thoughtworks.xstream:xstream
- org.apache.bval:org.apache.bval.bundle
- org.apache.derby:derby
- org.postgresql:postgresql
- org.springframework.boot:spring-boot
- org.springframework.boot:spring-boot-autoconfigure
- org.springframework.boot:spring-boot-starter-web
- org.springframework.boot:spring-boot-starter-websocket
- org.springframework:spring-context
- org.springframework:spring-context-support
- org.springframework:spring-oxm
- org.springframework:spring-webmvc
- com.examind.community:cstl-engine-spring-security ${project.version} test
- com.codahale.metrics:metrics-core ${codahale.metrics.version}
- com.codahale.metrics:metrics-graphite ${codahale.metrics.version}
- com.codahale.metrics:metrics-jvm ${codahale.metrics.version}
- com.codahale.metrics:metrics-servlet ${codahale.metrics.version}
- com.codahale.metrics:metrics-servlets ${codahale.metrics.version}
- com.examind.community:cstl-engine-admin ${project.version}
- com.examind.community:cstl-engine-process ${project.version}
- com.examind.community:cstl-engine-spring-security ${project.version}
- com.examind.community:cstl-json-common ${project.version}
- com.examind.community:cstl-json-metadata ${project.version}
- com.examind.community:cstl-json-style ${project.version}
- com.examind.community:cstl-lib-api ${project.version}
- com.examind.community:cstl-lib-base ${project.version}
- com.examind.community:cstl-store-data-datastore ${project.version}
- com.examind.community:cstl-store-provider ${project.version}
- com.examind.community:cstl-web-base ${project.version}
- com.ryantenney.metrics:metrics-spring
- javax.servlet:javax.servlet-api
- org.geotoolkit:geotk-xml-owc
- org.springframework.security:spring-security-core
- org.springframework:spring-oxm
- org.springframework:spring-webmvc
- com.examind.community:cstl-database-configuration ${project.version} test
- com.examind.community:cstl-database-impl ${project.version} test
- com.examind.community:cstl-store-data-observationstore ${project.version} test
- com.examind.community:cstl-store-data-sensor ${project.version} test
- com.examind.community:cstl-test-data ${project.version} test
- com.examind.community:cstl-test-embedded ${project.version} test
- org.slf4j:jul-to-slf4j compile
- org.slf4j:slf4j-api compile
- ch.qos.logback:logback-classic
- com.examind.community:cstl-lib-base ${project.version}
- com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider
- commons-io:commons-io
- javax.servlet:javax.servlet-api
- org.geotoolkit:geotk-coverage ${geotoolkit.version}
- org.springframework:spring-messaging
- org.glassfish.jaxb:jaxb-runtime compile
- com.examind.community:cstl-json-metadata ${project.version}
- com.examind.community:cstl-lib-api ${project.version}
- com.examind.community:cstl-lib-filter ${project.version}
- com.examind.community:cstl-lib-index-base ${project.version}
- com.examind.community:cstl-lib-index-generic ${project.version}
- com.examind.community:cstl-store-metadata ${project.version}
- com.examind.community:cstl-store-metadatafile ${project.version}
- com.examind.community:cstl-web-ogc ${project.version}
- javax.mail:mail
- javax.servlet:javax.servlet-api
- org.apache.sis.profiles:sis-french-profile
- org.codehaus.woodstox:woodstox-core-asl
- org.geotoolkit:geotk-temporal
- org.geotoolkit:geotk-xml-ebrim
- org.geotoolkit:geotk-xml-feature-catalogue
- org.geotoolkit:geotk-xml-opensearch
- org.geotoolkit:geotk-xml-xsd
- com.examind.community:cstl-database-configuration ${project.version} test
- com.examind.community:cstl-database-impl ${project.version} test
- com.examind.community:cstl-engine-admin ${project.version} test
- com.examind.community:cstl-engine-spring-security ${project.version} test
- com.examind.community:cstl-store-metadatainternal ${project.version} test
- com.examind.community:cstl-store-metadatanetcdf ${project.version} test
- com.examind.community:cstl-test-data ${project.version} test
- com.examind.community:cstl-test-embedded ${project.version} test
- org.apache.sis.core:sis-metadata test
- org.apache.sis.core:sis-referencing test
- org.apache.sis.core:sis-utility test
- org.geotoolkit:geotk-xml-sensorML test
- com.examind.community:cstl-engine-admin ${project.version}
- com.examind.community:cstl-engine-process ${project.version}
- com.examind.community:cstl-json-metadata ${project.version}
- com.examind.community:cstl-json-style ${project.version}
- com.examind.community:cstl-lib-api ${project.version}
- com.examind.community:cstl-web-ogc ${project.version}
- javax.servlet:javax.servlet-api
- org.geotoolkit:geotk-client-wmts
- org.geotoolkit:geotk-xml-wmts
- com.examind.community:cstl-database-configuration ${project.version} test
- com.examind.community:cstl-database-impl ${project.version} test
- com.examind.community:cstl-engine-process ${project.version} test
- com.examind.community:cstl-engine-spring-security ${project.version} test
- com.examind.community:cstl-store-data-datastore ${project.version} test
- org.geotoolkit:geotk-feature-csv test
- org.geotoolkit:geotk-feature-shapefile test
- org.springframework:spring-test test
- com.examind.community:cstl-lib-api ${project.version}
- com.examind.community:cstl-lib-base ${project.version}
- com.examind.community:cstl-web-base ${project.version}
- javax.servlet:javax.servlet-api
- org.geotoolkit:geotk-xml-ows
- com.examind.community:cstl-engine-process ${project.version} test
- com.examind.community:cstl-test-data ${project.version} test
- com.examind.community:cstl-store-provider ${project.version}
- com.examind.community:cstl-web-ogc ${project.version}
- org.codehaus.jettison:jettison
- org.geotoolkit:geotk-xml-sos
- com.examind.community:cstl-lib-api ${project.version}
- com.examind.community:cstl-store-provider ${project.version}
- com.examind.community:cstl-web-sensor ${project.version}
- org.geotoolkit:geotk-xml-sensorML
- org.geotoolkit:geotk-xml-sos
- com.examind.community:cstl-database-configuration ${project.version} test
- com.examind.community:cstl-database-impl ${project.version} test
- com.examind.community:cstl-engine-admin ${project.version} test
- com.examind.community:cstl-engine-spring-security ${project.version} test
- com.examind.community:cstl-store-data-om-lucene ${project.version} test
- com.examind.community:cstl-store-data-sensor ${project.version} test
- com.examind.community:cstl-test-data ${project.version} test
- com.examind.community:cstl-test-embedded ${project.version} test
- org.antlr:antlr4-runtime ${antlr.version} compile
- com.examind.community:cstl-web-sensor ${project.version}
- javax.servlet:javax.servlet-api
- org.geotoolkit:geotk-feature-geojson
- org.geotoolkit:geotk-observation-store
- org.geotoolkit:geotk-xml-ogc
- org.geotoolkit:geotk-xml-om
- org.geotoolkit:geotk-xml-sts
- com.examind.community:cstl-database-configuration ${project.version} test
- com.examind.community:cstl-database-impl ${project.version} test
- com.examind.community:cstl-engine-admin ${project.version} test
- com.examind.community:cstl-engine-spring-security ${project.version} test
- com.examind.community:cstl-store-data-observationstore ${project.version} test
- com.examind.community:cstl-store-data-sensor ${project.version} test
- com.examind.community:cstl-test-data ${project.version} test
- com.examind.community:cstl-test-embedded ${project.version} test
- org.apache.derby:derby test
- org.geotoolkit:geotk-jaxp-core test
- org.postgresql:postgresql test
- javax.servlet:javax.servlet-api provided
- com.examind.community:cstl-json-common ${project.version}
- com.examind.community:cstl-web-ogc ${project.version}
- org.geotoolkit:geotk-xml-csw
- org.geotoolkit:geotk-xml-skos
- org.geotoolkit:geotk-xml-thw
- javax.servlet:javax.servlet-api provided
- com.examind.community:cstl-web-map ${project.version}
- javax.media:jai_codec
- javax.media:jai_core
- org.geotoolkit:geotk-coverage-geotiff
- org.geotoolkit:geotk-xml-wcs
- com.examind.community:cstl-database-configuration ${project.version} test
- com.examind.community:cstl-database-impl ${project.version} test
- com.examind.community:cstl-engine-admin ${project.version} test
- com.examind.community:cstl-engine-process ${project.version} test
- com.examind.community:cstl-engine-spring-security ${project.version} test
- com.examind.community:cstl-test-data ${project.version} test
- com.examind.community:cstl-test-embedded ${project.version} test
- com.examind.community:cstl-web-map ${project.version} test
- javax.servlet:javax.servlet-api provided
- com.examind.community:cstl-web-map ${project.version}
- javax.media:jai_codec
- javax.media:jai_core
- org.geotoolkit:geotk-feature
- org.geotoolkit:geotk-feature-geojson
- org.geotoolkit:geotk-jaxp-gml
- org.geotoolkit:geotk-xml-wfs
- org.geotoolkit:geotk-xml-xsd
- com.examind.community:cstl-database-configuration ${project.version} test
- com.examind.community:cstl-database-impl ${project.version} test
- com.examind.community:cstl-engine-admin ${project.version} test
- com.examind.community:cstl-engine-process ${project.version} test
- com.examind.community:cstl-engine-spring-security ${project.version} test
- com.examind.community:cstl-store-data-observationstore ${project.version} test
- com.examind.community:cstl-test-data ${project.version} test
- com.examind.community:cstl-test-embedded ${project.version} test
- com.examind.community:cstl-web-map ${project.version} test
- org.apache.derby:derby test
- org.geotoolkit:geotk-feature-gml test
- org.geotoolkit:geotk-jaxp-core test
- org.json:json test
- org.postgresql:postgresql test
- javax.servlet:javax.servlet-api provided
- com.examind.community:cstl-web-map ${project.version}
- javax.media:jai_codec
- javax.media:jai_core
- org.geotoolkit:geotk-render2d
- org.geotoolkit:geotk-xml-wms
- com.examind.community:cstl-database-configuration ${project.version} test
- com.examind.community:cstl-database-impl ${project.version} test
- com.examind.community:cstl-engine-admin ${project.version} test
- com.examind.community:cstl-engine-process ${project.version} test
- com.examind.community:cstl-engine-spring-security ${project.version} test
- com.examind.community:cstl-test-data ${project.version} test
- com.examind.community:cstl-test-embedded ${project.version} test
- com.examind.community:cstl-web-map ${project.version} test
- org.apache.sis.storage:sis-netcdf test
- javax.servlet:javax.servlet-api provided
- com.examind.community:cstl-web-map ${project.version}
- org.geotoolkit:geotk-xml-wmts
- com.examind.community:cstl-database-configuration ${project.version} test
- com.examind.community:cstl-database-impl ${project.version} test
- com.examind.community:cstl-engine-admin ${project.version} test
- com.examind.community:cstl-engine-process ${project.version} test
- com.examind.community:cstl-engine-spring-security ${project.version} test
- com.examind.community:cstl-store-data-datastore ${project.version} test
- com.examind.community:cstl-test-data ${project.version} test
- com.examind.community:cstl-test-embedded ${project.version} test
- com.examind.community:cstl-web-map ${project.version} test
- javax.servlet:javax.servlet-api provided
- com.examind.community:cstl-lib-api ${project.version}
- com.examind.community:cstl-web-ogc ${project.version}
- com.examind.community:wps-logic ${project.version}
- org.codehaus.jettison:jettison
- org.geotoolkit:geotk-client-wps
- org.geotoolkit:geotk-feature-geojson
- org.geotoolkit:geotk-jaxp-gml
- org.geotoolkit:geotk-processing-core
- org.geotoolkit:geotk-xml-wps
- com.examind.community:cstl-database-configuration ${project.version} test
- com.examind.community:cstl-database-impl ${project.version} test
- com.examind.community:cstl-engine-admin ${project.version} test
- com.examind.community:cstl-engine-spring-security ${project.version} test
- com.examind.community:cstl-test-embedded ${project.version} test
- com.codahale.metrics:metrics-annotation 3.0.1
- org.glassfish.hk2.external:javax.inject
- org.springframework:spring-context
- org.springframework:spring-web
- com.examind.community:cstl-test-data ${project.version} test
- com.examind.community:cstl-engine-process ${project.version}
- com.examind.community:cstl-store-provider ${project.version}
- com.examind.community:cstl-web-ogc ${project.version}
- com.fasterxml.jackson.dataformat:jackson-dataformat-yaml
- org.geotoolkit:geotk-client-wps
- org.geotoolkit:geotk-xml-wps
- com.ryantenney.metrics:metrics-spring 3.0.0-RC2
- com.thoughtworks.xstream:xstream 1.4.18
- commons-codec:commons-codec 1.6
- commons-collections:commons-collections 3.2.2
- commons-fileupload:commons-fileupload 1.3.3
- javax.annotation:javax.annotation-api
- javax.mail:mail 1.4.7
- javax.validation:validation-api 2.0.1.Final
- net.java.dev.stax-utils:stax-utils 20060502
- net.postgis:postgis-jdbc
- org.apache.bval:org.apache.bval.bundle 1.1.2
- org.apache.commons:commons-email 1.2
- org.apache.derby:derby
- org.apache.sis.core:sis-portrayal ${sis.version}
- org.apache.sis.storage:sis-sqlstore ${sis.version}
- org.codehaus.jettison:jettison 1.3
- org.codehaus.woodstox:woodstox-core-asl 4.1.2
- org.flywaydb:flyway-core 4.2.0
- org.geotoolkit:geotk-client-csw ${geotoolkit.version}
- org.geotoolkit:geotk-client-ncwms ${geotoolkit.version}
- org.geotoolkit:geotk-client-osm ${geotoolkit.version}
- org.geotoolkit:geotk-client-osmtms ${geotoolkit.version}
- org.geotoolkit:geotk-client-sos ${geotoolkit.version}
- org.geotoolkit:geotk-client-store ${geotoolkit.version}
- org.geotoolkit:geotk-client-wcs ${geotoolkit.version}
- org.geotoolkit:geotk-client-wfs ${geotoolkit.version}
- org.geotoolkit:geotk-client-wms ${geotoolkit.version}
- org.geotoolkit:geotk-client-wmts ${geotoolkit.version}
- org.geotoolkit:geotk-client-wps ${geotoolkit.version}
- org.geotoolkit:geotk-coverage-geotiff ${geotoolkit.version}
- org.geotoolkit:geotk-coverage-hgt ${geotoolkit.version}
- org.geotoolkit:geotk-coverage-sql ${geotoolkit.version}
- org.geotoolkit:geotk-coverage-worldfile ${geotoolkit.version}
- org.geotoolkit:geotk-coverage-xml ${geotoolkit.version}
- org.geotoolkit:geotk-feature ${geotoolkit.version}
- org.geotoolkit:geotk-feature-csv ${geotoolkit.version}
- org.geotoolkit:geotk-feature-dbf ${geotoolkit.version}
- org.geotoolkit:geotk-feature-geojson ${geotoolkit.version}
- org.geotoolkit:geotk-feature-gml ${geotoolkit.version}
- org.geotoolkit:geotk-feature-gpx ${geotoolkit.version}
- org.geotoolkit:geotk-feature-kml ${geotoolkit.version}
- org.geotoolkit:geotk-feature-mapinfo ${geotoolkit.version}
- org.geotoolkit:geotk-feature-om ${geotoolkit.version}
- org.geotoolkit:geotk-feature-osm ${geotoolkit.version}
- org.geotoolkit:geotk-feature-shapefile ${geotoolkit.version}
- org.geotoolkit:geotk-index ${geotoolkit.version}
- org.geotoolkit:geotk-jasperreport ${geotoolkit.version}
- org.geotoolkit:geotk-jaxp-core ${geotoolkit.version}
- org.geotoolkit:geotk-jaxp-gml ${geotoolkit.version}
- org.geotoolkit:geotk-metadata-sql ${geotoolkit.version}
- org.geotoolkit:geotk-metadata-store ${geotoolkit.version}
- org.geotoolkit:geotk-observation-store ${geotoolkit.version}
- org.geotoolkit:geotk-processing ${geotoolkit.version}
- org.geotoolkit:geotk-processing-core ${geotoolkit.version}
- org.geotoolkit:geotk-render ${geotoolkit.version}
- org.geotoolkit:geotk-render2d ${geotoolkit.version}
- org.geotoolkit:geotk-spatial-lucene ${geotoolkit.version}
- org.geotoolkit:geotk-storage ${geotoolkit.version}
- org.geotoolkit:geotk-style ${geotoolkit.version}
- org.geotoolkit:geotk-svg-batik ${geotoolkit.version}
- org.geotoolkit:geotk-temporal ${geotoolkit.version}
- org.geotoolkit:geotk-utility ${geotoolkit.version}
- org.geotoolkit:geotk-utility-jdbc ${geotoolkit.version}
- org.geotoolkit:geotk-xml-csw ${geotoolkit.version}
- org.geotoolkit:geotk-xml-ebrim ${geotoolkit.version}
- org.geotoolkit:geotk-xml-feature-catalogue ${geotoolkit.version}
- org.geotoolkit:geotk-xml-gml ${geotoolkit.version}
- org.geotoolkit:geotk-xml-ogc ${geotoolkit.version}
- org.geotoolkit:geotk-xml-om ${geotoolkit.version}
- org.geotoolkit:geotk-xml-opensearch ${geotoolkit.version}
- org.geotoolkit:geotk-xml-owc ${geotoolkit.version}
- org.geotoolkit:geotk-xml-ows ${geotoolkit.version}
- org.geotoolkit:geotk-xml-providers ${geotoolkit.version}
- org.geotoolkit:geotk-xml-sensorML ${geotoolkit.version}
- org.geotoolkit:geotk-xml-skos ${geotoolkit.version}
- org.geotoolkit:geotk-xml-sld ${geotoolkit.version}
- org.geotoolkit:geotk-xml-sos ${geotoolkit.version}
- org.geotoolkit:geotk-xml-sts ${geotoolkit.version}
- org.geotoolkit:geotk-xml-thw ${geotoolkit.version}
- org.geotoolkit:geotk-xml-wcs ${geotoolkit.version}
- org.geotoolkit:geotk-xml-wfs ${geotoolkit.version}
- org.geotoolkit:geotk-xml-wmc ${geotoolkit.version}
- org.geotoolkit:geotk-xml-wms ${geotoolkit.version}
- org.geotoolkit:geotk-xml-wmts ${geotoolkit.version}
- org.geotoolkit:geotk-xml-wps ${geotoolkit.version}
- org.geotoolkit:geotk-xml-xacml ${geotoolkit.version}
- org.geotoolkit:geotk-xml-xsd ${geotoolkit.version}
- org.glassfish.hk2.external:javax.inject 2.3.0-b10
- org.opengis:geoapi-pending
- org.postgresql:postgresql
- com.google.jimfs:jimfs test
- junit:junit test
- org.apache.sis.core:sis-metadata test
- org.apache.sis.core:sis-utility test
- org.apache.sis.non-free:sis-epsg test
- org.geotoolkit:geotk-maven-report ${geotoolkit.version} test
- org.geotoolkit:geotk-utility test
- org.hsqldb:hsqldb test
- org.json:json 20180130 test
- org.opengis:geoapi-conformance test
- grunt 0.4.5 development
- grunt-cli 0.1.13 development
- grunt-contrib-clean 0.5.0 development
- grunt-contrib-concat 0.4.0 development
- grunt-contrib-copy 0.5.0 development
- grunt-contrib-htmlmin 0.4.0 development
- grunt-contrib-jshint 0.10.0 development
- grunt-contrib-less 0.11.0 development
- grunt-contrib-uglify 0.4.0 development
- grunt-contrib-watch 0.6.1 development
- grunt-html2js 0.3.5 development
- grunt-ng-annotate 0.2.3 development
- angularjs-slider 6.5.0
- animejs 2.2.0
- moment 2.21.0
- images.geomatys.com/examind/examind-community latest
- mdillon/postgis 10-alpine
- tomcat 9.0.59-jdk17-temurin build
- com.examind.community:cstl-database-api ${project.version}
- com.examind.community:cstl-engine-spring-security ${project.version}
- com.examind.community:cstl-lib-api ${project.version}
- com.fasterxml.jackson.core:jackson-databind
- javax.servlet:javax.servlet-api
- org.apache.httpcomponents:httpclient
- org.springframework:spring-webmvc
- org.apache.sis.core:sis-feature ${sis.version}
- org.apache.sis.storage:sis-storage ${sis.version}
- org.geotoolkit:geotk-feature ${geotoolkit.version}
- com.zaxxer:HikariCP test
- org.apache.sis.storage:sis-sqlstore test
- org.geotoolkit:geotk-storage ${geotoolkit.version} test
- com.examind.community:cstl-engine-process ${project.version}
- com.examind.community:cstl-lib-base ${project.version}
- com.examind.community:cstl-store-data-datastore ${project.version}
- com.examind.community:examind-engine-heat-map ${project.version}
- org.geotoolkit:geotk-processing-core
- org.apache.sis.cloud:sis-cloud-aws ${sis.version}