-
Notifications
You must be signed in to change notification settings - Fork 18
Conversation
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.
looks good, there were a couple small things - I can update the .travis.yml after this goes in and I think we will be good to go.
build.gradle
Outdated
} | ||
|
||
dependencies { | ||
spinnaker.group('test') |
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.
I suspect the group('test')
and testCompile groovy
aren't necessary here?
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.
I need some of those test dependencies (junit) - should I just bring in that one instead of all of the group 'test'?
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.
I'd probably just add junit, our test group brings in spock and friends which we don't need (for now anyway)
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.
Ok fixing!
build.gradle
Outdated
description = "Redis embedded server for Java integration testing" | ||
group = "com.netflix.spinnaker.embedded-redis" | ||
apply plugin: 'spinnaker.project' | ||
apply plugin: 'groovy' |
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.
could just make this apply plugin: 'java' and get rid of the tasks.compileGroovy.enabled line below
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.
Ok fixing
|
||
<developers> | ||
<developer> | ||
<name>Krzysztof Styrc</name> |
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.
we should add an AUTHORS file including Krzysztof and also a top level LICENSE.txt file as in the other repos
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.
Ok done. Should we add the other authors mentioned in the README.md?
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.
seems reasonable to me, yeah
@cfieber PTAL, and let me know how to integrate this correctly with Travis/etc