Skip to content

Commit

Permalink
fix(gradle): fix spotless & axion-release conflect with git
Browse files Browse the repository at this point in the history
  • Loading branch information
xmlking committed Jul 14, 2020
1 parent c173059 commit f2f2dd3
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ bin/
*.iml
*.iws
out/
local.properties

# NetBeans
nb-configuration.xml
Expand Down
4 changes: 4 additions & 0 deletions docs/faq/grpc.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@

Reference : [gRPC Authentication](https://grpc.io/docs/guides/auth/)

- Awesome gRPC videos

{% youtube src="https://www.youtube.com/watch?v=j1CzQNydMLI" %}{% endyoutube %}

### flow-control middleware

- How to implement gRPC client/server side resilience?
Expand Down
17 changes: 17 additions & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,23 @@ pluginManagement {
mavenCentral()
gradlePluginPortal()
}

// FIXME: remove after: https://github.com/diffplug/spotless/issues/643
buildscript {
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
classpath("org.eclipse.jgit:org.eclipse.jgit:5.7.0.202003110725-r")
}
configurations.classpath {
resolutionStrategy {
force("org.eclipse.jgit:org.eclipse.jgit:5.7.0.202003110725-r")
}
}
}

plugins {
val sonarPluginVersion: String by settings
val spotlessPluginVersion: String by settings
Expand Down

0 comments on commit f2f2dd3

Please sign in to comment.