We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When I compiled my project with "colcon build",it failed.I found error info in 'stdout_stderr.log':
And this is my 'build.gradle':
apply plugin: 'java' apply plugin: 'org.ros2.tools.gradle'
sourceCompatibility = JavaVersion.VERSION_1_8 targetCompatibility = JavaVersion.VERSION_1_8
buildscript { repositories { jcenter() mavenCentral() mavenLocal() maven { url "https://plugins.gradle.org/m2/" } }
dependencies { classpath 'gradle.plugin.org.ros2.tools.gradle:ament:0.7.0' } }
repositories { mavenCentral() }
ament { entryPoints { consoleScripts = [ 'my_node = tld.domain.MyNode' ] } }
I got Ubuntu 22.04 with ROS2 Humble, Gradle 8.3 and Java 8 installed. Any ideas?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When I compiled my project with "colcon build",it failed.I found error info in 'stdout_stderr.log':
Execution failed for task ':compileJava'.
Configuration with name 'compile' not found.
And this is my 'build.gradle':
apply plugin: 'java'
apply plugin: 'org.ros2.tools.gradle'
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
buildscript {
repositories {
jcenter()
mavenCentral()
mavenLocal()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath 'gradle.plugin.org.ros2.tools.gradle:ament:0.7.0'
}
}
repositories {
mavenCentral()
}
ament {
entryPoints {
consoleScripts = [
'my_node = tld.domain.MyNode'
]
}
}
I got Ubuntu 22.04 with ROS2 Humble, Gradle 8.3 and Java 8 installed. Any ideas?
The text was updated successfully, but these errors were encountered: