File tree 4 files changed +12
-14
lines changed
src/main/java/net/lecousin/framework/math
net.lecousin.framework.log.bridges/commons-logging
4 files changed +12
-14
lines changed Original file line number Diff line number Diff line change @@ -10,22 +10,17 @@ is recommended for better performances on disk operations (detection of physical
10
10
11
11
## Build status
12
12
13
- Current version:
14
- [ 0.8.0] ( https://github.com/lecousin/java-framework-core/releases/tag/0.8.0 " Download ")
15
-
16
- Modules:
17
- * core 0.8.0
18
- [ Javadoc] ( https://www.javadoc.io/doc/net.lecousin/core/0.8.0 " Javadoc ")
19
- [ Maven Central Repository] ( http://search.maven.org/#artifactdetails%7Cnet.lecousin%7Ccore%7C0.8.0%7Cjar " Maven ")
20
- * log.bridges.commons-logging 0.1.0
21
- [ Javadoc] ( https://www.javadoc.io/doc/net.lecousin.framework/log.bridges.commons-logging/0.1.0 " Javadoc ")
22
- [ Maven Central Repository] ( http://search.maven.org/#artifactdetails%7Cnet.lecousin.framework%7Clog.bridges.commons-logging%7C0.1.0%7Cjar " Maven ")
23
-
24
13
Master: ![ build status] ( https://travis-ci.org/lecousin/java-framework-core.svg?branch=master " Build Status ")
25
14
26
15
Branch 0.8: ![ build status] ( https://travis-ci.org/lecousin/java-framework-core.svg?branch=0.8 " Build Status ")
27
16
28
- Branch 0.9: ![ build status] ( https://travis-ci.org/lecousin/java-framework-core.svg?branch=0.9 " Build Status ")
17
+ Modules with current version:
18
+ * core 0.8.1
19
+ [ Javadoc] ( https://www.javadoc.io/doc/net.lecousin/core/0.8.1 " Javadoc ")
20
+ [ Maven Central Repository] ( http://search.maven.org/#artifactdetails%7Cnet.lecousin%7Ccore%7C0.8.1%7Cjar " Maven ")
21
+ * log.bridges.commons-logging 0.1.0
22
+ [ Javadoc] ( https://www.javadoc.io/doc/net.lecousin.framework/log.bridges.commons-logging/0.1.0 " Javadoc ")
23
+ [ Maven Central Repository] ( http://search.maven.org/#artifactdetails%7Cnet.lecousin.framework%7Clog.bridges.commons-logging%7C0.1.0%7Cjar " Maven ")
29
24
30
25
## Multi-threading
31
26
Original file line number Diff line number Diff line change 3
3
<modelVersion >4.0.0</modelVersion >
4
4
<groupId >net.lecousin</groupId >
5
5
<artifactId >core</artifactId >
6
- <version >0.8.0 </version >
6
+ <version >0.8.1 </version >
7
7
8
8
<parent >
9
9
<groupId >net.lecousin</groupId >
Original file line number Diff line number Diff line change 6
6
import java .lang .annotation .Target ;
7
7
import java .util .ArrayList ;
8
8
9
+ import edu .umd .cs .findbugs .annotations .SuppressFBWarnings ;
10
+
9
11
import net .lecousin .framework .plugins .ExtensionPoint ;
10
12
import net .lecousin .framework .plugins .Plugin ;
11
13
@@ -45,6 +47,7 @@ public static interface Converter extends Plugin {
45
47
public static class ConverterRegistry implements ExtensionPoint <Converter > {
46
48
47
49
/** Constructor. */
50
+ @ SuppressFBWarnings ("ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD" )
48
51
public ConverterRegistry () {
49
52
instance = this ;
50
53
converters .add (new TimeUnit .Converter ());
Original file line number Diff line number Diff line change 57
57
<dependency >
58
58
<groupId >net.lecousin</groupId >
59
59
<artifactId >core</artifactId >
60
- <version >0.8.0 </version >
60
+ <version >0.8.1 </version >
61
61
</dependency >
62
62
</dependencies >
63
63
You can’t perform that action at this time.
0 commit comments