Skip to content

Commit 8aebe6a

Browse files
committed
setup rubygems repository & let us roll jruby-openssl 0.9.6
1 parent 047c580 commit 8aebe6a

File tree

2 files changed

+30
-21
lines changed

2 files changed

+30
-21
lines changed

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ GEM
55
bundler
66
rake
77
diff-lcs (1.2.5)
8-
jruby-openssl (0.9.5-java)
8+
jruby-openssl (0.9.6-java)
99
rack (1.4.5)
1010
rake (10.3.2)
1111
rspec (2.14.1)

pom.xml

Lines changed: 29 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<vendor.gems.path>vendor/gems</vendor.gems.path>
3030
<bundler.version>1.6.5</bundler.version>
3131
<bundler.local>false</bundler.local> <!-- true by default -->
32-
<saumya.mojo.version>1.0.4</saumya.mojo.version>
32+
<saumya.mojo.version>1.0.6</saumya.mojo.version>
3333
<!--default: <gem.home>target/rubygems</gem.home>-->
3434
</properties>
3535

@@ -69,6 +69,23 @@
6969
</developer>
7070
</developers>
7171

72+
<repositories>
73+
<repository>
74+
<id>rubygems-releases</id>
75+
<url>http://rubygems-proxy.torquebox.org/releases</url>
76+
</repository>
77+
<repository>
78+
<releases>
79+
<enabled>false</enabled>
80+
</releases>
81+
<snapshots>
82+
<enabled>true</enabled>
83+
</snapshots>
84+
<id>sonatype</id>
85+
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
86+
</repository>
87+
</repositories>
88+
7289
<dependencies>
7390
<dependency>
7491
<groupId>org.jruby</groupId>
@@ -123,26 +140,19 @@
123140
<version>3.1.4.RELEASE</version>
124141
<scope>test</scope>
125142
</dependency>
126-
<dependency>
127-
<groupId>rubygems</groupId>
128-
<artifactId>bouncy-castle-java</artifactId>
129-
<version>1.5.0147</version>
130-
<scope>provided</scope>
131-
<type>gem</type>
132-
</dependency>
133143
<dependency>
134144
<groupId>rubygems</groupId>
135145
<artifactId>jruby-openssl</artifactId>
136-
<version>0.9.4</version>
137-
<scope>provided</scope>
146+
<version>0.9.6</version>
138147
<type>gem</type>
148+
<scope>provided</scope>
139149
</dependency>
140150
<dependency>
141151
<groupId>rubygems</groupId>
142152
<artifactId>bundler</artifactId>
143153
<version>${bundler.version}</version>
144-
<scope>provided</scope>
145154
<type>gem</type>
155+
<scope>provided</scope>
146156
</dependency>
147157
</dependencies>
148158

@@ -186,21 +196,20 @@
186196
<artifactId>maven-help-plugin</artifactId>
187197
<version>2.2</version>
188198
</plugin>
189-
190199
<plugin>
191200
<groupId>de.saumya.mojo</groupId>
192201
<artifactId>gem-maven-plugin</artifactId>
193202
<version>${saumya.mojo.version}</version>
194-
<configuration>
203+
<configuration>
195204
<includeOpenSSL>false</includeOpenSSL>
196-
<gemHomes>
197-
<provided>${project.build.directory}/rubygems</provided>
198-
</gemHomes>
199-
</configuration>
205+
<gemHomes>
206+
<provided>${project.build.directory}/rubygems</provided>
207+
</gemHomes>
208+
</configuration>
200209
<executions>
201-
<execution>
202-
<goals><goal>initialize</goal></goals>
203-
</execution>
210+
<execution>
211+
<goals><goal>initialize</goal></goals>
212+
</execution>
204213
</executions>
205214
</plugin>
206215
<plugin>

0 commit comments

Comments
 (0)