-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
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
plugin requires kotlin-pluralize which is not in common maven repos #140
Comments
I have the same problem. |
Yeah, no problem. I also use kotlin dsl. Gradle version: 6.1.1.
|
I upgraded Gradle to version 6.2.1. My error msg:
|
We're also having this issue - the repo contains a |
@gdude2002 |
I added |
Or, I have to use any other library for pluralization 🤔 |
It is in Apache 2 licence. |
I'm not really even sure how you ended up managing to deploy without a pom - it's very much the standard thing, and it's what the Are you sure you haven't over-customized the deploy phase? Also: Please do not bundle libraries. They should be Maven dependencies if possible. |
if kotlin-pluralize is only used internally and not exposed to the library user then i guess shadowJar + repackaging is a option kotlin-pluralize looks like a abandoned project anyways |
Kotlin-pluralizer seems to be using JitPack (unfortunately, but it's something) |
It doesn't work for me :( |
@LookBad |
Version of plugin: 1.1.24, version of lib: 1.1.26. |
Sorry to be too late reply. I guess the following change may work. Could you tell me your Java version? I want to test it. // add
buildscript {
repositories {
jcenter()
maven { url = uri("https://jitpack.io") }
}
dependencies {
classpath group: 'org.jetbrains.kotlin', name: 'kotlin-script-util', version: '1.3.20'
classpath 'com.improve_future:harmonica:1.1.26'
}
}
plugins {
...
// remove
//id("com.improve_future.harmonica") version "1.1.24"
}
// add
apply plugin: 'jarmonica'
repositories {
jcenter()
maven { url = uri("https://kotlin.bintray.com/ktor") }
// add
maven { url = uri("https://jitpack.io") }
} |
Describe the bug
A clear and concise description of what the bug is.
To Reproduce
Steps to reproduce the behavior:
this repo seems to be required to add in pluginManagement to find the kotlin-pluralizer dependency
https://repository.mulesoft.org/nexus/content/repositories/public/
it is the only repo i found that provides the dependency
https://mvnrepository.com/artifact/com.github.cesarferreira/kotlin-pluralizer/0.2.9
Expected behavior
A clear and concise description of what you expected to happen.
easier adding of gradle plugin, maybe via shadowing the library ?
Environment:
Additional context
Add any other context about the problem here.
The harmonica depndency seems to also not be properly uploaded to maven
a
.pom
file seems to be missing and gradle refuses to find it on jcenter or bintrayThank you for your cooperation!
The text was updated successfully, but these errors were encountered: