You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ca...@apache.org on 2020/03/23 18:58:58 UTC

[royale-compiler] branch develop updated: - Moved the reproducible-build-plugin out of the pluginmanagement into the plugins section in order to make it actually do something.

This is an automated email from the ASF dual-hosted git repository.

carlosrovira pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git


The following commit(s) were added to refs/heads/develop by this push:
     new ec7af64  - Moved the reproducible-build-plugin out of the pluginmanagement into the plugins section in order to make it actually do something.
     new 7857189  Merge pull request #132 from chrisdutz/develop
ec7af64 is described below

commit ec7af64757c212372b929eb5875d61a987d21bd1
Author: Christofer Dutz <ch...@c-ware.de>
AuthorDate: Mon Mar 23 19:57:52 2020 +0100

    - Moved the reproducible-build-plugin out of the pluginmanagement into the plugins section in order to make it actually do something.
---
 compiler-build-tools/pom.xml | 26 +++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/compiler-build-tools/pom.xml b/compiler-build-tools/pom.xml
index a04dbdc..8f703c4 100644
--- a/compiler-build-tools/pom.xml
+++ b/compiler-build-tools/pom.xml
@@ -63,6 +63,19 @@
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-javadoc-plugin</artifactId>
       </plugin>
+      <!-- This plugin cleans up the jars for anything that might cause problems for reproducible builds -->
+      <plugin>
+        <groupId>io.github.zlika</groupId>
+        <artifactId>reproducible-build-maven-plugin</artifactId>
+        <version>0.11</version>
+        <executions>
+          <execution>
+            <goals>
+              <goal>strip-jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
     </plugins>
     <pluginManagement>
       <plugins>
@@ -107,19 +120,6 @@
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-resources-plugin</artifactId>
         </plugin>
-        <!-- This plugin cleans up the jars for anything that might cause problems for reproducible builds -->
-        <plugin>
-          <groupId>io.github.zlika</groupId>
-          <artifactId>reproducible-build-maven-plugin</artifactId>
-          <version>0.11</version>
-          <executions>
-            <execution>
-              <goals>
-                <goal>strip-jar</goal>
-              </goals>
-            </execution>
-          </executions>
-        </plugin>
       </plugins>
     </pluginManagement>
   </build>