Skip to content

Commit

Permalink
Exclude common-logging from the cucumber-android dependencies
Browse files Browse the repository at this point in the history
PR #742 missed to exclude the common-logging from the cucumber-android
dependencies.
  • Loading branch information
brasmusson committed Jul 28, 2014
1 parent 9a9a51f commit c7dc4d6
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
2 changes: 1 addition & 1 deletion android/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.1.8" package="cucumber.api.android">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.1.9-SNAPSHOT" package="cucumber.api.android">
</manifest>
16 changes: 6 additions & 10 deletions android/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,12 @@
<artifactId>robolectric</artifactId>
<version>2.1.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.android</groupId>
<artifactId>android</artifactId>
<version>4.1.1.4</version>
</dependency>
<dependency>
<groupId>com.google.android</groupId>
<artifactId>android</artifactId>
<version>4.1.1.4</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>

Expand Down
6 changes: 6 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -424,6 +424,12 @@
<artifactId>android</artifactId>
<version>${android.version}</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
Expand Down

0 comments on commit c7dc4d6

Please sign in to comment.