Skip to content

updated plugins for Reproducible Builds (excl osgi) #2223

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions aws-java-sdk-bundle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4.3</version>
<version>3.2.3</version>
<configuration>
<artifactSet>
<includes>
Expand Down Expand Up @@ -126,4 +126,4 @@
</profile>
</profiles>

</project>
</project>
2 changes: 1 addition & 1 deletion aws-java-sdk-codegen-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>3.4</version>
<version>3.6.0</version>
<executions>
<execution>
<id>default-descriptor</id>
Expand Down
6 changes: 3 additions & 3 deletions aws-java-sdk-osgi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1341,7 +1341,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.5</version>
<configuration>
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
Expand All @@ -1368,13 +1367,14 @@
<Import-Package>!org.junit.*,!org.springframework.*,!org.apache.avalon.*,!org.apache.log.*,!org.aspectj.*,org.apache.http.conn.routing,com.sun.org.apache.xerces.internal.jaxp.*;resolution:=optional,com.sun.org.apache.xml.internal.dtm.*;resolution:=optional,com.sun.org.apache.xml.internal.dtm.ref.*;resolution:=optional,com.sun.org.apache.xpath.internal.*;resolution:=optional,javax.mail;resolution:=optional,*</Import-Package>
<Embed-Dependency>*;scope=compile;inline=true</Embed-Dependency>
<Embed-Transitive>false</Embed-Transitive>
<_removeheaders>Bnd-LastModified</_removeheaders>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.3</version>
<version>3.2.3</version>
<executions>
<execution>
<phase>package</phase>
Expand Down Expand Up @@ -2510,7 +2510,7 @@
<!-- Invoke the Assembly plugin to create the ZIP archive -->
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.6</version>
<version>3.2.0</version>
<configuration>
<descriptors>
<descriptor>src/assembly/sdk-zip-archive-assembly.xml</descriptor>
Expand Down
8 changes: 8 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,8 @@
<unitils.version>3.3</unitils.version>
<!-- Netty is used by Kinesis Video -->
<netty.version>4.1.44.Final</netty.version>
<!-- Reproducible Builds jar entries timestamp: https://maven.apache.org/guides/mini/guide-reproducible-builds.html -->
<project.build.outputTimestamp>2020-02-08T08:04:00Z</project.build.outputTimestamp>
</properties>
<dependencyManagement>
<dependencies>
Expand Down Expand Up @@ -351,6 +353,12 @@
</includes>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version>
</plugin>
</plugins>
</pluginManagement>
</build>
Expand Down