Skip to content

Commit

Permalink
[#133 update dependency modules]
Browse files Browse the repository at this point in the history
  • Loading branch information
csun-cpointe committed Sep 18, 2024
1 parent 76be319 commit 9032d9c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
<version.jackson>2.15.0</version.jackson>
<version.jclouds>2.6.0</version.jclouds>
<version.maven.core>3.8.6</version.maven.core>
<version.mutiny>1.4.0</version.mutiny>
<version.mutiny>2.6.2</version.mutiny>
<version.plexus.component>2.1.1</version.plexus.component>
<version.postgresql>42.5.1</version.postgresql>
<version.resteasy>4.7.7.Final</version.resteasy>
Expand Down
2 changes: 1 addition & 1 deletion foundation/foundation-alerting/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
<version>${version.jakarta.inject}</version>
</dependency>

<!-- Logging Dependencies (from aiops-parent pom) -->
<!-- Logging Dependencies (from aissemble-parent pom) -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ public void retrieveSparkApplications(String pipelineName, Path archiveDir, Pipe
throw new NoSuchFileException("No archive present in directory " + archiveDir);
}
Path archive = archiveOpt.get();
FileSystem fileSystem = FileSystems.newFileSystem(archive, null);
FileSystem fileSystem = FileSystems.newFileSystem(archive, (ClassLoader) null);
Path appsDirToExtract = fileSystem.getPath(getPathToValuesFileDir(implType, pipelineName));
Files.walk(appsDirToExtract, 1).forEach((fileToExtract -> {
try {
Expand Down
4 changes: 2 additions & 2 deletions foundation/foundation-mda/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.1.0</version>
<version>3.4.1</version>
<executions>
<execution>
<id>create-generator-usage-comments</id>
Expand Down Expand Up @@ -98,7 +98,7 @@
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
<version>3.3.1</version>
<version>3.5.1</version>
</dependency>
<dependency>
<groupId>com.boozallen.aissemble</groupId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.boozallen.aissemble</groupId>
<artifactId>aissemble-parent</artifactId>
<version>4</version>
<version>5-SNAPSHOT</version>
<relativePath/>
</parent>

Expand Down

0 comments on commit 9032d9c

Please sign in to comment.