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 fd3892c7634f2bcc1747765ffb626dc07fc411dc Author: Raymond Auge <[email protected]> AuthorDate: Fri Nov 5 09:26:52 2021 -0400 fix rest-management run Signed-off-by: Raymond Auge <[email protected]> --- .../rest-management-itest/itest.bndrun | 2 +- .../rest-management/rest-management-itest/pom.xml | 24 ++++++++++++++++++++++ 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/integrations/rest-management/rest-management-itest/itest.bndrun b/integrations/rest-management/rest-management-itest/itest.bndrun index 093d703..1d9f0d0 100644 --- a/integrations/rest-management/rest-management-itest/itest.bndrun +++ b/integrations/rest-management/rest-management-itest/itest.bndrun @@ -31,7 +31,7 @@ jaxb.export: javax.xml.bind;javax.xml.bind.annotation;javax.xml.bind.helpers;jav org.slf4j.helpers;version=${slf4j.version},\ org.slf4j.spi;version=${slf4j.version},\ com.sun.net.httpserver,\ - ${if;${is;${-runee};JavaSE-1.8};${jaxb.export}} + ${if;${is;${def;-runee};JavaSE-1.8};${jaxb.export}} -runfw: org.eclipse.osgi diff --git a/integrations/rest-management/rest-management-itest/pom.xml b/integrations/rest-management/rest-management-itest/pom.xml index 501e022..2732591 100644 --- a/integrations/rest-management/rest-management-itest/pom.xml +++ b/integrations/rest-management/rest-management-itest/pom.xml @@ -65,6 +65,24 @@ <scope>test</scope> </scopes> </configuration> + <executions> + <execution> + <id>rest-management</id> + <configuration> + <failOnChanges>false</failOnChanges> + <includeDependencyManagement>true</includeDependencyManagement> + <reportOptional>false</reportOptional> + <bndruns> + <bndrun>rest-management.bndrun</bndrun> + </bndruns> + <scopes> + <scope>compile</scope> + <scope>runtime</scope> + <scope>test</scope> + </scopes> + </configuration> + </execution> + </executions> </plugin> <plugin> <groupId>biz.aQute.bnd</groupId> @@ -96,6 +114,12 @@ </executions> <configuration> <bndrun>rest-management.bndrun</bndrun> + <includeDependencyManagement>true</includeDependencyManagement> + <scopes> + <scope>compile</scope> + <scope>runtime</scope> + <scope>test</scope> + </scopes> </configuration> </plugin> <plugin>
