Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
update the pom file config
Browse files Browse the repository at this point in the history
  • Loading branch information
lanking520 committed Jan 16, 2019
1 parent 3456eb3 commit 32946a1
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 26 deletions.
6 changes: 0 additions & 6 deletions scala-package/core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -138,12 +138,6 @@
<version>INTERNAL</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,8 @@ private static void downloadUrl(String url, String filePath, int maxRetry) throw
public static void downloadFile() throws Exception {
String tempDirPath = System.getProperty("java.io.tmpdir");
imLocation = tempDirPath + "/inputImages/Pug-Cookie.jpg";
try {
downloadUrl("https://s3.amazonaws.com/model-server/inputs/Pug-Cookie.jpg",
imLocation, 3);
} catch (Exception e) {
throw e;
}
downloadUrl("https://s3.amazonaws.com/model-server/inputs/Pug-Cookie.jpg",
imLocation, 3);
}

@Test
Expand Down
6 changes: 0 additions & 6 deletions scala-package/examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -129,11 +129,5 @@
<artifactId>slf4j-simple</artifactId>
<version>1.7.5</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
8 changes: 0 additions & 8 deletions scala-package/infer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,5 @@
<version>1.10.19</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>

</dependencies>
</project>
6 changes: 6 additions & 0 deletions scala-package/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -412,6 +412,12 @@
<version>1.13.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>

<!-- Following libraries are required by running javah, they should be excluded from .jar -->
<dependency>
Expand Down

0 comments on commit 32946a1

Please sign in to comment.