Skip to content

Commit

Permalink
#472 Move cross-links.json to src/main/resources
Browse files Browse the repository at this point in the history
  • Loading branch information
tariqksoliman committed Aug 2, 2024
1 parent dfbc0f1 commit d6f2c24
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public CrossLinks loadConfiguration() {
if (config == null) {
ObjectMapper mapper = new ObjectMapper();
try {
config = mapper.readValue(new File("cross-links.json"), CrossLinks.class);
config = mapper.readValue(new File("src/main/resources/cross-links.json"), CrossLinks.class);
System.out.println(config);
} catch (IOException e) {
// Handle exception
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
{ "field": "mission", "match": "ins" },
{ "field": "fileExtension", "match": "\\.IMG" }
],
"reject": [{ "field": "uri", "match": ".*mars2020_helicam.*" }]
"reject": [{ "field": "lidvid", "match": ".*mars2020_helicam.*" }]
},
{
"name": "atlas4",
Expand Down

0 comments on commit d6f2c24

Please sign in to comment.