We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a68cad3 commit bec5ed3Copy full SHA for bec5ed3
reconstruction/alert/pom.xml
@@ -145,6 +145,28 @@
145
</ignoredUnusedDeclaredDependencies>
146
</configuration>
147
</plugin>
148
+
149
+ <plugin>
150
+ <groupId>org.apache.maven.plugins</groupId>
151
+ <artifactId>maven-dependency-plugin</artifactId>
152
+ <version>3.8.1</version>
153
+ <executions>
154
+ <execution>
155
+ <id>copy-dependencies</id>
156
+ <phase>package</phase>
157
+ <goals>
158
+ <goal>copy-dependencies</goal>
159
+ </goals>
160
+ <configuration>
161
+ <outputDirectory>${project.build.directory}/lib/services</outputDirectory>
162
+ <includeGroupIds>ai.djl</includeGroupIds>
163
+ </configuration>
164
+ </execution>
165
+ </executions>
166
+ </plugin>
167
168
169
170
</plugins>
171
</build>
172
0 commit comments