Skip to content

Commit

Permalink
update dependency for vulnerablilities fix (#701)
Browse files Browse the repository at this point in the history
* update dependency for vulnerablilities fix

* remove parent to resolve vul issue

* update surefire version
  • Loading branch information
kaibocai authored Mar 14, 2023
1 parent 4111a33 commit 80447c4
Showing 1 changed file with 18 additions and 9 deletions.
27 changes: 18 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,6 @@
<artifactId>azure-functions-java-worker</artifactId>
<version>2.9.1</version>
<packaging>jar</packaging>
<parent>
<groupId>com.microsoft.maven</groupId>
<artifactId>java-8-parent</artifactId>
<version>8.0.0</version>
</parent>
<name>Azure Functions Java Worker</name>
<description>This package contains the Java Language Worker used by Azure functions host to execute java functions</description>
<url>https://azure.microsoft.com/en-us/services/functions</url>
Expand Down Expand Up @@ -77,17 +72,17 @@
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-protobuf</artifactId>
<version>1.45.0</version>
<version>1.45.2</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-stub</artifactId>
<version>1.45.0</version>
<version>1.45.2</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-netty-shaded</artifactId>
<version>1.45.0</version>
<version>1.45.2</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
Expand All @@ -102,7 +97,7 @@
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>1.4</version>
<version>1.5.0</version>
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
Expand Down Expand Up @@ -294,6 +289,20 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.1</version>
<configuration>
<workingDirectory>${project.build.directory}</workingDirectory>
<systemProperties>
<property>
<name>testing-project-jar</name>
<value>${project.artifactId}-${project.version}-tests.jar</value>
</property>
</systemProperties>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 80447c4

Please sign in to comment.