Skip to content

Commit 620d2d2

Browse files
committed
v0.10.0
1 parent d8ce9e2 commit 620d2d2

File tree

17 files changed

+469
-21
lines changed

17 files changed

+469
-21
lines changed

README.md

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,18 @@ is recommended for better performances on disk operations (detection of physical
1717
[![Codecov](https://codecov.io/gh/lecousin/java-framework-core/graph/badge.svg)](https://codecov.io/gh/lecousin/java-framework-core/branch/master)
1818

1919
- core [![Maven Central](https://img.shields.io/maven-central/v/net.lecousin/core.svg)](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22net.lecousin%22%20AND%20a%3A%22core%22)
20-
[![Javadoc](https://img.shields.io/badge/javadoc-0.9.16-brightgreen.svg)](https://www.javadoc.io/doc/net.lecousin/core/0.9.16)
20+
[![Javadoc](https://img.shields.io/badge/javadoc-0.10.0-brightgreen.svg)](https://www.javadoc.io/doc/net.lecousin/core/0.10.0)
2121

2222
- core.javaee [![Maven Central](https://img.shields.io/maven-central/v/net.lecousin/core.javaee.svg)](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22net.lecousin%22%20AND%20a%3A%22core.javaee%22)
23-
[![Javadoc](https://img.shields.io/badge/javadoc-0.9.0-brightgreen.svg)](https://www.javadoc.io/doc/net.lecousin/core.javaee/0.9.0)
23+
[![Javadoc](https://img.shields.io/badge/javadoc-0.10.0-brightgreen.svg)](https://www.javadoc.io/doc/net.lecousin/core.javaee/0.10.0)
2424

2525
- log.bridges.commons-logging [![Maven Central](https://img.shields.io/maven-central/v/net.lecousin.framework/log.bridges.commons-logging.svg)](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22net.lecousin.framework%22%20AND%20a%3A%22log.bridges.commons-logging%22)
26-
[![Javadoc](https://img.shields.io/badge/javadoc-0.1.1-brightgreen.svg)](https://www.javadoc.io/doc/net.lecousin.framework/log.bridges.commons-logging/0.1.1)
27-
28-
### Next minor release - branch 0.9
29-
30-
![build status](https://travis-ci.org/lecousin/java-framework-core.svg?branch=0.9 "Build Status")
31-
![build status](https://ci.appveyor.com/api/projects/status/github/lecousin/java-framework-core?branch=0.9&svg=true "Build Status")
32-
[![Codecov](https://codecov.io/gh/lecousin/java-framework-core/branch/0.9/graph/badge.svg)](https://codecov.io/gh/lecousin/java-framework-core/branch/0.9)
26+
[![Javadoc](https://img.shields.io/badge/javadoc-0.10.0-brightgreen.svg)](https://www.javadoc.io/doc/net.lecousin.framework/log.bridges.commons-logging/0.10.0)
3327

34-
### Next major release - branch 0.10
28+
- log.bridges.slf4j [![Maven Central](https://img.shields.io/maven-central/v/net.lecousin.framework/log.bridges.slf4j.svg)](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22net.lecousin.framework%22%20AND%20a%3A%22log.bridges.slf4j%22)
29+
[![Javadoc](https://img.shields.io/badge/javadoc-0.10.0-brightgreen.svg)](https://www.javadoc.io/doc/net.lecousin.framework/log.bridges.slf4j/0.10.0)
30+
31+
### Branch 0.10
3532

3633
![build status](https://travis-ci.org/lecousin/java-framework-core.svg?branch=0.10 "Build Status")
3734
![build status](https://ci.appveyor.com/api/projects/status/github/lecousin/java-framework-core?branch=0.10&svg=true "Build Status")

core.javaee/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
<parent>
44
<groupId>net.lecousin</groupId>
55
<artifactId>core-parent-pom</artifactId>
6-
<version>0.9.0</version>
6+
<version>0.10.0</version>
77
</parent>
88
<artifactId>core.javaee</artifactId>
9-
<version>0.9.0</version>
9+
<version>0.10.0</version>
1010
<dependencies>
1111
<dependency>
1212
<groupId>net.lecousin</groupId>
1313
<artifactId>core</artifactId>
14-
<version>0.9.16</version>
14+
<version>0.10.0</version>
1515
</dependency>
1616
<dependency>
1717
<groupId>javax.enterprise.concurrent</groupId>

net.lecousin.core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44
<artifactId>core</artifactId>
5-
<version>0.9.16</version>
5+
<version>0.10.0</version>
66

77
<parent>
88
<groupId>net.lecousin</groupId>
99
<artifactId>core-parent-pom</artifactId>
10-
<version>0.9.0</version>
10+
<version>0.10.0</version>
1111
</parent>
1212

1313
<name>lecousin.net Java core framework</name>

net.lecousin.framework.log.bridges/commons-logging/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
22
<modelVersion>4.0.0</modelVersion>
33
<artifactId>log.bridges.commons-logging</artifactId>
4-
<version>0.1.1</version>
4+
<version>0.10.0</version>
55

66
<parent>
77
<groupId>net.lecousin.framework</groupId>
88
<artifactId>log.bridges</artifactId>
9-
<version>0.1.1</version>
9+
<version>0.10.0</version>
1010
<relativePath>..</relativePath>
1111
</parent>
1212

net.lecousin.framework.log.bridges/pom.xml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,17 @@
33
<groupId>net.lecousin.framework</groupId>
44
<artifactId>log.bridges</artifactId>
55
<packaging>pom</packaging>
6-
<version>0.1.1</version>
6+
<version>0.10.0</version>
77

88
<parent>
99
<groupId>net.lecousin</groupId>
1010
<artifactId>core-parent-pom</artifactId>
11-
<version>0.9.0</version>
11+
<version>0.10.0</version>
1212
</parent>
1313

1414
<modules>
1515
<module>commons-logging</module>
16+
<module>slf4j</module>
1617
</modules>
1718

1819
<licenses>
@@ -35,7 +36,7 @@
3536
<dependency>
3637
<groupId>net.lecousin</groupId>
3738
<artifactId>core</artifactId>
38-
<version>0.9.16</version>
39+
<version>0.10.0</version>
3940
</dependency>
4041
</dependencies>
4142
</dependencyManagement>
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" output="target/classes" path="src/main/java">
4+
<attributes>
5+
<attribute name="optional" value="true"/>
6+
<attribute name="maven.pomderived" value="true"/>
7+
</attributes>
8+
</classpathentry>
9+
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
10+
<attributes>
11+
<attribute name="maven.pomderived" value="true"/>
12+
</attributes>
13+
</classpathentry>
14+
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
15+
<attributes>
16+
<attribute name="optional" value="true"/>
17+
<attribute name="maven.pomderived" value="true"/>
18+
</attributes>
19+
</classpathentry>
20+
<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources">
21+
<attributes>
22+
<attribute name="maven.pomderived" value="true"/>
23+
</attributes>
24+
</classpathentry>
25+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
26+
<attributes>
27+
<attribute name="maven.pomderived" value="true"/>
28+
</attributes>
29+
</classpathentry>
30+
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
31+
<attributes>
32+
<attribute name="maven.pomderived" value="true"/>
33+
</attributes>
34+
</classpathentry>
35+
<classpathentry kind="output" path="target/classes"/>
36+
</classpath>
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>net.lecousin.framework.log.bridges.slf4j</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>org.eclipse.m2e.core.maven2Builder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
</buildSpec>
19+
<natures>
20+
<nature>org.eclipse.jdt.core.javanature</nature>
21+
<nature>org.eclipse.m2e.core.maven2Nature</nature>
22+
</natures>
23+
</projectDescription>
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
3+
org.eclipse.jdt.core.compiler.compliance=1.8
4+
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
5+
org.eclipse.jdt.core.compiler.source=1.8
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
activeProfiles=
2+
eclipse.preferences.version=1
3+
resolveWorkspaceProjects=true
4+
version=1
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
eclipse.preferences.version=1
2+
org.jboss.ide.eclipse.as.core.singledeployable.deployableList=

0 commit comments

Comments
 (0)