You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aries.apache.org by ro...@apache.org on 2021/01/06 17:05:26 UTC

[aries-jax-rs-whiteboard] branch master updated (9b24fb9 -> 86e0044)

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

rotty3000 pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/aries-jax-rs-whiteboard.git.


    from 9b24fb9  update resolution results
     new 624222c  add flattened pom plugin
     new c779884  quiet host bundle warning
     new c53b142  exclude flatten from eclipse execution
     new 86e0044  add bnd snapshot repository for testing

The 4 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:
 .gitignore                     |  1 +
 jax-rs.itests-fragment/bnd.bnd |  4 ++-
 pom.xml                        | 60 ++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 64 insertions(+), 1 deletion(-)


[aries-jax-rs-whiteboard] 02/04: quiet host bundle warning

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

rotty3000 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/aries-jax-rs-whiteboard.git

commit c7798841167e72624a52418b3956f105adfb8136
Author: Raymond Auge <ro...@apache.org>
AuthorDate: Sat Dec 19 22:22:32 2020 -0500

    quiet host bundle warning
    
    Signed-off-by: Raymond Auge <ro...@apache.org>
---
 jax-rs.itests-fragment/bnd.bnd | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/jax-rs.itests-fragment/bnd.bnd b/jax-rs.itests-fragment/bnd.bnd
index 0116d03..cbac9ca 100644
--- a/jax-rs.itests-fragment/bnd.bnd
+++ b/jax-rs.itests-fragment/bnd.bnd
@@ -53,4 +53,6 @@ Export-Package:\
 	org.apache.cxf.common.util;version="3.2.13"
 
 -resourceonly: true
--fixupmessages: Classpath is empty...;is:=ignore
+-fixupmessages: \
+	Classpath is empty...;is:=ignore,\
+	"Host org.apache.aries.jax.rs.whiteboard="


[aries-jax-rs-whiteboard] 01/04: add flattened pom plugin

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

rotty3000 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/aries-jax-rs-whiteboard.git

commit 624222c5b64f7cfa86a7030edfd88c466c31f42b
Author: Raymond Auge <ro...@apache.org>
AuthorDate: Sat Dec 19 22:19:48 2020 -0500

    add flattened pom plugin
    
    Signed-off-by: Raymond Auge <ro...@apache.org>
---
 .gitignore |  1 +
 pom.xml    | 26 ++++++++++++++++++++++++++
 2 files changed, 27 insertions(+)

diff --git a/.gitignore b/.gitignore
index 7081da0..f01ca9b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,6 +4,7 @@
 *.iml
 .classpath
 .project
+.flattened-pom.xml
 .settings/
 */bin/
 **/build/
diff --git a/pom.xml b/pom.xml
index 893dd4b..8b08d9b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -487,6 +487,32 @@
                 </plugin>
             </plugins>
         </pluginManagement>
+        <plugins>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>flatten-maven-plugin</artifactId>
+                <version>1.2.5</version>
+                <configuration>
+                    <flattenMode>oss</flattenMode>
+                </configuration>
+                <executions>
+                    <execution>
+                        <id>flatten</id>
+                        <phase>process-resources</phase>
+                        <goals>
+                            <goal>flatten</goal>
+                        </goals>
+                    </execution>
+                    <execution>
+                        <id>flatten-clean</id>
+                        <phase>clean</phase>
+                        <goals>
+                            <goal>clean</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
     </build>
 
     <profiles>


[aries-jax-rs-whiteboard] 03/04: exclude flatten from eclipse execution

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

rotty3000 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/aries-jax-rs-whiteboard.git

commit c53b142d4e5c6caed3033bd8b41b983dc3b8bea0
Author: Raymond Auge <ro...@apache.org>
AuthorDate: Wed Jan 6 12:01:39 2021 -0500

    exclude flatten from eclipse execution
---
 pom.xml | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/pom.xml b/pom.xml
index 8b08d9b..63524a8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -481,6 +481,25 @@
                                         </ignore>
                                     </action>
                                 </pluginExecution>
+                                <pluginExecution>
+                                    <pluginExecutionFilter>
+                                        <groupId>
+                                            org.codehaus.mojo
+                                        </groupId>
+                                        <artifactId>
+                                            flatten-maven-plugin
+                                        </artifactId>
+                                        <versionRange>
+                                            [1.2.5,)
+                                        </versionRange>
+                                        <goals>
+                                            <goal>flatten</goal>
+                                        </goals>
+                                    </pluginExecutionFilter>
+                                    <action>
+                                        <ignore></ignore>
+                                    </action>
+                                </pluginExecution>
                             </pluginExecutions>
                         </lifecycleMappingMetadata>
                     </configuration>


[aries-jax-rs-whiteboard] 04/04: add bnd snapshot repository for testing

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

rotty3000 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/aries-jax-rs-whiteboard.git

commit 86e004413ea32da4dda6fedaa4167deeb5f78e53
Author: Raymond Auge <ro...@apache.org>
AuthorDate: Wed Jan 6 12:01:54 2021 -0500

    add bnd snapshot repository for testing
    
    Signed-off-by: Raymond Auge <ro...@apache.org>
---
 pom.xml | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/pom.xml b/pom.xml
index 63524a8..88d21a5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -559,4 +559,19 @@
         </plugins>
     </reporting>
 
+    <repositories>
+        <repository>
+            <id>ossrh</id>
+            <url>https://oss.sonatype.org/content/repositories/snapshots</url>
+            <releases><enabled>false</enabled></releases>
+            <snapshots><enabled>true</enabled></snapshots>
+        </repository>
+        <repository>
+            <id>bndtools-snapshots</id>
+            <url>https://bndtools.jfrog.io/artifactory/libs-snapshot-local</url>
+            <releases><enabled>false</enabled></releases>
+            <snapshots><enabled>true</enabled></snapshots>
+        </repository>
+    </repositories>
+
 </project>