Skip to content

cicd with github actions #1414

@pcochoco

Description

@pcochoco

hi is openfeign/querydsl available for cicd with github actions?
I am currently working on it with a project, applying ci.yml, specifically trying to build my application and it seems to make errors like this

Starting a Gradle Daemon (subsequent builds will be faster)
> Task :compileJava FAILED

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':compileJava'.
> Could not resolve all files for configuration ':compileClasspath'.
   > Could not find io.github.openfeign.querydsl:querydsl-apt:7.
     Required by:
         root project :
   > Could not find io.github.openfeign.querydsl:querydsl-core:7.
     Required by:
         root project :
   > Could not find io.github.openfeign.querydsl:querydsl-jpa:7.
     Required by:
         root project :

* Try:
> Run with --stacktrace option to get the stack trace.

> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.
[Incubating] Problems report is available at: file:///home/runner/work/be18-4th-jelly-project/be18-4th-jelly-project/backend/smerp/build/reports/problems/problems-report.html
> Get more help at https://help.gradle.org./


Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0.
BUILD FAILED in 54s

You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins.

For more on this, please refer to https://docs.gradle.org/8.14.3/userguide/command_line_interface.html#sec:command_line_warnings in the Gradle documentation.
1 actionable task: 1 executed

since open feign's query dsl is not from maven central
i have added

ext {
	queryDslVersion = System.getenv("QUERYDSL_VERSION") ?: "7.0"
}
repositories {
	mavenCentral()
//	maven { url 'https://repo1.maven.org/maven2'}
	maven { url 'https://jitpack.io' }
}

but it doesn't seem to work and there is not much coming up when i google this issue
would you have advices or documents that i could look at?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions