Skip to content

Commit f1bd977

Browse files
authored
Split build-info class (#559)
1 parent 900aeb2 commit f1bd977

File tree

183 files changed

+5639
-2808
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

183 files changed

+5639
-2808
lines changed

Diff for: build-info-api/src/main/java/org/jfrog/build/api/Agent.java

-16
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,3 @@
1-
/*
2-
* Copyright (C) 2011 JFrog Ltd.
3-
*
4-
* Licensed under the Apache License, Version 2.0 (the "License");
5-
* you may not use this file except in compliance with the License.
6-
* You may obtain a copy of the License at
7-
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
9-
*
10-
* Unless required by applicable law or agreed to in writing, software
11-
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13-
* See the License for the specific language governing permissions and
14-
* limitations under the License.
15-
*/
16-
171
package org.jfrog.build.api;
182

193
import com.thoughtworks.xstream.annotations.XStreamAlias;

Diff for: build-info-api/src/main/java/org/jfrog/build/api/Artifact.java

-16
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,3 @@
1-
/*
2-
* Copyright (C) 2011 JFrog Ltd.
3-
*
4-
* Licensed under the Apache License, Version 2.0 (the "License");
5-
* you may not use this file except in compliance with the License.
6-
* You may obtain a copy of the License at
7-
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
9-
*
10-
* Unless required by applicable law or agreed to in writing, software
11-
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13-
* See the License for the specific language governing permissions and
14-
* limitations under the License.
15-
*/
16-
171
package org.jfrog.build.api;
182

193
import com.thoughtworks.xstream.annotations.XStreamAlias;

Diff for: build-info-api/src/main/java/org/jfrog/build/api/BaseBuildBean.java

-16
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,3 @@
1-
/*
2-
* Copyright (C) 2011 JFrog Ltd.
3-
*
4-
* Licensed under the Apache License, Version 2.0 (the "License");
5-
* you may not use this file except in compliance with the License.
6-
* You may obtain a copy of the License at
7-
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
9-
*
10-
* Unless required by applicable law or agreed to in writing, software
11-
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13-
* See the License for the specific language governing permissions and
14-
* limitations under the License.
15-
*/
16-
171
package org.jfrog.build.api;
182

193
import java.util.Properties;

Diff for: build-info-api/src/main/java/org/jfrog/build/api/BaseBuildFileBean.java

-25
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,3 @@
1-
/*
2-
* Copyright (C) 2011 JFrog Ltd.
3-
*
4-
* Licensed under the Apache License, Version 2.0 (the "License");
5-
* you may not use this file except in compliance with the License.
6-
* You may obtain a copy of the License at
7-
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
9-
*
10-
* Unless required by applicable law or agreed to in writing, software
11-
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13-
* See the License for the specific language governing permissions and
14-
* limitations under the License.
15-
*/
16-
171
package org.jfrog.build.api;
182

193
import com.fasterxml.jackson.annotation.JsonProperty;
@@ -31,7 +15,6 @@ public abstract class BaseBuildFileBean extends BaseBuildBean implements BuildFi
3115
protected String sha1;
3216
protected String sha256;
3317
protected String md5;
34-
protected String localPath;
3518

3619
@JsonProperty("path")
3720
protected String remotePath;
@@ -68,14 +51,6 @@ public void setMd5(String md5) {
6851
this.md5 = md5;
6952
}
7053

71-
public String getLocalPath() {
72-
return localPath;
73-
}
74-
75-
public void setLocalPath(String localPath) {
76-
this.localPath = localPath;
77-
}
78-
7954
public String getRemotePath() {
8055
return remotePath;
8156
}

Diff for: build-info-api/src/main/java/org/jfrog/build/api/BlackDuckProperties.java

-88
This file was deleted.

Diff for: build-info-api/src/main/java/org/jfrog/build/api/BlackDuckPropertiesFields.java

-15
This file was deleted.

0 commit comments

Comments
 (0)