Skip to content

Commit

Permalink
Merge pull request eugenp#12178 from panos-kakos/JAVA-11770
Browse files Browse the repository at this point in the history
[JAVA-11770] Added build step to copy native libraries into a specific folder
  • Loading branch information
kwoyke authored May 9, 2022
2 parents a4f6708 + fa5b85a commit 3c1a0c1
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 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>${maven-plugins-version}</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 All @@ -99,6 +118,7 @@
<commons-codec-version>1.10.L001</commons-codec-version>
<jets3t-version>0.9.4.0006L</jets3t-version>
<maven-shade-plugin.version>3.0.0</maven-shade-plugin.version>
<maven-plugins-version>3.1.1</maven-plugins-version>
</properties>

</project>

0 comments on commit 3c1a0c1

Please sign in to comment.