You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2021/11/10 11:16:43 UTC

[isis] branch master updated: ISIS-2891: further remove @ComponentScan

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

ahuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/isis.git


The following commit(s) were added to refs/heads/master by this push:
     new e345c56  ISIS-2891: further remove @ComponentScan
e345c56 is described below

commit e345c561cf8125f20750a4cad7aa6cb4ce67a78a
Author: Andi Huber <ah...@apache.org>
AuthorDate: Wed Nov 10 12:16:36 2021 +0100

    ISIS-2891: further remove @ComponentScan
---
 .../extensions/jaxrsclient/impl/IsisModuleExtJaxRsClientImpl.java   | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/mappings/jaxrsclient/impl/src/main/java/org/apache/isis/extensions/jaxrsclient/impl/IsisModuleExtJaxRsClientImpl.java b/mappings/jaxrsclient/impl/src/main/java/org/apache/isis/extensions/jaxrsclient/impl/IsisModuleExtJaxRsClientImpl.java
index 932fff9..9a98a7e 100644
--- a/mappings/jaxrsclient/impl/src/main/java/org/apache/isis/extensions/jaxrsclient/impl/IsisModuleExtJaxRsClientImpl.java
+++ b/mappings/jaxrsclient/impl/src/main/java/org/apache/isis/extensions/jaxrsclient/impl/IsisModuleExtJaxRsClientImpl.java
@@ -18,14 +18,16 @@
  */
 package org.apache.isis.extensions.jaxrsclient.impl;
 
-import org.springframework.context.annotation.ComponentScan;
 import org.springframework.context.annotation.Configuration;
+import org.springframework.context.annotation.Import;
 
 /**
  * @since 2.0 {@index}
  */
 @Configuration
-@ComponentScan
+@Import({
+
+})
 public class IsisModuleExtJaxRsClientImpl {
 
 }