Skip to content

Commit a4c4c29

Browse files
committed
Copy dependencies
1 parent 1807a45 commit a4c4c29

File tree

1 file changed

+23
-5
lines changed

1 file changed

+23
-5
lines changed

pom.xml

Lines changed: 23 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@
3434
<name>GitHub OWNER Apache Maven Packages</name>
3535
<url>https://maven.pkg.github.com/Laffini/Java-Matching-Engine-Core</url>
3636
<releases>
37-
<enabled>true</enabled>
38-
</releases>
39-
<snapshots>
40-
<enabled>true</enabled>
41-
</snapshots>
37+
<enabled>true</enabled>
38+
</releases>
39+
<snapshots>
40+
<enabled>true</enabled>
41+
</snapshots>
4242
</repository>
4343
</repositories>
4444

@@ -72,6 +72,24 @@
7272
<groupId>org.springframework.boot</groupId>
7373
<artifactId>spring-boot-maven-plugin</artifactId>
7474
</plugin>
75+
<plugin>
76+
<groupId>org.apache.maven.plugins</groupId>
77+
<artifactId>maven-dependency-plugin</artifactId>
78+
<executions>
79+
<execution>
80+
<id>copy-dependencies</id>
81+
<phase>package</phase>
82+
<goals>
83+
<goal>copy-dependencies</goal>
84+
</goals>
85+
<configuration>
86+
<outputDirectory>${project.build.directory}</outputDirectory>
87+
<overWriteReleases>false</overWriteReleases>
88+
<overWriteSnapshots>true</overWriteSnapshots>
89+
</configuration>
90+
</execution>
91+
</executions>
92+
</plugin>
7593
</plugins>
7694
</build>
7795

0 commit comments

Comments
 (0)