Skip to content

Commit bec5ed3

Browse files
Fix (this time really) the ZooModelNotFound by adding the dependency to coatjava/lib/services (#694)
1 parent a68cad3 commit bec5ed3

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

reconstruction/alert/pom.xml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,28 @@
145145
</ignoredUnusedDeclaredDependencies>
146146
</configuration>
147147
</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+
148170
</plugins>
149171
</build>
150172

0 commit comments

Comments
 (0)