Skip to content
22 changes: 22 additions & 0 deletions reconstruction/alert/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,28 @@
</ignoredUnusedDeclaredDependencies>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.8.1</version>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/lib/services</outputDirectory>
<includeGroupIds>ai.djl</includeGroupIds>
</configuration>
</execution>
</executions>
</plugin>



</plugins>
</build>

Expand Down
Loading