Skip to content

Commit

Permalink
[JAVA-11770] Added build step to copy native libraries into a specifi…
Browse files Browse the repository at this point in the history
…c folder
  • Loading branch information
panagiotiskakos committed May 7, 2022
1 parent 577d393 commit 2f4484b
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions aws-modules/aws-miscellaneous/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,25 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.1.1</version>
<executions>
<execution>
<id>copy</id>
<phase>compile</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<includeScope></includeScope>
<includeTypes>so,dll,dylib</includeTypes>
<outputDirectory>native-libs</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 2f4484b

Please sign in to comment.