Skip to content

Commit 9b73403

Browse files
committed
➕ add contrast-agent as dependency
1 parent a4d10e6 commit 9b73403

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

pom.xml

+29
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,33 @@
1212
<module>bookstore-devservice</module>
1313
<module>bookstore-frontend</module>
1414
</modules>
15+
<properties>
16+
<contrast.version>3.7.3.14657</contrast.version>
17+
</properties>
18+
<build>
19+
<plugins>
20+
<plugin>
21+
<artifactId>maven-dependency-plugin</artifactId>
22+
<version>3.1.1</version>
23+
<executions>
24+
<execution>
25+
<phase>prepare-package</phase>
26+
<goals>
27+
<goal>copy</goal>
28+
</goals>
29+
<configuration>
30+
<artifactItems>
31+
<artifactItem>
32+
<groupId>com.contrastsecurity</groupId>
33+
<artifactId>contrast-agent</artifactId>
34+
<version>${contrast.version}</version>
35+
<destFileName>contrast.jar</destFileName>
36+
</artifactItem>
37+
</artifactItems>
38+
</configuration>
39+
</execution>
40+
</executions>
41+
</plugin>
42+
</plugins>
43+
</build>
1544
</project>

0 commit comments

Comments
 (0)