From 18df7846c45e305802b2547668c7d6dd438be36d Mon Sep 17 00:00:00 2001 From: "Brian M. Long" Date: Fri, 9 Jun 2023 10:45:08 -0400 Subject: [PATCH] removed excess spring requirement --- pom.xml | 11 ------- .../CxfActivitiExtSpringComponentScanner.java | 29 ------------------- 2 files changed, 40 deletions(-) delete mode 100644 src/main/java/com/activiti/extension/conf/CxfActivitiExtSpringComponentScanner.java diff --git a/pom.xml b/pom.xml index e9239d2..b71a33c 100644 --- a/pom.xml +++ b/pom.xml @@ -54,11 +54,6 @@ - - org.springframework - spring-context - provided - com.sun.xml.bind jaxb-impl @@ -215,12 +210,6 @@ - - org.springframework - spring-context - ${spring.version} - - org.apache.cxf diff --git a/src/main/java/com/activiti/extension/conf/CxfActivitiExtSpringComponentScanner.java b/src/main/java/com/activiti/extension/conf/CxfActivitiExtSpringComponentScanner.java deleted file mode 100644 index 4bae258..0000000 --- a/src/main/java/com/activiti/extension/conf/CxfActivitiExtSpringComponentScanner.java +++ /dev/null @@ -1,29 +0,0 @@ -/* - * This program is free software: you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation, either version 3 of the License, or (at your - * option) any later version. - * - * This program is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for - * more details. - * - * You should have received a copy of the GNU General Public License along - * with this program. If not, see . - */ -package com.activiti.extension.conf; - -import org.springframework.context.annotation.ComponentScan; -import org.springframework.context.annotation.Configuration; - -/** - * A means for injecting packages to scan for the Spring context. - * - * @author brian@inteligr8.com - */ -@Configuration -@ComponentScan(basePackages = "${activiti-ext.scan.packages}") -public class CxfActivitiExtSpringComponentScanner { - -}