motion-maven 1.1.0 → 1.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: db808f99383a8d38ad44950c72cc0fed9da9e6e9
4
- data.tar.gz: 5518a51db4851714062d8e2a1072d855e808a180
3
+ metadata.gz: abf882d168a964c5dc564d2819bdf1c3bf1f8133
4
+ data.tar.gz: 64cdf88bc3d3e1a79c86eb4e6a9ed1bf2468f562
5
5
  SHA512:
6
- metadata.gz: eba08a4c262f80e6d1205ffc803f62ea105153b08616e06169a55067241dea5b8aaf319a452f4bd374e3e86e245a600e618dbc1b6a3f8821ecef0a4bd6620819
7
- data.tar.gz: 80ce08c06b67ab3fbefbdc88e28bca55d9710c1e692c5ac76098f7b5b6cbca3387e3bc7e56eef9a6dd9088cbc68f59154291f50e22736355ef28cf2ab6934a6c
6
+ metadata.gz: 23786d574842462839957e2cc9129832ef02fd13a88756133d9d0043836eb22a8c29aa7f9fa46379092e152401032a01e918a989a99b46ea7b0f01f4d280f6d1
7
+ data.tar.gz: 6422cd54d742a5621fa47183e65e7174ddada68ef81f36776fc3212c634cf843866e0efb9e70ebbdae9cf106641e131bc780e8ccbf88e37659c2d2aa002d724d
@@ -0,0 +1,58 @@
1
+ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2
+ <modelVersion>4.0.0</modelVersion>
3
+ <groupId>com.maventest</groupId>
4
+ <artifactId>dependencies</artifactId>
5
+ <packaging>jar</packaging>
6
+ <version>1.0</version>
7
+ <name>dependencies</name>
8
+ <url>http://maven.apache.org</url>
9
+ <dependencies>
10
+ <% @dependencies.each do |dependency| %>
11
+ <dependency>
12
+ <groupId><%= dependency[:name] %></groupId>
13
+ <artifactId><%= dependency[:artifact] %></artifactId>
14
+ <version><%= dependency[:version] %></version>
15
+ <% if dependency[:scope] %>
16
+ <scope><%= dependency[:scope] %></scope>
17
+ <% end %>
18
+ <% if dependency[:type] %>
19
+ <type><%= dependency[:type] %></type>
20
+ <% end %>
21
+ </dependency>
22
+ <% end %>
23
+ </dependencies>
24
+
25
+ <repositories>
26
+ <% @repositories.each_with_index do |repository, index| %>
27
+ <repository>
28
+ <id>repository-<%= index %></id>
29
+ <url><%= repository %></url>
30
+ <releases>
31
+ <enabled>true</enabled>
32
+ </releases>
33
+ <snapshots>
34
+ <enabled>false</enabled>
35
+ </snapshots>
36
+ </repository>
37
+ <% end %>
38
+ </repositories>
39
+ <build>
40
+ <plugins>
41
+ <plugin>
42
+ <groupId>org.apache.maven.plugins</groupId>
43
+ <artifactId>maven-shade-plugin</artifactId>
44
+ <executions>
45
+ <execution>
46
+ <phase>package</phase>
47
+ <goals>
48
+ <goal>shade</goal>
49
+ </goals>
50
+ </execution>
51
+ </executions>
52
+ <configuration>
53
+ <finalName>${project.artifactId}</finalName>
54
+ </configuration>
55
+ </plugin>
56
+ </plugins>
57
+ </build>
58
+ </project>
@@ -1,5 +1,5 @@
1
1
  module Motion::Project
2
2
  class Maven
3
- VERSION = '1.1.0'
3
+ VERSION = '1.1.1'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: motion-maven
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joffrey Jaffeux
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-02-09 00:00:00.000000000 Z
11
+ date: 2015-02-10 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: motion-maven allows RubyMotion Android projects to have access to the
14
14
  Maven dependency manager.
@@ -21,6 +21,7 @@ files:
21
21
  - README.md
22
22
  - lib/motion-maven.rb
23
23
  - lib/motion/project/maven.rb
24
+ - lib/motion/project/pom.erb
24
25
  - lib/motion/project/version.rb
25
26
  homepage: http://www.rubymotion.com
26
27
  licenses: