Skip to content

Commit 02633e0

Browse files
committed
Changed log level to be an enum
1 parent bf808e0 commit 02633e0

File tree

4 files changed

+136
-88
lines changed

4 files changed

+136
-88
lines changed

pom.xml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
<name>SLF4J Android Logger</name>
1616
<description>SLF4J Android binding.</description>
17-
<url>http://psdev.de/energylogger-parser/</url>
17+
<url>http://psdev.de/slf4j-android-logger/</url>
1818
<inceptionYear>2013</inceptionYear>
1919
<version>1.0.2-SNAPSHOT</version>
2020

@@ -65,18 +65,32 @@
6565
<android.version>4.1.1.4</android.version>
6666
<slf4j-api.version>1.7.5</slf4j-api.version>
6767
<junit.version>4.11</junit.version>
68-
<robolectric.version>2.1.1</robolectric.version>
68+
<robolectric.version>2.2</robolectric.version>
6969

7070
<!-- Plugin Versions -->
7171
<maven-compiler-plugin.version>3.1</maven-compiler-plugin.version>
7272
<maven-source-plugin.version>2.2.1</maven-source-plugin.version>
7373
<maven-javadoc-plugin.version>2.9.1</maven-javadoc-plugin.version>
74-
<maven-release-plugin.version>2.4.1</maven-release-plugin.version>
74+
<maven-release-plugin.version>2.4.2</maven-release-plugin.version>
7575
<maven-gpg-plugin.version>1.4</maven-gpg-plugin.version>
7676
<jacoco-maven-plugin.version>0.6.4.201312101107</jacoco-maven-plugin.version>
7777
</properties>
7878

7979
<dependencies>
80+
<!-- Testing -->
81+
<dependency>
82+
<groupId>junit</groupId>
83+
<artifactId>junit</artifactId>
84+
<version>${junit.version}</version>
85+
<scope>test</scope>
86+
</dependency>
87+
<dependency>
88+
<groupId>org.robolectric</groupId>
89+
<artifactId>robolectric</artifactId>
90+
<version>${robolectric.version}</version>
91+
<scope>test</scope>
92+
</dependency>
93+
8094
<!-- Android -->
8195
<dependency>
8296
<groupId>com.google.android</groupId>
@@ -91,20 +105,6 @@
91105
<artifactId>slf4j-api</artifactId>
92106
<version>${slf4j-api.version}</version>
93107
</dependency>
94-
95-
<!-- Testing -->
96-
<dependency>
97-
<groupId>junit</groupId>
98-
<artifactId>junit</artifactId>
99-
<version>${junit.version}</version>
100-
<scope>test</scope>
101-
</dependency>
102-
<dependency>
103-
<groupId>org.robolectric</groupId>
104-
<artifactId>robolectric</artifactId>
105-
<version>${robolectric.version}</version>
106-
<scope>test</scope>
107-
</dependency>
108108
</dependencies>
109109

110110
<build>

0 commit comments

Comments
 (0)