Hi, I'm trying to compile Kafka Connect Connector for S3 ( https://github.com/confluentinc/kafka-connect-storage-cloud)
I saw the following things on the kafka-connect-storage-common FAQ <https://github.com/confluentinc/kafka-connect-storage-common/wiki/FAQ> - Kafka - clone https://github.com/apache/kafka/ and build with gradle; ./gradlew installAll - Common - clone https://github.com/confluentinc/common and build with mvn install I've already build the kafka on branch trunk (1675115ec193acf4c7d44e68a57272edfec0b455) But when building common I got the following error: [INFO] [INFO] --------------------< io.confluent:common-logging >--------------------- [INFO] Building common-logging 5.5.0-SNAPSHOT [7/11] [INFO] --------------------------------[ jar ]--------------------------------- [WARNING] The POM for org.apache.kafka:connect-api:jar:5.5.0-ccs-SNAPSHOT is missing, no dependency information available [WARNING] The POM for org.apache.kafka:connect-json:jar:5.5.0-ccs-SNAPSHOT is missing, no dependency information available [INFO] ------------------------------------------------------------------------ [INFO] Reactor Summary for common 5.5.0-SNAPSHOT: [INFO] [INFO] assembly-plugin-boilerplate ........................ SUCCESS [ 1.555 s] [INFO] Build Tools ........................................ SUCCESS [ 1.057 s] [INFO] common ............................................. SUCCESS [ 3.355 s] [INFO] utils .............................................. SUCCESS [ 1.799 s] [INFO] metrics ............................................ SUCCESS [ 3.836 s] [INFO] config ............................................. SUCCESS [ 2.585 s] [INFO] common-logging ..................................... FAILURE [ 0.103 s] [INFO] confluent-log4j-extensions ......................... SKIPPED [INFO] confluent-log4j2-extensions ........................ SKIPPED [INFO] package ............................................ SKIPPED [INFO] Common ............................................. SKIPPED [INFO] ------------------------------------------------------------------------ [INFO] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Total time: 15.149 s [INFO] Finished at: 2019-11-13T16:14:10Z [INFO] ------------------------------------------------------------------------ [ERROR] Failed to execute goal on project common-logging: Could not resolve dependencies for project io.confluent:common-logging:jar:5.5.0-SNAPSHOT: The following artifacts could not be resolved: org.apache.kafka:connect-api:jar:5.5.0-ccs-SNAPSHOT, org.apache.kafka:connect-json:jar:5.5.0-ccs-SNAPSHOT: Failure to find org.apache.kafka:connect-api:jar:5.5.0-ccs-SNAPSHOT in http://packages.confluent.io/maven/ was cached in the local repository, resolution will not be reattempted until the update interval of confluent has elapsed or updates are forced -> [Help 1] [ERROR] [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. [ERROR] Re-run Maven using the -X switch to enable full debug logging. [ERROR] [ERROR] For more information about the errors and possible solutions, please read the following articles: [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException [ERROR] [ERROR] After correcting the problems, you can resume the build with the command [ERROR] mvn <args> -rf :common-logging Any idea on what is going on? What am I missing? Thank you -- Miguel Silvestre