Skip to content

Commit

Permalink
Merge pull request #93 from nit-tripathi/dev
Browse files Browse the repository at this point in the history
CyCode Vulnerabilities Fix
  • Loading branch information
NeetishPathak committed May 12, 2023
2 parents db39dcb + ea4dee9 commit 40993d0
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 9 deletions.
6 changes: 3 additions & 3 deletions client/Java/Juno/CompileLibraryLocally.md
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ We do however want juno-client-impl to point to the juno-client-api we have comp
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>5.3.23</version>
<version>5.3.27</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -285,7 +285,7 @@ We do however want juno-client-impl to point to the juno-client-api we have comp
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>5.3.23</version>
<version>5.3.27</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
Expand All @@ -305,7 +305,7 @@ We do however want juno-client-impl to point to the juno-client-api we have comp
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.3.23</version>
<version>5.3.27</version>
</dependency>
<dependency>
<groupId>io.micrometer</groupId>
Expand Down
11 changes: 8 additions & 3 deletions client/Java/Juno/FunctionalTests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ limitations under the License.
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>5.3.23</version>
<version>5.3.27</version>
</dependency>
<dependency>
<groupId>javax.inject</groupId>
Expand All @@ -87,7 +87,7 @@ limitations under the License.
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>5.3.23</version>
<version>5.3.27</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -152,7 +152,12 @@ limitations under the License.
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.3.23</version>
<version>5.3.27</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>5.3.27</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
Expand Down
6 changes: 3 additions & 3 deletions client/Java/Juno/juno-client-impl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ limitations under the License.
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>5.3.23</version>
<version>5.3.27</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -155,7 +155,7 @@ limitations under the License.
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>5.3.23</version>
<version>5.3.27</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
Expand All @@ -175,7 +175,7 @@ limitations under the License.
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.3.23</version>
<version>5.3.27</version>
</dependency>
<dependency>
<groupId>io.micrometer</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,11 @@ limitations under the License.
<artifactId>spring-boot-starter-web</artifactId>
<version>2.6.7</version>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
Expand Down
10 changes: 10 additions & 0 deletions client/Java/examples/employee-dashboard-app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,16 @@
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>5.3.27</version>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>com.paypal.juno</groupId>
<artifactId>juno-client-api</artifactId>
Expand Down

0 comments on commit 40993d0

Please sign in to comment.