X Tutup
Skip to content

Review integration points from Gradle plugin #698

@jabrena

Description

@jabrena

Currently, Gradle plugin is coupled with the build.gradle file which it is something not comfortable.

Gradle continue evolving the syntax and originally, we have this syntax:

    compile("org.slf4j:slf4j-api:1.7.25")
    compile("com.github.ev3dev-lang-java:lejos-commons:0.7.3")
    compile("net.java.dev.jna:jna:4.5.2")

But we changed to this one:

    implementation("org.slf4j:slf4j-api:1.7.25")
    implementation("com.github.ev3dev-lang-java:lejos-commons:0.7.3")
    implementation("net.java.dev.jna:jna:4.5.2")

But using a snapshot, we detected that library is not possible to be used

Metadata

Metadata

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions

    X Tutup