Skip to content

Commit 3d2ce39

Browse files
authored
Merge pull request #83 from lesserwhirls/updates
Dependency and publishing updates
2 parents 7b981c7 + 24978bd commit 3d2ce39

File tree

2 files changed

+17
-18
lines changed

2 files changed

+17
-18
lines changed

README.md

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ A command-line utility, [ncISO], is also available ([here][ncISO]) for automatin
1212
Much has changed with the `main` branch.
1313
The repository currently produces two artifacts of interest:
1414

15-
1. [nciso](https://artifacts.unidata.ucar.edu/service/rest/repository/browse/unidata-all/EDS/nciso/)
16-
2. [tds-plugin](https://artifacts.unidata.ucar.edu/service/rest/repository/browse/unidata-all/EDS/tds-plugin/)
15+
1. nciso ([releases](https://artifacts.unidata.ucar.edu/releases/EDS/nciso/))([snapshots](https://artifacts.unidata.ucar.edu/snapshots/EDS/nciso/))
16+
2. tds-plugin ([releases](https://artifacts.unidata.ucar.edu/releases/EDS/tds-plugin/))([snapshots](https://artifacts.unidata.ucar.edu/snapshots/EDS/tds-plugin/))
1717

1818
An attempt has been made to combine the code bases of the command line utility and the TDS threddsISO plugin.
1919
In this repository, the commandline utility code lives in the `nciso` maven module.
@@ -29,7 +29,6 @@ The NOAA/NGDC ncISO team and the Unidata THREDDS team work closely (and with the
2929

3030
| netCDF-Java / TDS Version | threddsISO | threddsISO Tag |
3131
|:--------------------------|:---------------|:---------------|
32-
| 5.9.1 / - | 2.4.9-SNAPSHOT | - |
3332
| 5.9.1 / 5.7 | 2.4.8 | **v2.4.8** |
3433
| 5.7.0 / 5.6 | 2.4.7 | **v2.4.7** |
3534
| 5.6.0 / 5.5 | 2.4.6 | **v2.4.6** |
@@ -55,10 +54,10 @@ The NOAA/NGDC ncISO team and the Unidata THREDDS team work closely (and with the
5554

5655
### Active Branches
5756

58-
| threddsIso branch | netCDF-Java / TDS Version |
59-
|:------------------|:----------------------------------|
60-
| main | **5.5.4-SNAPSHOT / 5.5-SNAPSHOT** |
61-
| 2.2.x | **4.6.17** |
57+
| threddsIso branch | netCDF-Java / TDS Version |
58+
|:------------------|:-----------------------------------|
59+
| main | **5.10.0-SNAPSHOT / 5.9-SNAPSHOT** |
60+
| 2.2.x | **4.6.17** |
6261

6362
## Notes on External Dependencies
6463

@@ -69,12 +68,12 @@ The NOAA/NGDC ncISO team and the Unidata THREDDS team work closely (and with the
6968
[commons-lang3] used in `nciso-common`
7069

7170
[ncISO]: https://github.com/NOAA-PMEL/uafnciso
72-
[TDS]: http://www.unidata.ucar.edu/software/tds/current/
71+
[TDS]: https://www.unidata.ucar.edu/software/tds
7372
[ncISO_TDS_docs]: https://docs.unidata.ucar.edu/tds/current/userguide/iso_metadata.html
7473

75-
[Maven_artifacts]: https://artifacts.unidata.ucar.edu/service/rest/repository/browse/unidata-releases/EDS/
76-
[Maven_artifacts_snapshots]: https://artifacts.unidata.ucar.edu/service/rest/repository/browse/unidata-snapshots/EDS/
74+
[Maven_artifacts]: https://artifacts.unidata.ucar.edu/releases/EDS/
75+
[Maven_artifacts_snapshots]: https://artifacts.unidata.ucar.edu/snapshots/EDS/
7776

78-
[JDOM]: http://www.jdom.org/
79-
[SAXON]: http://saxon.sourceforge.net/
80-
[commons-lang]: http://commons.apache.org/proper/commons-lang/
77+
[JDOM]: https://www.jdom.org/
78+
[SAXON]: https://saxon.sourceforge.net/
79+
[commons-lang]: https://commons.apache.org/proper/commons-lang/

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@
4141
<repository>
4242
<id>unidata-releases</id>
4343
<name>Unidata Releases</name>
44-
<url>https://artifacts.unidata.ucar.edu/repository/unidata-releases/</url>
44+
<url>https://artifacts.unidata.ucar.edu/releases/</url>
4545
</repository>
4646
<snapshotRepository>
4747
<id>unidata-snapshots</id>
4848
<name>Unidata Snapshots</name>
49-
<url>https://artifacts.unidata.ucar.edu/repository/unidata-snapshots/</url>
49+
<url>https://artifacts.unidata.ucar.edu/snapshots/</url>
5050
</snapshotRepository>
5151
</distributionManagement>
5252
<dependencyManagement>
@@ -61,7 +61,7 @@
6161
<dependency>
6262
<groupId>edu.ucar</groupId>
6363
<artifactId>netcdf-java-testing-platform</artifactId>
64-
<version>5.9.1</version>
64+
<version>5.10.0-SNAPSHOT</version>
6565
<type>pom</type>
6666
<scope>import</scope>
6767
</dependency>
@@ -88,7 +88,7 @@
8888
<dependency>
8989
<groupId>org.testcontainers</groupId>
9090
<artifactId>testcontainers</artifactId>
91-
<version>1.19.2</version>
91+
<version>1.21.4</version>
9292
</dependency>
9393
</dependencies>
9494
</dependencyManagement>
@@ -237,6 +237,6 @@
237237
<maven-failsafe-plugin.version>3.2.2</maven-failsafe-plugin.version>
238238

239239
<!-- TDS version -->
240-
<tds.version>5.7-SNAPSHOT</tds.version>
240+
<tds.version>5.9-SNAPSHOT</tds.version>
241241
</properties>
242242
</project>

0 commit comments

Comments
 (0)