File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
src/main/java/org/scm4j/deployer/api Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -6,9 +6,9 @@ public interface IDownloader {
6
6
7
7
<T extends IDeploymentContext > T getContextByArtifactId (String artifactId );
8
8
9
- File getProductFile (String coords ) throws Exception ;
9
+ void getProductFile (String coords );
10
10
11
- File getProductWithDependency (String coords ) throws Exception ;
11
+ void getProductWithDependency (String coords );
12
12
13
13
void loadProductDependency (File repository );
14
14
Original file line number Diff line number Diff line change 1
1
package org .scm4j .deployer .api ;
2
2
3
- import java .io .File ;
4
3
import java .util .List ;
5
4
import java .util .Map ;
6
5
7
6
public interface IProductDeployer {
8
7
9
8
DeploymentResult deploy (String artifactId , String version );
10
9
11
- File download (String artifactId , String version );
10
+ void download (String artifactId , String version );
12
11
13
12
List <String > listProducts ();
14
13
You can’t perform that action at this time.
0 commit comments