Skip to content

Commit

Permalink
fix: deleted jar files and updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
payaljindal committed Jan 17, 2024
1 parent 3b0dcc5 commit 5b5b4e5
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
Binary file not shown.
Binary file not shown.
19 changes: 14 additions & 5 deletions tools/target-server-validator/callout/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,11 @@ do it manually by running these commands:
<artifactId>expressions</artifactId>
<version>1.0.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/javax.json/javax.json-api -->
<dependency>
<groupId>org.glassfish</groupId>
<artifactId>javax.json</artifactId>
<version>1.1.4</version>
</dependency>
<dependency>
<groupId>javax.json</groupId>
<artifactId>javax.json-api</artifactId>
Expand Down Expand Up @@ -145,10 +149,15 @@ do it manually by running these commands:
<copy todir="${apiproxy.java.rsrc.dir}">
<fileset dir="${project.build.directory}">
<include name="${project.artifactId}.jar"/>
<!-- copy any required dependencies tht are not
already included in the Edge runtime: -->

<!-- -->
</fileset>
<mapper type="flatten"/>
</copy>

<!-- Copy the javax jar files -->
<copy todir="${apiproxy.java.rsrc.dir}">
<fileset dir="${project.build.directory}/lib">
<include name="javax.json-1.1.4.jar"/>
<include name="javax.json-api-1.1.4.jar"/>
</fileset>
<mapper type="flatten"/>
</copy>
Expand Down

0 comments on commit 5b5b4e5

Please sign in to comment.