motion-gradle 2.0.0 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/motion_gradle/templates/build.gradle.erb +26 -2
- data/lib/motion_gradle/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 29b99eecfa3998d37f7c84148add59288fc27936
|
|
4
|
+
data.tar.gz: 17e20e3047428d8ada52e18a1ac19bf6ed8142e2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 44595bcee1be1436d52c112829e0c70ca0d0bb1c8251850cccc8799dd5194eae99c6c67034dba2c527c09bc064b7d06f326f32244f487a54ca7c8a32097c22b1
|
|
7
|
+
data.tar.gz: 11cabb370de5825f4cc08278b85fa33d9522e4532c71275b1d04c26067a6709ec53ae05917592d78e3d9c2695ade043e71f2b327824daf89b62847cfdb01240b
|
|
@@ -23,6 +23,31 @@ apply plugin: 'eclipse'
|
|
|
23
23
|
apply plugin: '<%= plugin %>'
|
|
24
24
|
<% end %>
|
|
25
25
|
|
|
26
|
+
// Those dependencies might be conflicting with
|
|
27
|
+
// the internal version provided by Android.
|
|
28
|
+
configurations {
|
|
29
|
+
compile.exclude group: 'com.google.android', module: 'android'
|
|
30
|
+
compile.exclude group: 'org.apache.httpcomponents', module: 'httpclient'
|
|
31
|
+
compile.exclude group: 'xpp3', module: 'xpp3'
|
|
32
|
+
compile.exclude group: 'commons-logging', module: 'commons-logging'
|
|
33
|
+
compile.exclude group: 'xerces', module: 'xmlParserAPIs'
|
|
34
|
+
compile.exclude group: 'org.json', module: 'json'
|
|
35
|
+
compile.exclude group: 'org.khronos', module: 'opengl-api'
|
|
36
|
+
compile.exclude group: 'org.bouncycastle', module: 'bcprov-jdk15on'
|
|
37
|
+
compile.exclude group: 'org.bouncycastle', module: 'bcprov-jdk16'
|
|
38
|
+
compile.exclude group: 'org.bouncycastle', module: 'bcprov-jdk15'
|
|
39
|
+
compile.exclude group: 'org.bouncycastle', module: 'bcprov-ext-jdk15on'
|
|
40
|
+
compile.exclude group: 'org.bouncycastle', module: 'bcprov-jdk14'
|
|
41
|
+
compile.exclude group: 'org.bouncycastle', module: 'bcprov-jdk15+'
|
|
42
|
+
compile.exclude group: 'org.bouncycastle', module: 'bcprov-jdk12'
|
|
43
|
+
compile.exclude group: 'org.bouncycastle', module: 'bcprov-ext-jdk16'
|
|
44
|
+
compile.exclude group: 'org.bouncycastle', module: 'bcprov-ext-jdk15'
|
|
45
|
+
compile.exclude group: 'org.bouncycastle', module: 'bcprov-ext-jdk14'
|
|
46
|
+
compile.exclude group: 'org.bouncycastle', module: 'bcprov-jdk15%2b'
|
|
47
|
+
compile.exclude group: 'org.bouncycastle', module: 'bcprov-ext-debug-jdk15on'
|
|
48
|
+
compile.exclude group: 'org.bouncycastle', module: 'bcprov-debug-jdk15on'
|
|
49
|
+
}
|
|
50
|
+
|
|
26
51
|
task generateDependencies(type: Copy) {
|
|
27
52
|
from sourceSets.main.runtimeClasspath
|
|
28
53
|
into 'dependencies/'
|
|
@@ -53,8 +78,7 @@ dependencies {
|
|
|
53
78
|
<% dependencies.each do |dependency| %>
|
|
54
79
|
compile '<%= dependency.name %>', {
|
|
55
80
|
<% dependency.excludes.each do |exclude| %>
|
|
56
|
-
exclude module: '<%= exclude[:module] %>',
|
|
57
|
-
group: '<%= exclude[:group] %>'
|
|
81
|
+
exclude module: '<%= exclude[:module] %>', group: '<%= exclude[:group] %>'
|
|
58
82
|
<% end %>
|
|
59
83
|
}
|
|
60
84
|
<% end %>
|