-
Notifications
You must be signed in to change notification settings - Fork 754
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
Safer dependencies #4670
Safer dependencies #4670
Conversation
It has been moved to mavenCentral
build.gradle
Outdated
} | ||
mavenCentral { | ||
content { | ||
includeGroup 'com.adevinta.android' |
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.
if only we had a way to externalize those lists into another file...
includeGroup
does not support taking a list as param
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.
let me check if that is possible
@ariskotsomitopoulos thanks for your proposal solution. I have updated it a bit. Please let me know what you think. |
Yes +1, nice changes! I agree |
configurations { | ||
// videocache includes a sl4j logger which causes mockk to attempt to call the static android Log | ||
testImplementation.exclude group: 'org.slf4j', module: 'slf4j-android' | ||
} |
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.
As I removed videocache
, I thought I could remove this as well. But maybe double check with @ouchadam first. And I just see that it's still needed: https://github.com/vector-im/element-android/pull/4670/files#diff-f6dc61a00090b6fc204667d7934e656dbb78c8bb0dc14f95468dd57b4300a8caR177
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.
if videocache
is removed then removing this is also fine 👍 (the unit tests will fail if not)
} | ||
} | ||
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' } |
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 am not sure why it has been added at first place, but it seems not necessary anymore 🤞
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.
great change! 💯 (might even have a little bit of a build speed improvement 🤞 )
Ref: