Skip to content
This repository was archived by the owner on Dec 6, 2024. It is now read-only.

Commit 36343ed

Browse files
SynapticloopSynapticloop
authored andcommitted
added in LICENSE.txt
1 parent 8f3013a commit 36343ed

File tree

3 files changed

+68
-14
lines changed

3 files changed

+68
-14
lines changed

LICENSE.txt

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2015 Synapticloop
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -231,3 +231,28 @@ export B2_APPLICATION_KEY="your-application-key"
231231

232232
**WARNING:** These tests make API calls against your account which contribute to your call limits, which may lead to a cost.
233233

234+
# License
235+
236+
```
237+
The MIT License (MIT)
238+
239+
Copyright (c) 2015 Synapticloop
240+
241+
Permission is hereby granted, free of charge, to any person obtaining a copy
242+
of this software and associated documentation files (the "Software"), to deal
243+
in the Software without restriction, including without limitation the rights
244+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
245+
copies of the Software, and to permit persons to whom the Software is
246+
furnished to do so, subject to the following conditions:
247+
248+
The above copyright notice and this permission notice shall be included in all
249+
copies or substantial portions of the Software.
250+
251+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
252+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
253+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
254+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
255+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
256+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
257+
SOFTWARE.
258+
```

build.gradle

Lines changed: 22 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ plugins {
33
id 'eclipse'
44
id "maven"
55
id "maven-publish"
6-
id 'net.saliman.cobertura' version '2.2.6'
7-
id "com.jfrog.bintray" version "1.4"
8-
id 'co.riiid.gradle' version '0.3.1'
6+
id 'net.saliman.cobertura' version '2.3.0'
7+
id "com.jfrog.bintray" version "1.6"
8+
id 'co.riiid.gradle' version '0.4.2'
99
}
1010

1111
group = 'synapticloop'
@@ -28,24 +28,25 @@ repositories {
2828
}
2929

3030
dependencies {
31-
runtime 'org.apache.httpcomponents:httpclient:4.3.4'
31+
runtime 'org.apache.httpcomponents:httpclient:4.5.1'
3232
runtime 'commons-io:commons-io:2.4'
33-
runtime 'org.json:json:20090211'
33+
runtime 'org.json:json:20160212'
3434
runtime 'org.slf4j:slf4j-api:1.7.13'
3535

36-
compile 'org.apache.httpcomponents:httpclient:4.3.4'
36+
compile 'org.apache.httpcomponents:httpclient:4.5.1'
3737
compile 'commons-io:commons-io:2.4'
38-
compile 'org.json:json:20090211'
38+
compile 'org.json:json:20160212'
3939
compile 'org.slf4j:slf4j-api:1.7.13'
4040

41-
testCompile 'junit:junit:4.7'
42-
testCompile 'org.apache.logging.log4j:log4j-slf4j-impl:2.4.1'
43-
testCompile 'org.apache.logging.log4j:log4j-core:2.4.1'
44-
testCompile 'org.json:json:20090211'
41+
testCompile 'junit:junit:4.12'
42+
testCompile 'org.apache.logging.log4j:log4j-slf4j-impl:2.5'
43+
testCompile 'org.apache.logging.log4j:log4j-core:2.5'
44+
testCompile 'org.json:json:20160212'
4545

46-
testRuntime 'org.apache.logging.log4j:log4j-slf4j-impl:2.4.1'
47-
testRuntime 'org.apache.logging.log4j:log4j-core:2.4.1'
48-
testRuntime 'org.json:json:20090211'
46+
testRuntime 'junit:junit:4.12'
47+
testRuntime 'org.apache.logging.log4j:log4j-slf4j-impl:2.5'
48+
testRuntime 'org.apache.logging.log4j:log4j-core:2.5'
49+
testRuntime 'org.json:json:20160212'
4950
}
5051

5152
configurations.all {
@@ -55,6 +56,13 @@ configurations.all {
5556
'xerces:xmlParserAPIs:2.6.2',
5657
'xerces:xercesImpl:2.6.2',
5758
'xml-apis:xml-apis:1.0.b2'
59+
60+
eachDependency {
61+
DependencyResolveDetails details ->
62+
if (details.requested.group == 'junit') {
63+
details.useVersion '4.12'
64+
}
65+
}
5866
}
5967
}
6068

0 commit comments

Comments
 (0)