Not an expert in Dash nor java/gradle.
I am doing this
./gradlew kuksa-sdk:dependencies --configuration releaseCompileClasspath | ggrep -Poh "(?<=\s)[\w\.-]+:[\w\.-]+:[^:\s]+" | grep -v "^org\.eclipse" | sort | uniq > DASHFILE
(ggrep because using gnu grep on mac, on Linux just use grep)
The resulting file has weird entries, see attached file:
DASHFILE.txt
specifically I guess the entries with {strictly in them look weird, they seem to follow a valid entry, i.e.
io.grpc:grpc-stub:1.56.1
io.grpc:grpc-stub:{strictly
I could "butcher them out", but as I said I am not really knowing what I am doing here, so maybe the grep fromt he example is just outdated? Somebody has a better version?
For reference the gradle output
dashraw.txt
It seems entries like this
+--- org.jetbrains.kotlin:kotlin-stdlib-common:{strictly 1.9.0} -> 1.9.0 (c)
make problems.
Any hints?
Not an expert in Dash nor java/gradle.
I am doing this
(
ggrepbecause using gnu grep on mac, on Linux just usegrep)The resulting file has weird entries, see attached file:
DASHFILE.txt
specifically I guess the entries with
{strictlyin them look weird, they seem to follow a valid entry, i.e.I could "butcher them out", but as I said I am not really knowing what I am doing here, so maybe the grep fromt he example is just outdated? Somebody has a better version?
For reference the gradle output
dashraw.txt
It seems entries like this
make problems.
Any hints?