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 +4 -4
- data/lib/motion/project/pom.erb +58 -0
- data/lib/motion/project/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: abf882d168a964c5dc564d2819bdf1c3bf1f8133
|
|
4
|
+
data.tar.gz: 64cdf88bc3d3e1a79c86eb4e6a9ed1bf2468f562
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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>
|
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.
|
|
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-
|
|
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:
|