Skip to content

Commit

Permalink
Merge pull request #22 from tubbynl/master
Browse files Browse the repository at this point in the history
unused imports and updated .gitignore
  • Loading branch information
stil4m authored Oct 27, 2016
2 parents 6186552 + 48a3450 commit d0d530e
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 27 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
target
.project
.settings
19 changes: 6 additions & 13 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@
<name>Mollie API</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<junit-version>4.11</junit-version>
<org.mockito-mockito-all-version>1.10.19</org.mockito-mockito-all-version>
<junit.version>4.11</junit.version>
<mockito.version>1.10.19</mockito.version>
<jackson.version>2.8.0</jackson.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>

<dependencies>
Expand All @@ -20,7 +22,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit-dep</artifactId>
<version>${junit-version}</version>
<version>${junit.version}</version>
<scope>test</scope>
<exclusions>
<exclusion>
Expand All @@ -32,7 +34,7 @@
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${org.mockito-mockito-all-version}</version>
<version>${mockito.version}</version>
<scope>test</scope>
<exclusions>
<exclusion>
Expand Down Expand Up @@ -84,15 +86,6 @@

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
Expand Down
5 changes: 0 additions & 5 deletions src/main/java/nl/stil4m/mollie/Client.java
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
package nl.stil4m.mollie;

import nl.stil4m.mollie.concepts.*;
import nl.stil4m.mollie.domain.CreatePayment;
import nl.stil4m.mollie.domain.CreatedPayment;
import nl.stil4m.mollie.domain.Payment;

import java.io.IOException;

public class Client {

Expand Down
6 changes: 0 additions & 6 deletions src/main/java/nl/stil4m/mollie/DynamicClient.java
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
package nl.stil4m.mollie;

import nl.stil4m.mollie.concepts.*;
import nl.stil4m.mollie.domain.ApiKeyCheck;
import nl.stil4m.mollie.domain.CreatePayment;
import nl.stil4m.mollie.domain.CreatedPayment;
import nl.stil4m.mollie.domain.Payment;

import java.io.IOException;

public class DynamicClient {

Expand Down
1 change: 0 additions & 1 deletion src/main/java/nl/stil4m/mollie/concepts/Methods.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@

import java.io.IOException;
import java.net.URISyntaxException;
import java.util.List;
import java.util.Optional;

import static nl.stil4m.mollie.Util.validatePaymentId;
Expand Down
1 change: 0 additions & 1 deletion src/test/java/nl/stil4m/mollie/ClientIntegrationTest.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package nl.stil4m.mollie;

import com.fasterxml.jackson.databind.ObjectMapper;
import com.google.common.collect.Sets;
import nl.stil4m.mollie.domain.CreatePayment;
import nl.stil4m.mollie.domain.CreatedPayment;
Expand Down
1 change: 0 additions & 1 deletion src/test/java/nl/stil4m/mollie/IssuesIntegrationTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import com.fasterxml.jackson.databind.ObjectMapper;
import nl.stil4m.mollie.domain.CreatePayment;
import nl.stil4m.mollie.domain.CreatedPayment;
import nl.stil4m.mollie.domain.subpayments.ideal.CreateIdealPayment;
import nl.stil4m.mollie.domain.subpayments.ideal.IdealPaymentOptions;
import org.junit.Before;
Expand Down

0 comments on commit d0d530e

Please sign in to comment.