motion-gradle 2.0.0 → 2.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ac0efdc59361c5d8567a761cd02c6bbffa1ef442
4
- data.tar.gz: e925d8e61e0c5b6079807352499139df86300446
3
+ metadata.gz: 29b99eecfa3998d37f7c84148add59288fc27936
4
+ data.tar.gz: 17e20e3047428d8ada52e18a1ac19bf6ed8142e2
5
5
  SHA512:
6
- metadata.gz: 0de3923bd24a53138064fd5c754b7d62bf0f528bed9e342223ca69339f3f5a037acb256f3b3339b7c5e221c47f70d8d3547734e20c104b4b4a16d9c493a2c704
7
- data.tar.gz: 44a1eb959f3589c09967fad7a71946bec84d9fca8112d24b7a515cb4ca600ca6a85d7be0c62913b281a200424d39b8d88de91f0e508088e2caaae5498efeeb1c
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 %>
@@ -1,3 +1,3 @@
1
1
  module MotionGradle
2
- VERSION = '2.0.0'
2
+ VERSION = '2.0.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: motion-gradle
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joffrey Jaffeux