File tree Expand file tree Collapse file tree 3 files changed +32
-5
lines changed
com/erudika/para/server/cache Expand file tree Collapse file tree 3 files changed +32
-5
lines changed Original file line number Diff line number Diff line change 59
59
<dependency >
60
60
<groupId >com.erudika</groupId >
61
61
<artifactId >para-core</artifactId >
62
- <version >1.43.0 </version >
62
+ <version >1.43.1 </version >
63
63
<scope >provided</scope >
64
64
</dependency >
65
65
173
173
<consoleOutput >true</consoleOutput >
174
174
<failsOnError >true</failsOnError >
175
175
<linkXRef >false</linkXRef >
176
+ <excludes >**/module-info.java</excludes >
176
177
</configuration >
177
178
<goals >
178
179
<goal >check</goal >
248
249
<plugin >
249
250
<groupId >org.apache.maven.plugins</groupId >
250
251
<artifactId >maven-source-plugin</artifactId >
251
- <version >3.0 .1</version >
252
+ <version >3.2 .1</version >
252
253
<executions >
253
254
<execution >
254
255
<id >attach-sources</id >
262
263
<plugin >
263
264
<groupId >org.apache.maven.plugins</groupId >
264
265
<artifactId >maven-javadoc-plugin</artifactId >
265
- <version >3.1.0 </version >
266
+ <version >3.3.1 </version >
266
267
<executions >
267
268
<execution >
268
269
<id >attach-javadocs</id >
Original file line number Diff line number Diff line change 28
28
import java .util .Map .Entry ;
29
29
import java .util .TreeSet ;
30
30
import java .util .concurrent .TimeUnit ;
31
- import javax .inject .Singleton ;
32
31
import org .apache .commons .lang3 .StringUtils ;
33
32
import org .slf4j .Logger ;
34
33
import org .slf4j .LoggerFactory ;
41
40
* @see Cache
42
41
* @see HazelcastUtils
43
42
*/
44
- @ Singleton
45
43
public class HazelcastCache implements Cache {
46
44
47
45
private static final Logger logger = LoggerFactory .getLogger (HazelcastCache .class );
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright 2013-2021 Erudika. http://erudika.com
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ *
16
+ * For issues and patches go to: https://github.com/erudika
17
+ */
18
+
19
+ module com .erudika .para .server .cache .hazelcast {
20
+ requires com .erudika .para .core ;
21
+ requires org .apache .commons .lang3 ;
22
+ requires com .fasterxml .jackson .databind ;
23
+ requires org .slf4j ;
24
+ requires com .hazelcast .core ;
25
+ requires software .amazon .awssdk .regions ;
26
+ exports com .erudika .para .server .cache ;
27
+ provides com .erudika .para .core .cache .Cache with com .erudika .para .server .cache .HazelcastCache ;
28
+ }
You can’t perform that action at this time.
0 commit comments