You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I still struggle to add rules to my setup. Concrete example: I have 10 lucene dependencies:
% git grep lucene -- buildSrc/ | head -3
buildSrc/src/main/kotlin/Libs.kt: public const val lucene_analyzers_common: String = "org.apache.lucene:lucene-analyzers-common:_"
buildSrc/src/main/kotlin/Libs.kt: public const val lucene_backward_codecs: String = "org.apache.lucene:lucene-backward-codecs:_"
buildSrc/src/main/kotlin/Libs.kt: public const val lucene_core: String = "org.apache.lucene:lucene-core:_"
. But after then running ./gradlew refreshVersionsMigrate, I do not get a versions.apache.lucene line in my versions.properties. Do I have to add that manually? I struggled with other private rules as well, and they all eventually were honored, but I still do not understand what I do wrong here.
Update: somehow, I suddenly see version.apache.lucene=5.5.2 in my versions.properties. I'm still confused, but I will try to sort this out myself.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I still struggle to add rules to my setup. Concrete example: I have 10 lucene dependencies:
with matching lines in
versions.properties
:I thus added the following rule to my rules file:
. But after then running
./gradlew refreshVersionsMigrate
, I do not get aversions.apache.lucene
line in myversions.properties
. Do I have to add that manually? I struggled with other private rules as well, and they all eventually were honored, but I still do not understand what I do wrong here.Update: somehow, I suddenly see
version.apache.lucene=5.5.2
in myversions.properties
. I'm still confused, but I will try to sort this out myself.Beta Was this translation helpful? Give feedback.
All reactions