Ver código fonte

Update README.md

KrYounger 6 anos atrás
pai
commit
bd1fca498e
Nenhuma conta conectada ao e-mail do autor de commit
1 arquivos alterados com 4 adições e 2 exclusões
  1. 4
    2
      README.md

+ 4
- 2
README.md Ver arquivo

@@ -46,9 +46,11 @@ HttpURLConnection https://docs.oracle.com/javase/8/docs/api/java/net/HttpURLConn
46 46
 * Square's OKHttp https://github.com/square/okhttp
47 47
 
48 48
 Be prepared to defend your choice if which HTTP client library you chose, with reasons why you chose it.
49
-You should also create some unit tests for your REST API handlers.
49
+You should also create some unit tests for your REST API handlers. You should look at how ItelliJ does management of
50
+dependencies. (You'll be modifying the `pom.xml` file.) Usually, you merely need to add a `dependency` clause to the `dependencies`
51
+clause in the pom.xml. 
50 52
 
51
-It's possible you may also need to understand some of what the Jackson package does for you. 
53
+It's possible you may also need to understand some of what the Jackson package does for you. `jackson` will also need to be inserted into the `pom.xml` file, with a dependency clause.
52 54
 
53 55
 * jackson json https://github.com/FasterXML/jackson
54 56