-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AMQP connector #42
AMQP connector #42
Conversation
|
||
lazy val amqp = project. | ||
enablePlugins(AutomateHeaderPlugin) | ||
.configs(IntegrationTest) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How can I add a config in amqp/build.sbt
? Couldn't figure it out.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was not sure as well. After a bit of poking around, it looks like we can set it in amqp/build.sbt
by adding:
lazy val amqp = (project in file(".")).
configs(IntegrationTest)
enablePlugins(AutomateHeaderPlugin)
Enabling plugins work there as well. So we can leave ~/build.sbt
with only
lazy val amqp = project
LGTM, great work @johanandren |
@@ -8,5 +8,6 @@ cache: | |||
directories: | |||
- $HOME/.ivy2/cache | |||
- $HOME/.sbt/boot | |||
sudo: required |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yup
Yay, integration tests running on travis, and passing. |
5834877
to
e99c926
Compare
LGTM |
Refs #41