https://github.com/52north/arctic-sea
Framework for developing OGC services, clients and middleware
Science Score: 23.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
-
○DOI references
-
○Academic publication links
-
✓Committers with academic emails
2 of 18 committers (11.1%) from academic institutions -
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (8.5%) to scientific vocabulary
Keywords
Keywords from Contributors
Repository
Framework for developing OGC services, clients and middleware
Basic Info
Statistics
- Stars: 30
- Watchers: 7
- Forks: 42
- Open Issues: 35
- Releases: 52
Topics
Metadata Files
README.md
Arctic Sea
Description
52°North's backbone for OGC services, Clients and Middleware
A framework for developing OGC services, clients and middleware sharing concepts for encoding and decoding of different formats and encodings, workflows and configuration.
Arctic Sea is a stack of projects that eases the development of OGC related services such as the 52°North implementation of the OGC SOS and WPS, as well as clients and middleware. It compromises the following modules.

Iceland 
Iceland is a service framework that enables the development of OGC RPC (remote procedure call) based services. It features bindings for KVP, POX, SOAP, as well as JSON-based bindings. Iceland facilitates the rapid development of modular services that use Faroe for easy configuration and Svalbard for request parsing and response generation.
Svalbard 
Svalbard consists of various decoders and encoders for OGC models (e.g. SensorML, O&M and SWE Common, service interfaces (like SOS and WPS) and a framework for developing these. This enables the creation of decoupled and reusable encoders and decoders for various encodings (e.g. XML, JSON or NetCDF). The object models used are found in 52°North Shetland and are shared across 52°North components.
Faroe 
Faroe is a configuration API currently featuring a JSON and a SQLite backend. It enables the injection and automatic configuration of settings of various types in classes, including a Spring BeanPostprocessor.
Shetland 
Shetland consists of classes for OGC models like SensorML, O&M and SWE Common and various service requests and responses. These are shared across different service implementations.
Jan Mayen 
Jan Mayen contains various utility classes shared throughout Arctic Sea.
Bjørnøya (Bjornoya) 
Bjørnøya contains various classes for [Quartz] scheduling shared across Arctic Sea. These include configurations to define the execution of jobs.
Key Technologies
- OGC Web Services
- OGC Web Processing Service (WPS)
- OGC Sensor Observation Service (SOS)
- OGC SWE Common
- OGC SensorML
- OGC Observation and Measurement (O&M)
- Spring
- Java
- XML
Benefits
- The middleware component provides a robust layer to easily create web services compliant to OGC standards.
- The configuration API enables harmonized management of service properties.
- Centralized XML encoding and decoding reduces increases stability.
License
All components are licensed under the Apache License 2.0.
Changelog
... can be found on the release page.
Quick Start
All projects are available on Maven Central.
xml
<properties>
<version.arctic-sea>10.1.0</version.arctic-sea>
</properties>
<dependencies>
<dependency>
<groupId>org.n52.arctic-sea</groupId>
<artifactId>bjornoya</artifactId>
<version>${version.arctic-sea}</version>
</dependency>
<dependency>
<groupId>org.n52.arctic-sea</groupId>
<artifactId>faroe</artifactId>
<version>${version.arctic-sea}</version>
</dependency>
<dependency>
<groupId>org.n52.arctic-sea</groupId>
<artifactId>faroe-annotations</artifactId>
<version>${version.arctic-sea}</version>
</dependency>
<dependency>
<groupId>org.n52.arctic-sea</groupId>
<artifactId>faroe-json</artifactId>
<version>${version.arctic-sea}</version>
</dependency>
<dependency>
<groupId>org.n52.arctic-sea</groupId>
<artifactId>faroe-utils</artifactId>
<version>${version.arctic-sea}</version>
</dependency>
<dependency>
<groupId>org.n52.arctic-sea</groupId>
<artifactId>iceland</artifactId>
<version>${version.arctic-sea}</version>
</dependency>
<dependency>
<groupId>org.n52.arctic-sea</groupId>
<artifactId>iceland-statistics</artifactId>
<version>${version.arctic-sea}</version>
</dependency>
<dependency>
<groupId>org.n52.arctic-sea</groupId>
<artifactId>iceland-statistics-generator</artifactId>
<version>${version.arctic-sea}</version>
</dependency>
<dependency>
<groupId>org.n52.arctic-sea</groupId>
<artifactId>iceland-statistics-geolocation</artifactId>
<version>${version.arctic-sea}</version>
</dependency>
<dependency>
<groupId>org.n52.arctic-sea</groupId>
<artifactId>iceland-statistics-kibana</artifactId>
<version>${version.arctic-sea}</version>
</dependency>
<dependency>
<groupId>org.n52.arctic-sea</groupId>
<artifactId>janmayen</artifactId>
<version>${version.arctic-sea}</version>
</dependency>
<dependency>
<groupId>org.n52.arctic-sea</groupId>
<artifactId>shetland</artifactId>
<version>${version.arctic-sea}</version>
</dependency>
<dependency>
<groupId>org.n52.arctic-sea</groupId>
<artifactId>shetland-rdf</artifactId>
<version>${version.arctic-sea}</version>
</dependency>
<dependency>
<groupId>org.n52.arctic-sea</groupId>
<artifactId>shetland-arcgis</artifactId>
<version>${version.arctic-sea}</version>
</dependency>
<dependency>
<groupId>org.n52.arctic-sea</groupId>
<artifactId>svalbard</artifactId>
<version>${version.arctic-sea}</version>
</dependency>
<dependency>
<groupId>org.n52.arctic-sea</groupId>
<artifactId>svalbard-exi</artifactId>
<version>${version.arctic-sea}</version>
</dependency>
<dependency>
<groupId>org.n52.arctic-sea</groupId>
<artifactId>svalbard-json</artifactId>
<version>${version.arctic-sea}</version>
</dependency>
<dependency>
<groupId>org.n52.arctic-sea</groupId>
<artifactId>svalbard-json-common</artifactId>
<version>${version.arctic-sea}</version>
</dependency>
<dependency>
<groupId>org.n52.arctic-sea</groupId>
<artifactId>svalbard-odata</artifactId>
<version>${version.arctic-sea}</version>
</dependency>
<dependency>
<groupId>org.n52.arctic-sea</groupId>
<artifactId>svalbard-xmlbeans</artifactId>
<version>${version.arctic-sea}</version>
</dependency>
<dependency>
<groupId>org.n52.arctic-sea</groupId>
<artifactId>svalbard-xmlstream</artifactId>
<version>${version.arctic-sea}</version>
</dependency>
</dependencies>
For convenience the 52°North Maven parent can be used:
xml
<parent>
<groupId>org.n52</groupId>
<artifactId>parent</artifactId>
<version>27</version>
</parent>
Development versions can be optained from the Sonatype OSS snapshot repository:
xml
<repositories>
<repository>
<id>sonatype-nexus-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<properties>
<version.arctic-sea>8.2.0-SNAPSHOT</version.arctic-sea>
</properties>
For details on how to use the components, consult their respective documentation.
Contact
If you encounter any issues with the software or if you would like to see certain functionality added, let us know:
- Christian Autermann (c.autermann@52north.org)
Support
You can get support in the community mailing list.
Contribute
Are you interested in contributing to the 52°North Arctic Sea and you would like to pull your changes to the 52N repository to have them available to all?
In that case we need your official permission and for this purpose we have a so-called contributors license agreement (CLA) in place. With this agreement you grant us the rights to use and publish your code under an open source license.
A link to the contributors license agreement and further explanations are available here.
References
The development of the 52°North Arctic Sea implementation was supported by several organizations and projects. Among other we would like to thank the following organizations and project
| Project/Logo | Description |
| :-------------: | :------------- |
|
| The development of this version of 52°North Arctic Sea was supported by the Horizon 2020 research project Cos4Cloud (co-funded by the European Commission under the grant agreement no. 863463) |
| 
| The development of this version 52°North Arctic Sea was supported by the German Federal Ministry of Education and Research research project TaMIS (co-funded by the German Federal Ministry of Education and Research, programme Geotechnologien, under grant agreement no. 03G0854) |
|
| The development of this version of 52°North Arctic Sea was supported by the Horizon 2020 research project JERICO-S3 (co-funded by the European Commission under the grant agreement no. 871153) |
|
| The development of this version of 52°North Arctic Sea was supported by the European FP7 research project NeXOS (co-funded by the European Commission under the grant agreement no. 614102) |
| 
| The development of this version 52°North Arctic Sea was supported by the German Federal Ministry of Education and Research research project COLABIS (co-funded by the German Federal Ministry of Education and Research, programme Geotechnologien, under grant agreement no. 03G0852A) |
|
| The development of this version of 52°North Arctic Sea was supported by the Horizon 2020 research project SeaDataCloud (co-funded by the European Commission under the grant agreement no. 730960) |
|
| The development of this version of 52°North Arctic Sea was supported by the Horizon 2020 research project ODIP II (co-funded by the European Commission under the grant agreement no. 654310) |
|
| The development of this version of 52°North Arctic Sea was supported by the Horizon 2020 research project ConnectinGEO (co-funded by the European Commission under the grant agreement no. 641538) |
|
| The development of this version of 52°North Arctic Sea was supported by the European FP7 research project GeoViQua (co-funded by the European Commission under the grant agreement no. 265178) |
| 

| The development of this version of 52°North Arctic Sea was supported by the German Federal Ministry of of Transport and Digital Infrastructure research project WaCoDis (co-funded by the German Federal Ministry of Transport and Digital Infrastructure, programme mFund) |
| 

| The development of this version of 52°North Arctic Sea was supported by the German Federal Ministry of Education and Research research project MuDak-WRM (co-funded by the German Federal Ministry of Education and Research, programme fona) |
|
| The development of this version of the 52°North Arctic Sea was supported by the Horizon 2020 research project BRIDGES (co-funded by the European Commission under the grant agreement no. 635359)
Owner
- Name: 52°North Spatial Information Research GmbH
- Login: 52North
- Kind: organization
- Email: info@52north.org
- Location: Münster
- Website: https://52north.org/
- Twitter: fivetwon
- Repositories: 261
- Profile: https://github.com/52North
Advancing spatial information infrastructures to foster open science
GitHub Events
Total
- Issues event: 2
- Watch event: 2
- Issue comment event: 3
- Fork event: 1
Last Year
- Issues event: 2
- Watch event: 2
- Issue comment event: 3
- Fork event: 1
Committers
Last synced: 9 months ago
Top Committers
| Name | Commits | |
|---|---|---|
| CarstenHollmann | c****n@5****g | 889 |
| Christian Autermann | c****n@5****g | 811 |
| dependabot-preview[bot] | 2****] | 179 |
| dependabot[bot] | 4****] | 177 |
| speckij | s****j@g****m | 100 |
| Daniel Nüst | d****t@5****g | 91 |
| EHJ-52n | e****s@5****g | 58 |
| Jan Schulte | j****e@5****g | 24 |
| ahitch | a****k@5****g | 22 |
| matthesrieke | m****e@5****g | 20 |
| Csaba Lestar | c****r@g****m | 13 |
| Henning Bredel | b****l@5****g | 8 |
| speckij | j****5@u****e | 7 |
| MojioMS | m****e@g****m | 6 |
| cdog | c****g@c****e | 6 |
| Benjamin Pross | b****s@5****g | 5 |
| csaba.lestar | c****r@e****u | 3 |
| Martin Kiesow | m****w@u****e | 2 |
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 7 months ago
All Time
- Total issues: 6
- Total pull requests: 175
- Average time to close issues: N/A
- Average time to close pull requests: 5 days
- Total issue authors: 4
- Total pull request authors: 6
- Average comments per issue: 2.5
- Average comments per pull request: 0.4
- Merged pull requests: 107
- Bot issues: 0
- Bot pull requests: 169
Past Year
- Issues: 2
- Pull requests: 1
- Average time to close issues: N/A
- Average time to close pull requests: 29 days
- Issue authors: 2
- Pull request authors: 1
- Average comments per issue: 1.0
- Average comments per pull request: 0.0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- autermann (3)
- Prathamkrishna (1)
- Oliver2421 (1)
- Ajaykumar724 (1)
Pull Request Authors
- dependabot[bot] (95)
- dakshkanaujia (2)
- punitkr03 (2)
- itzrealashwin (1)
- PasunuriSrinidhi (1)
- ThePhilosopher4097 (1)
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 26
- Total downloads: unknown
- Total docker downloads: 83,040
-
Total dependent packages: 738
(may contain duplicates) -
Total dependent repositories: 190
(may contain duplicates) - Total versions: 1,249
repo1.maven.org: org.n52.arctic-sea:shetland
52°North OWS Framework
- Homepage: https://github.com/52North/maven-parents
- Documentation: https://appdoc.app/artifact/org.n52.arctic-sea/shetland/
- License: Apache-2.0,Apache-2.0
-
Latest release: 10.1.1
published about 3 years ago
Rankings
repo1.maven.org: org.n52.arctic-sea:janmayen
Arctic Sea Aggregator Project
- Homepage: https://github.com/52North/maven-parents
- Documentation: https://appdoc.app/artifact/org.n52.arctic-sea/janmayen/
- License: Apache-2.0,Apache-2.0
-
Latest release: 10.1.1
published about 3 years ago
Rankings
repo1.maven.org: org.n52.arctic-sea:svalbard
52°North OWS Framework
- Homepage: https://github.com/52North/maven-parents
- Documentation: https://appdoc.app/artifact/org.n52.arctic-sea/svalbard/
- License: Apache-2.0,Apache-2.0
-
Latest release: 10.1.1
published about 3 years ago
Rankings
repo1.maven.org: org.n52.arctic-sea:iceland
52°North OWS Framework
- Homepage: https://github.com/52North/maven-parents
- Documentation: https://appdoc.app/artifact/org.n52.arctic-sea/iceland/
- License: Apache-2.0,Apache-2.0
-
Latest release: 10.1.1
published about 3 years ago
Rankings
repo1.maven.org: org.n52.arctic-sea:faroe-annotations
Arctic Sea Configuration API
- Homepage: https://github.com/52North/maven-parents
- Documentation: https://appdoc.app/artifact/org.n52.arctic-sea/faroe-annotations/
- License: Apache-2.0,Apache-2.0
-
Latest release: 10.1.1
published about 3 years ago
Rankings
repo1.maven.org: org.n52.arctic-sea:faroe-utils
Arctic Sea Configuration API
- Homepage: https://github.com/52North/maven-parents
- Documentation: https://appdoc.app/artifact/org.n52.arctic-sea/faroe-utils/
- License: Apache-2.0,Apache-2.0
-
Latest release: 10.1.1
published about 3 years ago
Rankings
repo1.maven.org: org.n52.arctic-sea:svalbard-xmlbeans
52°North OWS Framework
- Homepage: https://github.com/52North/maven-parents
- Documentation: https://appdoc.app/artifact/org.n52.arctic-sea/svalbard-xmlbeans/
- License: Apache-2.0,Apache-2.0
-
Latest release: 10.1.1
published about 3 years ago
Rankings
repo1.maven.org: org.n52.arctic-sea:faroe
Arctic Sea Configuration API
- Homepage: https://github.com/52North/maven-parents
- Documentation: https://appdoc.app/artifact/org.n52.arctic-sea/faroe/
- License: Apache-2.0,Apache-2.0
-
Latest release: 10.1.1
published about 3 years ago
Rankings
repo1.maven.org: org.n52.arctic-sea:faroe-json
Arctic Sea Configuration API
- Homepage: https://github.com/52North/maven-parents
- Documentation: https://appdoc.app/artifact/org.n52.arctic-sea/faroe-json/
- License: Apache-2.0,Apache-2.0
-
Latest release: 10.1.1
published about 3 years ago
Rankings
repo1.maven.org: org.n52.arctic-sea:svalbard-odata
52°North OWS Framework
- Homepage: https://github.com/52North/maven-parents
- Documentation: https://appdoc.app/artifact/org.n52.arctic-sea/svalbard-odata/
- License: Apache-2.0,Apache-2.0
-
Latest release: 10.1.1
published about 3 years ago
Rankings
repo1.maven.org: org.n52.arctic-sea:svalbard-json
52°North OWS Framework
- Homepage: https://github.com/52North/maven-parents
- Documentation: https://appdoc.app/artifact/org.n52.arctic-sea/svalbard-json/
- License: Apache-2.0,Apache-2.0
-
Latest release: 10.1.1
published about 3 years ago
Rankings
repo1.maven.org: org.n52.arctic-sea:svalbard-json-common
52°North OWS Framework
- Homepage: https://github.com/52North/maven-parents
- Documentation: https://appdoc.app/artifact/org.n52.arctic-sea/svalbard-json-common/
- License: Apache-2.0,Apache-2.0
-
Latest release: 10.1.1
published about 3 years ago
Rankings
repo1.maven.org: org.n52.arctic-sea:bjornoya
Scheduling classes
- Homepage: https://github.com/52North/maven-parents
- Documentation: https://appdoc.app/artifact/org.n52.arctic-sea/bjornoya/
- License: Apache-2.0,Apache-2.0
-
Latest release: 10.1.1
published about 3 years ago
Rankings
repo1.maven.org: org.n52.arctic-sea:svalbard-exi
52°North OWS Framework
- Homepage: https://github.com/52North/maven-parents
- Documentation: https://appdoc.app/artifact/org.n52.arctic-sea/svalbard-exi/
- License: Apache-2.0,Apache-2.0
-
Latest release: 10.1.1
published about 3 years ago
Rankings
repo1.maven.org: org.n52.arctic-sea:shetland-rdf
52°North RDF Framework
- Homepage: https://github.com/52North/maven-parents
- Documentation: https://appdoc.app/artifact/org.n52.arctic-sea/shetland-rdf/
- License: Apache-2.0,Apache-2.0
-
Latest release: 10.1.1
published about 3 years ago
Rankings
repo1.maven.org: org.n52.arctic-sea:svalbard-xmlstream
52°North OWS Framework
- Homepage: https://github.com/52North/maven-parents
- Documentation: https://appdoc.app/artifact/org.n52.arctic-sea/svalbard-xmlstream/
- License: Apache-2.0,Apache-2.0
-
Latest release: 10.1.1
published about 3 years ago
Rankings
repo1.maven.org: org.n52.arctic-sea:iceland-statistics
52°North Iceland Statistics
- Homepage: https://github.com/52North/maven-parents
- Documentation: https://appdoc.app/artifact/org.n52.arctic-sea/iceland-statistics/
- License: Apache-2.0,Apache-2.0
-
Latest release: 10.1.1
published about 3 years ago
Rankings
repo1.maven.org: org.n52.arctic-sea:iceland-statistics-geolocation
52°North iceland statistics extension for IP-based geolocation
- Homepage: https://github.com/52North/maven-parents
- Documentation: https://appdoc.app/artifact/org.n52.arctic-sea/iceland-statistics-geolocation/
- License: Apache-2.0,Apache-2.0
-
Latest release: 10.1.1
published about 3 years ago
Rankings
repo1.maven.org: org.n52.arctic-sea:shetland-arcgis
52°North ArcGIS Framework
- Homepage: https://github.com/52North/maven-parents
- Documentation: https://appdoc.app/artifact/org.n52.arctic-sea/shetland-arcgis/
- License: Apache-2.0,Apache-2.0
-
Latest release: 10.1.1
published about 3 years ago
Rankings
repo1.maven.org: org.n52.arctic-sea:iceland-statistics-generator
52°North Iceland Statistics Documentation Generator
- Homepage: https://github.com/52North/maven-parents
- Documentation: https://appdoc.app/artifact/org.n52.arctic-sea/iceland-statistics-generator/
- License: Apache-2.0,Apache-2.0
-
Latest release: 10.1.1
published about 3 years ago
Rankings
repo1.maven.org: org.n52.arctic-sea:iceland-statistics-kibana
52°North Iceland Statistics Kibana Exporter Tool
- Homepage: https://github.com/52North/maven-parents
- Documentation: https://appdoc.app/artifact/org.n52.arctic-sea/iceland-statistics-kibana/
- License: Apache-2.0,Apache-2.0
-
Latest release: 10.1.1
published about 3 years ago
Rankings
repo1.maven.org: org.n52.arctic-sea:arctic-sea
Arctic Sea Aggregator Project
- Homepage: https://github.com/52North/maven-parents
- Documentation: https://appdoc.app/artifact/org.n52.arctic-sea/arctic-sea/
- License: The Apache Software License, Version 2.0
-
Latest release: 10.1.1
published about 3 years ago
Rankings
repo1.maven.org: org.n52.arctic-sea:iceland-parent
52°North OWS Framework
- Homepage: https://github.com/52North/maven-parents
- Documentation: https://appdoc.app/artifact/org.n52.arctic-sea/iceland-parent/
- License: Apache-2.0,Apache-2.0
-
Latest release: 10.1.1
published about 3 years ago
Rankings
repo1.maven.org: org.n52.arctic-sea:faroe-parent
Arctic Sea Configuration API
- Homepage: https://github.com/52North/maven-parents
- Documentation: https://appdoc.app/artifact/org.n52.arctic-sea/faroe-parent/
- License: Apache-2.0,Apache-2.0
-
Latest release: 10.1.1
published about 3 years ago
Rankings
repo1.maven.org: org.n52.arctic-sea:svalbard-parent
52°North OWS Framework
- Homepage: https://github.com/52North/maven-parents
- Documentation: https://appdoc.app/artifact/org.n52.arctic-sea/svalbard-parent/
- License: Apache-2.0,Apache-2.0
-
Latest release: 10.1.1
published about 3 years ago
Rankings
repo1.maven.org: org.n52.arctic-sea:shetland-parent
52°North OWS Framework
- Homepage: https://github.com/52North/maven-parents
- Documentation: https://appdoc.app/artifact/org.n52.arctic-sea/shetland-parent/
- License: Apache-2.0,Apache-2.0
-
Latest release: 10.1.1
published about 3 years ago
Rankings
Dependencies
- actions/checkout v3 composite
- github/codeql-action/analyze v2 composite
- github/codeql-action/autobuild v2 composite
- github/codeql-action/init v2 composite
- actions/checkout v3 composite
- actions/setup-java v3 composite
- actions/checkout v3 composite
- actions/setup-java v3 composite
- actions/checkout v3 composite
- actions/setup-java v3 composite
- actions/checkout v3 composite
- actions/setup-java v3 composite
- actions/checkout v3 composite
- actions/setup-java v3 composite
- com.github.spotbugs:spotbugs-annotations provided
- javax.servlet:javax.servlet-api provided
- ${project.groupId}:faroe-annotations
- ${project.groupId}:faroe-utils
- ${project.groupId}:janmayen
- ${project.groupId}:shetland
- javax.inject:javax.inject
- joda-time:joda-time
- org.quartz-scheduler:quartz
- org.slf4j:slf4j-api
- org.springframework:spring-beans
- org.springframework:spring-context
- org.springframework:spring-context-support
- org.hamcrest:hamcrest test
- org.junit.jupiter:junit-jupiter-api test
- org.junit.jupiter:junit-jupiter-engine test
- org.slf4j:slf4j-nop test
- ${project.groupId}:faroe-annotations
- ${project.groupId}:faroe-utils
- ${project.groupId}:janmayen
- com.fasterxml.jackson.core:jackson-databind
- com.github.spotbugs:spotbugs-annotations
- com.google.guava:guava
- javax.inject:javax.inject
- joda-time:joda-time
- org.slf4j:slf4j-api
- org.hamcrest:hamcrest test
- org.junit.jupiter:junit-jupiter-api test
- org.slf4j:slf4j-simple test
- ${project.groupId}:faroe
- ${project.groupId}:faroe-utils
- ${project.groupId}:janmayen
- com.fasterxml.jackson.core:jackson-databind
- com.github.spotbugs:spotbugs-annotations
- com.google.guava:guava
- javax.inject:javax.inject
- joda-time:joda-time
- org.slf4j:slf4j-api
- org.hamcrest:hamcrest test
- org.junit.jupiter:junit-jupiter-api test
- org.slf4j:slf4j-simple test
- com.github.spotbugs:spotbugs-annotations provided
- javax.servlet:javax.servlet-api provided
- ${project.groupId}:faroe
- ${project.groupId}:faroe-annotations
- ${project.groupId}:faroe-json
- ${project.groupId}:faroe-utils
- ${project.groupId}:janmayen
- ${project.groupId}:shetland
- ${project.groupId}:svalbard
- com.fasterxml.jackson.core:jackson-core
- com.fasterxml.jackson.core:jackson-databind
- com.google.guava:guava
- com.siemens.ct.exi:exificient
- com.siemens.ct.exi:exificient-core
- com.siemens.ct.exi:exificient-grammars
- javax.inject:javax.inject
- joda-time:joda-time
- org.apache.xmlbeans:xmlbeans
- org.quartz-scheduler:quartz
- org.slf4j:jcl-over-slf4j
- org.slf4j:slf4j-api
- org.springframework:spring-beans
- org.springframework:spring-context
- org.springframework:spring-core
- org.springframework:spring-web
- xml-apis:xml-apis
- org.hamcrest:hamcrest test
- org.junit.jupiter:junit-jupiter-api test
- org.junit.jupiter:junit-jupiter-engine test
- org.mockito:mockito-core test
- org.slf4j:slf4j-simple test
- org.springframework:spring-test test
- javax.servlet:javax.servlet-api provided
- org.apache.lucene:lucene-core provided
- ${project.groupId}:faroe
- ${project.groupId}:faroe-annotations
- ${project.groupId}:faroe-utils
- ${project.groupId}:iceland
- ${project.groupId}:janmayen
- ${project.groupId}:shetland
- com.fasterxml.jackson.core:jackson-core
- com.fasterxml.jackson.core:jackson-databind
- com.github.spotbugs:spotbugs-annotations
- com.google.guava:guava
- commons-io:commons-io
- javax.inject:javax.inject
- joda-time:joda-time
- org.apache.commons:commons-compress
- org.apache.httpcomponents:httpcore
- org.apache.httpcomponents:httpcore-nio
- org.elasticsearch.client:elasticsearch-rest-client
- org.elasticsearch.client:elasticsearch-rest-high-level-client
- org.elasticsearch:elasticsearch
- org.slf4j:jcl-over-slf4j
- org.slf4j:slf4j-api
- org.springframework:spring-context
- pl.allegro.tech:embedded-elasticsearch
- org.hamcrest:hamcrest test
- org.junit.jupiter:junit-jupiter-api test
- org.junit.jupiter:junit-jupiter-engine test
- org.mockito:mockito-core test
- org.mockito:mockito-junit-jupiter test
- org.slf4j:slf4j-simple test
- org.springframework:spring-test test
- ${project.groupId}:iceland-statistics
- com.google.guava:guava
- ${project.groupId}:faroe-annotations
- ${project.groupId}:iceland-statistics
- ${project.groupId}:janmayen
- ${project.groupId}:shetland
- com.maxmind.db:maxmind-db
- com.maxmind.geoip2:geoip2
- javax.inject:javax.inject
- org.apache.httpcomponents:httpclient
- org.elasticsearch:elasticsearch
- org.slf4j:slf4j-api
- org.hamcrest:hamcrest test
- org.junit.jupiter:junit-jupiter-api test
- org.junit.jupiter:junit-jupiter-engine test
- org.slf4j:slf4j-simple test
- ${project.groupId}:iceland-statistics
- com.fasterxml.jackson.core:jackson-databind
- org.apache.httpcomponents:httpcore
- org.elasticsearch.client:elasticsearch-rest-client
- org.elasticsearch.client:elasticsearch-rest-high-level-client
- org.elasticsearch:elasticsearch
- org.slf4j:jcl-over-slf4j
- com.github.spotbugs:spotbugs-annotations provided
- javax.servlet:javax.servlet-api provided
- com.fasterxml.jackson.core:jackson-core
- com.fasterxml.jackson.core:jackson-databind
- com.google.code.findbugs:jsr305
- com.google.guava:guava
- com.neovisionaries:nv-i18n
- jakarta.annotation:jakarta.annotation-api
- javax.inject:javax.inject
- joda-time:joda-time
- org.slf4j:slf4j-api
- org.hamcrest:hamcrest test
- org.junit.jupiter:junit-jupiter-api test
- org.junit.jupiter:junit-jupiter-engine test
- org.slf4j:slf4j-nop test
- com.fasterxml.jackson:jackson-bom 2.14.0 import
- jakarta.annotation:jakarta.annotation-api 2.1.1 provided
- com.github.java-json-tools:jackson-coreutils 2.0
- com.github.java-json-tools:json-schema-core 1.2.14
- com.github.java-json-tools:json-schema-validator 2.2.14
- com.github.spotbugs:spotbugs-annotations 4.7.2
- com.google.code.findbugs:jsr305 3.0.2
- com.google.guava:guava 31.1-jre
- com.maxmind.db:maxmind-db 2.0.0
- com.maxmind.geoip2:geoip2 3.0.1
- com.neovisionaries:nv-i18n 1.29
- com.siemens.ct.exi:exificient 1.0.4
- com.siemens.ct.exi:exificient-core 1.0.4
- com.siemens.ct.exi:exificient-grammars 1.0.4
- com.sun.xml.bind:jaxb-core 2.3.0
- com.sun.xml.bind:jaxb-impl 2.3.0
- commons-codec:commons-codec 1.15
- commons-io:commons-io 2.11.0
- commons-lang:commons-lang 2.6
- javax.activation:activation 1.1.1
- javax.inject:javax.inject 1
- javax.servlet:javax.servlet-api 4.0.1
- javax.xml.bind:jaxb-api 2.3.0
- javax.xml.soap:javax.xml.soap-api ${version.javax-xml-soap}
- joda-time:joda-time 2.12.2
- net.sf.saxon:Saxon-HE 11.4
- org.antlr:antlr4 4.11.1
- org.antlr:antlr4-runtime 4.11.1
- org.apache.commons:commons-compress 1.22
- org.apache.httpcomponents:httpclient 4.5.14
- org.apache.httpcomponents:httpcore 4.4.16
- org.apache.httpcomponents:httpcore-nio 4.4.16
- org.apache.jena:jena-arq 4.6.1
- org.apache.jena:jena-core 4.6.1
- org.apache.lucene:lucene-core 9.4.1
- org.apache.olingo:odata-commons-api 4.9.0
- org.apache.olingo:odata-commons-core 4.9.0
- org.apache.olingo:odata-server-api 4.9.0
- org.apache.olingo:odata-server-core 4.9.0
- org.apache.xmlbeans:xmlbeans 3.1.0
- org.apache.xmlbeans:xmlbeans-xpath 2.6.0
- org.elasticsearch.client:elasticsearch-rest-client 7.17.6
- org.elasticsearch.client:elasticsearch-rest-high-level-client 7.17.6
- org.elasticsearch:elasticsearch 7.17.6
- org.geolatte:geolatte-geom 1.9.0
- org.hamcrest:hamcrest 2.2
- org.jetbrains.kotlin:kotlin-stdlib 1.7.20
- org.locationtech.jts:jts-core 1.19.0
- org.mockito:mockito-core 4.10.0
- org.mockito:mockito-junit-jupiter 4.10.0
- org.n52.arctic-sea:bjornoya 10.2.0-SNAPSHOT
- org.n52.arctic-sea:faroe 10.2.0-SNAPSHOT
- org.n52.arctic-sea:faroe-annotations 10.2.0-SNAPSHOT
- org.n52.arctic-sea:faroe-json 10.2.0-SNAPSHOT
- org.n52.arctic-sea:faroe-utils 10.2.0-SNAPSHOT
- org.n52.arctic-sea:iceland 10.2.0-SNAPSHOT
- org.n52.arctic-sea:iceland-statistics 10.2.0-SNAPSHOT
- org.n52.arctic-sea:iceland-statistics-generator 10.2.0-SNAPSHOT
- org.n52.arctic-sea:iceland-statistics-kibana 10.2.0-SNAPSHOT
- org.n52.arctic-sea:janmayen 10.2.0-SNAPSHOT
- org.n52.arctic-sea:shetland 10.2.0-SNAPSHOT
- org.n52.arctic-sea:shetland-arcgis 10.2.0-SNAPSHOT
- org.n52.arctic-sea:shetland-rdf 10.2.0-SNAPSHOT
- org.n52.arctic-sea:svalbard 10.2.0-SNAPSHOT
- org.n52.arctic-sea:svalbard-exi 10.2.0-SNAPSHOT
- org.n52.arctic-sea:svalbard-json 10.2.0-SNAPSHOT
- org.n52.arctic-sea:svalbard-json-common 10.2.0-SNAPSHOT
- org.n52.arctic-sea:svalbard-xmlbeans 10.2.0-SNAPSHOT
- org.n52.arctic-sea:svalbard-xmlstream 10.2.0-SNAPSHOT
- org.n52.sensorweb:52n-ogc-schema 2.7.0
- org.n52.sensorweb:52n-xml-cv-v022 2.7.0
- org.n52.sensorweb:52n-xml-drt-v100 2.7.0
- org.n52.sensorweb:52n-xml-filter-v20 2.7.0
- org.n52.sensorweb:52n-xml-gco-v20120713 2.7.0
- org.n52.sensorweb:52n-xml-gmd-v20120713 2.7.0
- org.n52.sensorweb:52n-xml-gml-v311 2.7.0
- org.n52.sensorweb:52n-xml-gml-v321 2.7.0
- org.n52.sensorweb:52n-xml-gml-v33 2.7.0
- org.n52.sensorweb:52n-xml-gmlcov-v10 2.7.0
- org.n52.sensorweb:52n-xml-gwml-v22 2.7.0
- org.n52.sensorweb:52n-xml-ifoi-v10 2.7.0
- org.n52.sensorweb:52n-xml-inspire-base-v33 2.7.0
- org.n52.sensorweb:52n-xml-inspire-base2-v20 2.7.0
- org.n52.sensorweb:52n-xml-inspire-ef-v40 2.7.0
- org.n52.sensorweb:52n-xml-inspire-omor-v30 2.7.0
- org.n52.sensorweb:52n-xml-inspire-ompr-v30 2.7.0
- org.n52.sensorweb:52n-xml-inspire-omso-v301 2.7.0
- org.n52.sensorweb:52n-xml-om-v100 2.7.0
- org.n52.sensorweb:52n-xml-om-v20 2.7.0
- org.n52.sensorweb:52n-xml-ows-v110 2.7.0
- org.n52.sensorweb:52n-xml-sampling-v100 2.7.0
- org.n52.sensorweb:52n-xml-sampling-v20 2.7.0
- org.n52.sensorweb:52n-xml-sensorML-v101 2.7.0
- org.n52.sensorweb:52n-xml-sensorML-v20 2.7.0
- org.n52.sensorweb:52n-xml-soap-v11 2.7.0
- org.n52.sensorweb:52n-xml-soap-v12 2.7.0
- org.n52.sensorweb:52n-xml-sos-v100 2.7.0
- org.n52.sensorweb:52n-xml-sos-v20 2.7.0
- org.n52.sensorweb:52n-xml-sosdo-v10 2.7.0
- org.n52.sensorweb:52n-xml-sosdo-v20 2.7.0
- org.n52.sensorweb:52n-xml-sosgda-v10 2.7.0
- org.n52.sensorweb:52n-xml-sosgda-v20 2.7.0
- org.n52.sensorweb:52n-xml-sosrf-v10 2.7.0
- org.n52.sensorweb:52n-xml-sosrf-v20 2.7.0
- org.n52.sensorweb:52n-xml-sosro-v10 2.7.0
- org.n52.sensorweb:52n-xml-sossf-v10 2.7.0
- org.n52.sensorweb:52n-xml-sweCommon-v101 2.7.0
- org.n52.sensorweb:52n-xml-sweCommon-v20 2.7.0
- org.n52.sensorweb:52n-xml-swes-v20 2.7.0
- org.n52.sensorweb:52n-xml-timeseriesML-v10 2.7.0
- org.n52.sensorweb:52n-xml-waterML-dr-v20 2.7.0
- org.n52.sensorweb:52n-xml-waterML-v20 2.7.0
- org.n52.sensorweb:52n-xml-wsa-v10 2.7.0
- org.n52.sensorweb:52n-xml-xlink-v110 2.7.0
- org.quartz-scheduler:quartz 2.3.2
- org.slf4j:jcl-over-slf4j 2.0.6
- org.slf4j:slf4j-api 2.0.6
- org.slf4j:slf4j-nop 2.0.6
- org.slf4j:slf4j-simple 2.0.6
- org.springframework:spring-beans 5.3.24
- org.springframework:spring-context 5.3.24
- org.springframework:spring-context-support 5.3.24
- org.springframework:spring-core 5.3.24
- org.springframework:spring-test 5.3.24
- org.springframework:spring-web 5.3.24
- pl.allegro.tech:embedded-elasticsearch 2.10.0
- stax:stax-api 1.0.1
- xml-apis:xml-apis 1.4.01
- xmlunit:xmlunit 1.6
- org.apache.commons:commons-lang3 3.12.0 test
- org.junit.jupiter:junit-jupiter-api 5.9.1 test
- org.junit.jupiter:junit-jupiter-engine 5.9.1 test
- org.junit.jupiter:junit-jupiter-params 5.9.1 test
- org.junit.platform:junit-platform-commons 1.9.1 test
- org.junit.platform:junit-platform-surefire-provider 1.3.2 test
- org.reflections:reflections 0.10.2 test
- com.github.spotbugs:spotbugs-annotations provided
- org.hamcrest:hamcrest test
- org.junit.jupiter:junit-jupiter-api test
- org.junit.jupiter:junit-jupiter-engine test
- org.mockito:mockito-core test
- com.github.spotbugs:spotbugs-annotations provided
- javax.servlet:javax.servlet-api provided
- ${project.groupId}:faroe-annotations
- ${project.groupId}:janmayen
- com.fasterxml.jackson.core:jackson-annotations
- com.google.code.findbugs:jsr305
- com.google.guava:guava
- commons-codec:commons-codec
- commons-lang:commons-lang
- joda-time:joda-time
- org.apache.httpcomponents:httpclient
- org.apache.httpcomponents:httpcore
- org.locationtech.jts:jts-core
- org.slf4j:jcl-over-slf4j
- org.slf4j:slf4j-api
- org.geolatte:geolatte-geom test
- org.hamcrest:hamcrest test
- org.junit.jupiter:junit-jupiter-api test
- org.junit.jupiter:junit-jupiter-engine test
- org.mockito:mockito-core test
- org.slf4j:slf4j-simple test
- org.springframework:spring-test test
- com.github.spotbugs:spotbugs-annotations provided
- com.google.guava:guava
- org.apache.jena:jena-arq
- org.apache.jena:jena-core
- com.github.spotbugs:spotbugs-annotations provided
- stax:stax-api provided
- ${project.groupId}:faroe-annotations
- ${project.groupId}:faroe-utils
- ${project.groupId}:janmayen
- ${project.groupId}:shetland
- com.google.code.findbugs:jsr305
- com.google.guava:guava
- javax.inject:javax.inject
- joda-time:joda-time
- org.apache.xmlbeans:xmlbeans
- org.locationtech.jts:jts-core
- org.slf4j:slf4j-api
- org.hamcrest:hamcrest test
- org.junit.jupiter:junit-jupiter-api test
- org.junit.jupiter:junit-jupiter-engine test
- org.mockito:mockito-core test
- org.reflections:reflections test
- com.github.spotbugs:spotbugs-annotations provided
- ${project.groupId}:janmayen
- ${project.groupId}:shetland
- ${project.groupId}:svalbard
- com.google.guava:guava
- com.sun.xml.bind:jaxb-core
- com.sun.xml.bind:jaxb-impl
- javax.inject:javax.inject
- javax.xml.bind:jaxb-api
- org.apache.xmlbeans:xmlbeans
- org.slf4j:slf4j-api
- com.siemens.ct.exi:exificient test
- commons-io:commons-io test
- org.hamcrest:hamcrest test
- org.junit.jupiter:junit-jupiter-api test
- org.mockito:mockito-core test
- org.slf4j:slf4j-simple test
- xml-apis:xml-apis test
- com.github.java-json-tools:json-schema-core provided
- com.github.spotbugs:spotbugs-annotations provided
- ${project.groupId}:faroe-utils
- ${project.groupId}:janmayen
- ${project.groupId}:shetland
- ${project.groupId}:svalbard
- ${project.groupId}:svalbard-json-common
- com.fasterxml.jackson.core:jackson-databind
- com.google.guava:guava
- javax.inject:javax.inject
- joda-time:joda-time
- org.apache.xmlbeans:xmlbeans
- org.locationtech.jts:jts-core
- org.slf4j:slf4j-api
- stax:stax-api
- ${project.groupId}:svalbard test
- ${project.groupId}:svalbard-json-common test
- ${project.groupId}:svalbard-xmlbeans test
- com.github.java-json-tools:jackson-coreutils test
- commons-io:commons-io test
- javax.servlet:javax.servlet-api test
- org.hamcrest:hamcrest test
- org.junit.jupiter:junit-jupiter-api test
- org.junit.jupiter:junit-jupiter-engine test
- org.mockito:mockito-core test
- org.reflections:reflections test
- org.slf4j:slf4j-simple test
- com.fasterxml.jackson.core:jackson-core provided
- com.github.spotbugs:spotbugs-annotations provided
- ${project.groupId}:janmayen
- ${project.groupId}:shetland
- ${project.groupId}:svalbard
- com.fasterxml.jackson.core:jackson-databind
- com.github.java-json-tools:json-schema-core
- com.github.java-json-tools:json-schema-validator
- com.google.code.findbugs:jsr305
- com.google.guava:guava
- javax.activation:activation
- javax.inject:javax.inject
- joda-time:joda-time
- org.slf4j:slf4j-api
- com.github.java-json-tools:jackson-coreutils test
- org.hamcrest:hamcrest test
- org.junit.jupiter:junit-jupiter-api test
- org.junit.jupiter:junit-jupiter-engine test
- org.junit.jupiter:junit-jupiter-params test
- org.slf4j:slf4j-simple test
- com.github.spotbugs:spotbugs-annotations provided
- ${project.groupId}:shetland
- ${project.groupId}:svalbard
- com.fasterxml.jackson.core:jackson-core
- com.fasterxml.jackson.core:jackson-databind
- com.google.code.findbugs:jsr305
- com.google.guava:guava
- commons-codec:commons-codec
- joda-time:joda-time
- org.antlr:antlr4-runtime
- org.apache.olingo:odata-commons-api
- org.apache.olingo:odata-commons-core
- org.apache.olingo:odata-server-api
- org.apache.olingo:odata-server-core
- org.locationtech.jts:jts-core
- org.slf4j:slf4j-api
- org.hamcrest:hamcrest test
- org.junit.jupiter:junit-jupiter-api test
- org.junit.jupiter:junit-jupiter-engine test
- org.slf4j:slf4j-simple test
- com.github.spotbugs:spotbugs-annotations provided
- ${project.groupId}:faroe-annotations
- ${project.groupId}:faroe-utils
- ${project.groupId}:janmayen
- ${project.groupId}:shetland
- ${project.groupId}:shetland-rdf
- ${project.groupId}:svalbard
- ${project.groupId}:svalbard-xmlstream
- com.google.guava:guava
- javax.inject:javax.inject
- joda-time:joda-time
- net.sf.saxon:Saxon-HE
- org.apache.jena:jena-core
- org.apache.xmlbeans:xmlbeans
- org.apache.xmlbeans:xmlbeans-xpath
- org.locationtech.jts:jts-core
- org.n52.sensorweb:52n-ogc-schema
- org.n52.sensorweb:52n-xml-cv-v022
- org.n52.sensorweb:52n-xml-drt-v100
- org.n52.sensorweb:52n-xml-filter-v20
- org.n52.sensorweb:52n-xml-gco-v20120713
- org.n52.sensorweb:52n-xml-gmd-v20120713
- org.n52.sensorweb:52n-xml-gml-v311
- org.n52.sensorweb:52n-xml-gml-v321
- org.n52.sensorweb:52n-xml-gml-v33
- org.n52.sensorweb:52n-xml-gmlcov-v10
- org.n52.sensorweb:52n-xml-gwml-v22
- org.n52.sensorweb:52n-xml-ifoi-v10
- org.n52.sensorweb:52n-xml-inspire-base-v33
- org.n52.sensorweb:52n-xml-inspire-base2-v20
- org.n52.sensorweb:52n-xml-inspire-ef-v40
- org.n52.sensorweb:52n-xml-inspire-ompr-v30
- org.n52.sensorweb:52n-xml-inspire-omso-v301
- org.n52.sensorweb:52n-xml-om-v100
- org.n52.sensorweb:52n-xml-om-v20
- org.n52.sensorweb:52n-xml-ows-v110
- org.n52.sensorweb:52n-xml-sampling-v100
- org.n52.sensorweb:52n-xml-sampling-v20
- org.n52.sensorweb:52n-xml-sensorML-v101
- org.n52.sensorweb:52n-xml-sensorML-v20
- org.n52.sensorweb:52n-xml-soap-v11
- org.n52.sensorweb:52n-xml-soap-v12
- org.n52.sensorweb:52n-xml-sos-v100
- org.n52.sensorweb:52n-xml-sos-v20
- org.n52.sensorweb:52n-xml-sosdo-v10
- org.n52.sensorweb:52n-xml-sosdo-v20
- org.n52.sensorweb:52n-xml-sosgda-v10
- org.n52.sensorweb:52n-xml-sosgda-v20
- org.n52.sensorweb:52n-xml-sosrf-v10
- org.n52.sensorweb:52n-xml-sosrf-v20
- org.n52.sensorweb:52n-xml-sosro-v10
- org.n52.sensorweb:52n-xml-sossf-v10
- org.n52.sensorweb:52n-xml-sweCommon-v101
- org.n52.sensorweb:52n-xml-sweCommon-v20
- org.n52.sensorweb:52n-xml-swes-v20
- org.n52.sensorweb:52n-xml-timeseriesML-v10
- org.n52.sensorweb:52n-xml-waterML-dr-v20
- org.n52.sensorweb:52n-xml-waterML-v20
- org.n52.sensorweb:52n-xml-wsa-v10
- org.n52.sensorweb:52n-xml-xlink-v110
- org.slf4j:slf4j-api
- stax:stax-api
- xml-apis:xml-apis
- xmlunit:xmlunit
- ${project.groupId}:svalbard test
- org.hamcrest:hamcrest test
- org.junit.jupiter:junit-jupiter-api test
- org.junit.jupiter:junit-jupiter-engine test
- org.mockito:mockito-core test
- org.reflections:reflections test
- org.slf4j:slf4j-nop test
- ${project.groupId}:janmayen provided
- commons-lang:commons-lang provided
- org.apache.jena:jena-core provided
- org.n52.sensorweb:52n-xml-om-v20 provided
- org.n52.sensorweb:52n-xml-swes-v20 provided
- ${project.groupId}:shetland
- ${project.groupId}:shetland-rdf
- ${project.groupId}:svalbard
- com.github.spotbugs:spotbugs-annotations
- com.google.code.findbugs:jsr305
- com.google.guava:guava
- joda-time:joda-time
- net.sf.saxon:Saxon-HE
- org.apache.xmlbeans:xmlbeans
- org.apache.xmlbeans:xmlbeans-xpath
- org.slf4j:slf4j-api
- stax:stax-api
- ${project.groupId}:svalbard test
- org.apache.commons:commons-lang3 test
- org.hamcrest:hamcrest test
- org.junit.jupiter:junit-jupiter-api test
- org.junit.jupiter:junit-jupiter-engine test
- org.mockito:mockito-core test
- org.reflections:reflections test
- org.slf4j:slf4j-simple test
- xml-apis:xml-apis test
- xmlunit:xmlunit test
