You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by he...@apache.org on 2022/08/17 11:40:23 UTC

[brooklyn-ui] branch master updated (1d1e0c11 -> ca85f4c4)

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

heneveld pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/brooklyn-ui.git


    from 1d1e0c11 remote verify goal on features
     new 6838d982 Revert "remote verify goal on features"
     new ca85f4c4 skip the maven-karaf-verify goal as that interferes with subsequent builds

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 modularity-server/features/pom.xml | 1 +
 ui-modules/features/pom.xml        | 9 +++++++++
 2 files changed, 10 insertions(+)


[brooklyn-ui] 02/02: skip the maven-karaf-verify goal as that interferes with subsequent builds

Posted by he...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

heneveld pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/brooklyn-ui.git

commit ca85f4c49d43574a9740067f930f0ff794cfc556
Author: Alex Heneveld <al...@cloudsoft.io>
AuthorDate: Wed Aug 17 12:39:43 2022 +0100

    skip the maven-karaf-verify goal as that interferes with subsequent builds
---
 ui-modules/features/pom.xml | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/ui-modules/features/pom.xml b/ui-modules/features/pom.xml
index 546e5f23..43fce6ea 100644
--- a/ui-modules/features/pom.xml
+++ b/ui-modules/features/pom.xml
@@ -126,6 +126,15 @@
                 <configuration>
                     <startLevel>100</startLevel>
                 </configuration>
+
+                <executions>
+                  <execution>
+                    <!-- override this id so that 'verify' doesn't run by default, as this mojo sets system property karaf.home = target/karaf which can break subsequent KAR builds -->
+                    <id>default-verify</id>
+                    <phase>NEVER</phase>
+                  </execution>
+                </executions>
+
             </plugin>
         </plugins>
     </build>


[brooklyn-ui] 01/02: Revert "remote verify goal on features"

Posted by he...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

heneveld pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/brooklyn-ui.git

commit 6838d9820a91a657109f0b08a9b2770a96d1b58e
Author: Alex Heneveld <al...@cloudsoft.io>
AuthorDate: Wed Aug 17 12:10:29 2022 +0100

    Revert "remote verify goal on features"
    
    This reverts commit 1d1e0c11cfb0eb76186605ba8650c8e284e89d1f.
    
    Previous change only affected Eclipse IDE, not maven.
---
 modularity-server/features/pom.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/modularity-server/features/pom.xml b/modularity-server/features/pom.xml
index 11c1bfe3..ed099beb 100644
--- a/modularity-server/features/pom.xml
+++ b/modularity-server/features/pom.xml
@@ -188,6 +188,7 @@
                         <artifactId>karaf-maven-plugin</artifactId>
                         <versionRange>[4.2.1,)</versionRange>
                         <goals>
+                          <goal>verify</goal>
                           <goal>features-generate-descriptor</goal>
                         </goals>
                       </pluginExecutionFilter>