Info end point should show Apache SIS Library as the secondary version number
Primary can show 0.19 (for M16). Secondary version number should show Apache version number.
GET {{CRS_CONVERSION_HOST}}/info
Response
{
"groupId": "org.opengroup.osdu.crs-converter-service",
"artifactId": "crs-converter-aws",
**"version": "0.19.1-SNAPSHOT",**
"buildTime": "2023-02-21T23:26:15.891Z",
"branch": "refs/heads/release/r3-m16",
"commitId": "7b8b29af4908a403361d7c6a4b416ece2df02822",
"commitMessage": "Merge remote-tracking branch 'upstream/release/0.19' into release/r3-m16",
"connectedOuterServices": []
}
Similar to what we see in Indexer service (shows Elasticsearch version number)
GET {{INDEXER_HOST}}/info
Response
{
"groupId": "org.opengroup.osdu.indexer",
"artifactId": "indexer-aws",
**"version": "0.19.1-SNAPSHOT",**
"buildTime": "2023-02-22T03:25:35.699Z",
"branch": "refs/heads/release/r3-m16",
"commitId": "55b161edfe912f61c00173feda5f45e9351df3db",
"commitMessage": "Merge remote-tracking branch 'upstream/release/0.19' into release/r3-m16",
"connectedOuterServices": [
{
"name": "ElasticSearch-int-test-seismic-store",
"version": "7.17.8"
},
{
"name": "ElasticSearch-osdu",
**"version": "7.17.8"**
},
....
{
"name": "ElasticSearch-int-test-legal",
"version": "7.17.8"
},
{
"name": "ElasticSearch-int-test-storage",
"version": "7.17.8"
}
]
}
Edited by Debasis Chatterjee