-
Notifications
You must be signed in to change notification settings - Fork 8
/
fake-s3-pom.xml
54 lines (48 loc) · 1.75 KB
/
fake-s3-pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.unbounce.yopa</groupId>
<artifactId>fake-s3</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>fake-s3-tests</name>
<properties>
<ruby.maven.version>1.0.8</ruby.maven.version>
<rubygems.directory>${project.basedir}/rubygems</rubygems.directory>
</properties>
<dependencies>
<dependency>
<groupId>rubygems</groupId>
<artifactId>fakes3</artifactId>
<version>0.2.1</version>
<type>gem</type>
</dependency>
</dependencies>
<build>
<directory>${project.basedir}/target/fake-s3</directory>
<plugins>
<plugin>
<groupId>de.saumya.mojo</groupId>
<artifactId>gem-maven-plugin</artifactId>
<version>${ruby.maven.version}</version>
<configuration>
<gemPath>${rubygems.directory}</gemPath>
<gemHome>${rubygems.directory}</gemHome>
</configuration>
<executions>
<execution>
<goals>
<goal>initialize</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>rubygems-release</id>
<url>http://rubygems-proxy.torquebox.org/releases</url>
</repository>
</repositories>
</project>