Skip to content

Commit a83d0c6

Browse files
resolved integration test cases
1 parent 1f722f2 commit a83d0c6

1 file changed

Lines changed: 32 additions & 0 deletions

File tree

  • checkmarx-ast-eclipse-plugin

checkmarx-ast-eclipse-plugin/pom.xml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,36 @@
99
</parent>
1010
<artifactId>com.checkmarx.eclipse.plugin</artifactId>
1111
<packaging>eclipse-plugin</packaging>
12+
<dependencies>
13+
<dependency>
14+
<groupId>com.fasterxml.jackson.core</groupId>
15+
<artifactId>jackson-databind</artifactId>
16+
<version>2.17.0</version>
17+
</dependency>
18+
</dependencies>
19+
<build>
20+
<plugins>
21+
22+
<plugin>
23+
<groupId>org.apache.felix</groupId>
24+
<artifactId>maven-bundle-plugin</artifactId>
25+
<version>5.1.8</version>
26+
<extensions>true</extensions>
27+
<configuration>
28+
<instructions>
29+
<Embed-Dependency>
30+
jackson-databind,
31+
jackson-core,
32+
jackson-annotations
33+
</Embed-Dependency>
34+
<Embed-Transitive>true</Embed-Transitive>
35+
<Embed-Directory>lib</Embed-Directory>
36+
<Embed-StripVersion>false</Embed-StripVersion>
37+
</instructions>
38+
</configuration>
39+
</plugin>
40+
41+
</plugins>
42+
</build>
43+
1244
</project>

0 commit comments

Comments
 (0)