Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jruby/jruby
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6fb42d34b418
Choose a base ref
...
head repository: jruby/jruby
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8a7163b577da
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Jun 18, 2015

  1. Copy the full SHA
    5fa6882 View commit details
  2. Copy the full SHA
    8a7163b View commit details
Showing with 12 additions and 2 deletions.
  1. +3 −2 .travis.yml
  2. +9 −0 pom.rb
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -85,8 +85,9 @@ branches:
- /^test-.*$/
- /^ha-feature/

script: if [[ -v COMMAND ]]; then $COMMAND; else travis_retry ./mvnw -Pbootstrap clean install -Dinvoker.skip=false $PHASE | egrep -v 'Download|\\[exec\\] [[:digit:]]+/[[:digit:]]+|^[[:space:]]*\\[exec\\][[:space:]]*$' ; [ ${PIPESTATUS[0]} == 0 ]; fi
install: /bin/true
script: if [[ -v COMMAND ]]; then $COMMAND; else ./mvnw -Pbootstrap clean install -Dinvoker.skip=false $PHASE | egrep -v 'Download|\\[exec\\] [[:digit:]]+/[[:digit:]]+|^[[:space:]]*\\[exec\\][[:space:]]*$' ; [ ${PIPESTATUS[0]} == 0 ]; fi
install: travis_retry ./mvnw -Pbootstrap clean install -Dinvoker.skip -Dmaven.test.skip

notifications:
irc:
channels:
9 changes: 9 additions & 0 deletions pom.rb
Original file line number Diff line number Diff line change
@@ -118,6 +118,15 @@
jar 'org.codehaus.plexus:plexus-io:2.0.5'
end

unless model.version =~ /-SNAPSHOT/
plugin :enforcer, '1.4' do
execute_goal :enforce, :rules => {
:requireReleaseDeps => {
:message => 'No Snapshots Allowed!'
} }
end
end

plugin :compiler, '3.1'
plugin :shade, '2.1'
plugin :surefire, '2.15'