Skip to content

Commit

Permalink
Merge pull request #645 from ihostage/drop-travis-2.1.x
Browse files Browse the repository at this point in the history
  • Loading branch information
octonato authored Jan 20, 2022
2 parents 410f114 + 290bf99 commit 7edd818
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 65 deletions.
59 changes: 0 additions & 59 deletions .travis.yml

This file was deleted.

4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
[<img src="https://img.shields.io/travis/playframework/play-ws.svg"/>](https://travis-ci.org/playframework/play-ws) [![Maven](https://img.shields.io/maven-central/v/com.typesafe.play/play-ws-standalone_2.12.svg)](http://mvnrepository.com/artifact/com.typesafe.play/play-ws-standalone_2.12) [![Javadocs](https://javadoc.io/badge/com.typesafe.play/play-ws-standalone_2.12.svg)](https://javadoc.io/doc/com.typesafe.play/play-ws-standalone_2.12)
[![Build Status](https://github.com/playframework/play-ws/actions/workflows/publish.yml/badge.svg?branch=2.1.x)](https://github.com/playframework/play-ws/actions/workflows/publish.yml)
[![Maven](https://img.shields.io/maven-central/v/com.typesafe.play/play-ws-standalone_2.12.svg)](http://mvnrepository.com/artifact/com.typesafe.play/play-ws-standalone_2.12)
[![Javadocs](https://javadoc.io/badge/com.typesafe.play/play-ws-standalone_2.12.svg)](https://javadoc.io/doc/com.typesafe.play/play-ws-standalone_2.12)

# Play WS Standalone

Expand Down
4 changes: 2 additions & 2 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ This is released from the `main` branch from `2.2.0` forward. Unless an older ve
### Requires contributor access

- Check the [draft release notes](https://github.com/playframework/play-ws/releases) to see if everything is there
- Wait until [main branch build finishes](https://travis-ci.com/github/playframework/play-ws/builds) after merging the last PR
- Wait until [main branch build finishes](https://github.com/playframework/play-ws/actions/workflows/publish.yml) after merging the last PR
- Update the [draft release](https://github.com/playframework/play-ws/releases) with the next tag version (eg. `2.2.0`), title and release description
- Check that Travis CI release build has executed successfully (Travis will start a [CI build](https://travis-ci.com/github/playframework/play-ws/builds) for the new tag and publish artifacts to Sonatype)
- Check that GitHub Actions release build has executed successfully (GA start a [CI build](https://github.com/playframework/play-ws/actions/workflows/publish.yml) for the new tag and publish artifacts to Sonatype)

### Check Maven Central

Expand Down
5 changes: 3 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ import scalariform.formatter.preferences._
// Shading and Project Settings
//---------------------------------------------------------------

val scala212 = "2.12.13"
val scala213 = "2.13.5"
// Should be sync with GA (.github/workflows/build-test.yml)
val scala212 = "2.12.15"
val scala213 = "2.13.8"

resolvers ++= DefaultOptions.resolvers(snapshot = true)
resolvers in ThisBuild += Resolver.sonatypeRepo("public")
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/src/test/resources/logback-test.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<!-- We use short exception stack trace logging to limit output for travis. -->
<!-- We use short exception stack trace logging to limit output for CI. -->
<!-- Change to full if you need to do further debugging, but never commit that. -->
<pattern>%level %logger{15} - %message%n%ex{short}</pattern>
</encoder>
Expand Down

0 comments on commit 7edd818

Please sign in to comment.