Skip to content

Commit

Permalink
update pom to generate sources/javadoc and sign + prepare for release…
Browse files Browse the repository at this point in the history
… 1.1.17
  • Loading branch information
kares committed Dec 30, 2014
1 parent 56592c0 commit cb5dcb3
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 2 deletions.
10 changes: 10 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 1.1.17 (30/12/14)

This release changes deployment from codehaus.org to oss.sonatype.org for artifacts.

- just keep the jruby-home when set by jruby to "uri:classsloader:..." JRuby 9k
- support configuration of `Response.swallow_client_abort?` (#186)
- better client EOF (socket abort "Broken pipe") detection in Response
we're now "officially" handling Jetty and maybe a bunch of others
- allow PATCH verb to be processed by the ruby application (#184)

## 1.1.16 (14/08/14)

- deal with `real_path` (file-system) layout regression introduced in 1.1.15
Expand Down
55 changes: 54 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<groupId>org.jruby.rack</groupId>
<artifactId>jruby-rack</artifactId>
<version>1.1.17-SNAPSHOT</version>
<version>1.1.17</version>
<name>JRuby-Rack</name>
<url>http://github.com/jruby/jruby-rack/</url>
<description>
Expand Down Expand Up @@ -295,6 +295,59 @@
</plugins>
</build>
</profile>
<profile>
<id>release</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

</project>
Expand Down
2 changes: 1 addition & 1 deletion src/main/ruby/jruby/rack/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@

module JRuby
module Rack
VERSION = '1.1.17.SNAPSHOT'
VERSION = '1.1.17'
end
end

0 comments on commit cb5dcb3

Please sign in to comment.