This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import cloud.localstack.docker.annotation.LocalstackDockerProperties | |
import cloud.localstack.TestUtils | |
import org.scalatest.{BeforeAndAfterEach, FlatSpec} | |
import ...LocalstackSpec | |
@LocalstackDockerProperties(services = Array("s3")) | |
class ExampleSpec | |
extends FlatSpec | |
with BeforeAndAfterEach | |
with LocalStackSpec { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
language: java | |
env: | |
global: | |
- SONATYPE_USERNAME=yourusername | |
- secure: "your encrypted SONATYPE_PASSWORD=pass" | |
after_success: | |
- python addServer.py | |
- mvn clean deploy --settings ~/.m2/mySettings.xml |