Skip to content

Commit c0e4dc8

Browse files
author
kadary DEMBELE
committed
Pom's update
1 parent f975063 commit c0e4dc8

3 files changed

Lines changed: 24 additions & 24 deletions

File tree

.classpath

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
<attribute name="maven.pomderived" value="true"/>
77
</attributes>
88
</classpathentry>
9-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5">
9+
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
1010
<attributes>
1111
<attribute name="maven.pomderived" value="true"/>
1212
</attributes>
1313
</classpathentry>
14-
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
14+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7">
1515
<attributes>
1616
<attribute name="maven.pomderived" value="true"/>
1717
</attributes>

pom.xml

Lines changed: 22 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,23 @@
1-
<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">
2-
<modelVersion>4.0.0</modelVersion>
3-
<groupId>fr.esiea.project.logging</groupId>
4-
<artifactId>java-logger</artifactId>
5-
<version>0.0.1-SNAPSHOT</version>
6-
<build>
7-
<sourceDirectory>src</sourceDirectory>
8-
<plugins>
9-
<plugin>
10-
<artifactId>maven-compiler-plugin</artifactId>
11-
<version>3.1</version>
12-
<configuration>
13-
<source/>
14-
<target/>
15-
</configuration>
16-
</plugin>
17-
</plugins>
18-
</build>
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>fr.esiea.project.logging</groupId>
5+
<artifactId>java-logger</artifactId>
6+
<version>1.0</version>
7+
<build>
8+
<sourceDirectory>src</sourceDirectory>
9+
<plugins>
10+
<plugin>
11+
<artifactId>maven-compiler-plugin</artifactId>
12+
<version>3.1</version>
13+
<configuration>
14+
<source>1.7</source>
15+
<target>1.7</target>
16+
<excludes>
17+
<exclude>**project/architecture/javaLogger/test/*</exclude>
18+
</excludes>
19+
</configuration>
20+
</plugin>
21+
</plugins>
22+
</build>
1923
</project>

src/project/architecture/javaLogger/core/AbstractLogger.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -128,12 +128,10 @@ public boolean isDebugEnabled() {
128128
return isEnabled(Key.LevelDEBUG.name());
129129
}
130130

131-
@Override
132131
public boolean isTraceEnabled() {
133132
return isEnabled(Key.LevelTrace.name());
134133
}
135134

136-
@Override
137135
public void addHandler(Handler handler) {
138136
handlers.put(handler.getClass().getName(), handler);
139137
}
@@ -151,12 +149,10 @@ private void addHandlerClass(Class<?> configHandler) {
151149
}
152150
}
153151

154-
@Override
155152
public void setLevel(Level levelFixed) {
156153
this.levelFixed = levelFixed;
157154
}
158155

159-
@Override
160156
public void setFormater(Formater formater) {
161157
this.formater = formater;
162158
}

0 commit comments

Comments
 (0)