Browse Source

Fix compatibility issues and .gitignore

David Ginzberg 7 years ago
parent
commit
88afef8be5
5 changed files with 12 additions and 17 deletions
  1. BIN
      .DS_Store
  2. 9
    0
      .gitignore
  3. 2
    15
      pom.xml
  4. BIN
      src/.DS_Store
  5. 1
    2
      src/main/java/com/zipcodewilmington/phone/PhoneNumberFactory.java

BIN
.DS_Store View File


+ 9
- 0
.gitignore View File

@@ -1,3 +1,12 @@
1 1
 .idea/*
2 2
 *.iml
3 3
 target/*
4
+
5
+.project
6
+.settings
7
+.classpath
8
+
9
+.DS_Store
10
+
11
+*.class
12
+

+ 2
- 15
pom.xml View File

@@ -20,24 +20,11 @@
20 20
         </plugins>
21 21
     </build>
22 22
     <dependencies>
23
-
24
-        <dependency>
25
-            <groupId>org.slf4j</groupId>
26
-            <artifactId>slf4j-api</artifactId>
27
-            <version>1.7.5</version>
28
-        </dependency>
29
-
30
-        <dependency>
31
-            <groupId>org.slf4j</groupId>
32
-            <artifactId>slf4j-log4j12</artifactId>
33
-            <version>1.7.5</version>
34
-        </dependency>
35
-
36 23
         <dependency>
37 24
             <groupId>junit</groupId>
38 25
             <artifactId>junit</artifactId>
39
-            <version>RELEASE</version>
26
+            <version>4.12</version>
40 27
         </dependency>
41 28
     </dependencies>
42 29
 
43
-</project>
30
+</project>

BIN
src/.DS_Store View File


+ 1
- 2
src/main/java/com/zipcodewilmington/phone/PhoneNumberFactory.java View File

@@ -1,6 +1,5 @@
1 1
 package com.zipcodewilmington.phone;
2 2
 
3
-import com.sun.javafx.binding.Logging;
4 3
 import com.zipcodewilmington.exceptions.InvalidPhoneNumberFormatException;
5 4
 
6 5
 import java.util.logging.Logger;
@@ -50,4 +49,4 @@ public final class PhoneNumberFactory {
50 49
     public static PhoneNumber createPhoneNumber(String phoneNumberString) {
51 50
         return null;
52 51
     }
53
-}
52
+}