Skip to content

Commit ceea337

Browse files
committed
Beginning to split things into separate jars
1 parent 7f71c3d commit ceea337

File tree

23 files changed

+45
-1304
lines changed

23 files changed

+45
-1304
lines changed

build.gradle

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,25 +46,21 @@ task wrapper(type: Wrapper) {
4646

4747
project(':ds3-sdk') {
4848
dependencies {
49-
compile project(':ds3-interfaces')
5049
compile project(':ds3-utils')
5150
}
5251
}
5352

5453
project(':ds3-metadata') {
5554
dependencies {
56-
compile project(':ds3-interfaces')
5755
compile project(':ds3-utils')
5856
}
5957
}
6058

61-
/*
6259
project(':ds3-sdk-integration') {
6360
dependencies {
6461
compile project(':ds3-sdk')
6562
}
6663
}
67-
*/
6864

6965
project(':ds3-sdk-samples') {
7066
dependencies {

ds3-interfaces/src/main/java/com/spectralogic/ds3client/helpers/Ds3ClientHelpers/MetadataAccess.java

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
/*
2+
* ****************************************************************************
3+
* Copyright 2014-2016 Spectra Logic Corporation. All Rights Reserved.
4+
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use
5+
* this file except in compliance with the License. A copy of the License is located at
6+
*
7+
* http://www.apache.org/licenses/LICENSE-2.0
8+
*
9+
* or in the "license" file accompanying this file.
10+
* This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
11+
* CONDITIONS OF ANY KIND, either express or implied. See the License for the
12+
* specific language governing permissions and limitations under the License.
13+
* ****************************************************************************
14+
*/
15+
116
package com.spectralogic.ds3client.helpers.Ds3ClientHelpers;
217

318
import java.util.Map;

ds3-metadata/build.gradle

Lines changed: 19 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,23 @@
1+
/*
2+
* ******************************************************************************
3+
* Copyright 2014-2016 Spectra Logic Corporation. All Rights Reserved.
4+
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use
5+
* this file except in compliance with the License. A copy of the License is located at
6+
*
7+
* http://www.apache.org/licenses/LICENSE-2.0
8+
*
9+
* or in the "license" file accompanying this file.
10+
* This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
11+
* CONDITIONS OF ANY KIND, either express or implied. See the License for the
12+
* specific language governing permissions and limitations under the License.
13+
* ****************************************************************************
14+
*/
15+
116
dependencies {
2-
compile 'org.apache.httpcomponents:httpclient:4.5.1'
3-
compile 'commons-codec:commons-codec:1.10'
4-
compile 'commons-io:commons-io:2.4'
5-
compile 'org.codehaus.woodstox:woodstox-core-asl:4.4.1'
6-
compile 'com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.7.1'
7-
compile 'com.google.guava:guava:19.0'
8-
compile 'com.google.code.findbugs:annotations:3.0.1'
9-
compile group: 'net.java.dev.jna', name: 'jna-platform', version: '4.2.2'
10-
compile group: 'net.java.dev.jna', name: 'jna', version: '4.2.2'
11-
testCompile 'org.hamcrest:hamcrest-library:1.3'
1217
testCompile group: 'org.apache.commons', name: 'commons-lang3', version: '3.0'
18+
compile group: 'net.java.dev.jna', name: 'jna-platform', version: '4.2.2'
19+
compile group: 'net.java.dev.jna', name: 'jna', version: '4.2.2'
20+
compile 'commons-io:commons-io:2.4'
21+
compile 'org.apache.httpcomponents:httpclient:4.5.1'
1322
}
1423

ds3-sdk/build.gradle

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,14 +74,10 @@ jar.dependsOn genConfigProperties
7474

7575
dependencies {
7676
compile 'org.apache.httpcomponents:httpclient:4.5.1'
77-
compile 'commons-codec:commons-codec:1.10'
7877
compile 'commons-io:commons-io:2.4'
79-
compile 'org.codehaus.woodstox:woodstox-core-asl:4.4.1'
8078
compile 'com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.7.1'
8179
compile 'com.google.guava:guava:19.0'
8280
compile 'com.google.code.findbugs:annotations:3.0.1'
83-
compile group: 'net.java.dev.jna', name: 'jna-platform', version: '4.2.2'
84-
compile group: 'net.java.dev.jna', name: 'jna', version: '4.2.2'
8581
testCompile 'org.hamcrest:hamcrest-library:1.3'
8682
testCompile group: 'org.apache.commons', name: 'commons-lang3', version: '3.0'
8783
}

ds3-sdk/src/main/java/com/spectralogic/ds3client/helpers/strategy/StrategyUtils.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,6 @@
2424
import org.slf4j.Logger;
2525
import org.slf4j.LoggerFactory;
2626

27-
import java.io.IOException;
28-
import java.nio.file.Files;
29-
import java.nio.file.Path;
3027
import java.util.List;
3128
import java.util.UUID;
3229

ds3-sdk/src/main/java/com/spectralogic/ds3client/metadata/AbstractMetadataRestore.java

Lines changed: 0 additions & 101 deletions
This file was deleted.

ds3-sdk/src/main/java/com/spectralogic/ds3client/metadata/AbstractMetadataStore.java

Lines changed: 0 additions & 54 deletions
This file was deleted.

ds3-sdk/src/main/java/com/spectralogic/ds3client/metadata/MACMetadataRestore.java

Lines changed: 0 additions & 108 deletions
This file was deleted.

0 commit comments

Comments
 (0)