Skip to content

Commit

Permalink
correct pom
Browse files Browse the repository at this point in the history
  • Loading branch information
burak-58 committed Mar 18, 2021
1 parent ae01d2b commit 673fa30
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -623,6 +623,35 @@
<version>${maven-dependency-plugin.version}</version>

<executions>
<execution>
<id>copy-dependencies</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/lib</outputDirectory>
<includeScope>compile</includeScope>
<excludeScope>test</excludeScope>
<excludeGroupIds>org.tensorflow,</excludeGroupIds>
<excludeArtifactIds>cuda,cuda-platform</excludeArtifactIds>
<excludeTransitive>false</excludeTransitive>
</configuration>
</execution>
<execution>
<id>copy-dependencies-plugin</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/plugins</outputDirectory>
<excludeGroupIds>org.tensorflow</excludeGroupIds>
<excludeArtifactIds>cuda,cuda-platform</excludeArtifactIds>
<includeScope>provided</includeScope>
<excludeTransitive>false</excludeTransitive>
</configuration>
</execution>
<execution>
<id>unpack-root-app</id>
<phase>package</phase>
Expand Down

0 comments on commit 673fa30

Please sign in to comment.