File tree Expand file tree Collapse file tree
src/main/java/ai/aitia/arrowhead/application/library Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44 <parent >
55 <groupId >org.springframework.boot</groupId >
66 <artifactId >spring-boot-starter-parent</artifactId >
7- <version >2.1.5.RELEASE </version >
7+ <version >2.6.2 </version >
88 <relativePath /> <!-- lookup parent from repository -->
99 </parent >
1010
1111 <groupId >ai.aitia</groupId >
1212 <artifactId >arrowhead-application-library-java-spring</artifactId >
13- <version >4.4.0.1 </version >
13+ <version >4.4.0.2 </version >
1414 <packaging >jar</packaging >
1515
1616 <name >application-library-java-spring</name >
6060 <url >http://github.com/eclipse-arrowhead/application-library-java-spring/tree/master</url >
6161 </scm >
6262
63- <properties >
64- <log4j2 .version>2.17.0</log4j2 .version>
65- </properties >
66-
6763 <dependencies >
6864 <dependency >
6965 <groupId >ai.aitia</groupId >
9288 <artifactId >spring-boot-starter-security</artifactId >
9389 </dependency >
9490
91+ <dependency >
92+ <groupId >org.springframework.boot</groupId >
93+ <artifactId >spring-boot-starter-validation</artifactId >
94+ </dependency >
95+
9596 <dependency >
9697 <groupId >org.apache.httpcomponents</groupId >
9798 <artifactId >httpclient</artifactId >
Original file line number Diff line number Diff line change @@ -59,13 +59,6 @@ public abstract class ApplicationInitListener {
5959 //=================================================================================================
6060 // methods
6161
62- //-------------------------------------------------------------------------------------------------
63- @ Bean (CommonConstants .ARROWHEAD_CONTEXT )
64- @ DependsOn ("ArrowheadService" )
65- public Map <String ,Object > getArrowheadContext () {
66- return new ConcurrentHashMap <>();
67- }
68-
6962 //-------------------------------------------------------------------------------------------------
7063 @ EventListener
7164 @ Order (10 )
Original file line number Diff line number Diff line change 1+ package ai .aitia .arrowhead .application .library .util ;
2+
3+ import java .util .concurrent .ConcurrentHashMap ;
4+
5+ import org .springframework .stereotype .Component ;
6+
7+ import eu .arrowhead .common .CommonConstants ;
8+
9+ @ Component (CommonConstants .ARROWHEAD_CONTEXT )
10+ public class ArrowheadContext extends ConcurrentHashMap <String ,Object > {
11+
12+ private static final long serialVersionUID = -4506616943869170913L ;
13+ }
You can’t perform that action at this time.
0 commit comments