KorGE

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. tsaulic
    T
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 1
    • Best 0
    • Controversial 0
    • Groups 0

    tsaulic

    @tsaulic

    0
    Reputation
    1
    Profile views
    1
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    tsaulic Unfollow Follow

    Latest posts made by tsaulic

    • RE: Adding external Libraries

      I have the same issue. I was able to get my package to download via

      repositories {
      	// https://stackoverflow.com/questions/59413364/upgrading-from-gradle-5-1-1-to-6-0-1-breaks-kotlin-multiplatform-build
      	jcenter {
      		metadataSources {
      			gradleMetadata()
      			mavenPom()
      		}
      	}
      	jcenter()
      }
      
      dependencies {
      	add("commonMainApi", "com.github.glwithu06.semver:semver:1.0.1")
      }
      

      but I cannot resolve it in my code, it's like it's not on the classpath
      I also tried using

      plugins {
      	java
      }
      
      dependencies {
      	implementation("com.github.glwithu06.semver:semver:1.0.1")
      }
      

      but does not even add it to my external dependencies (although it's downloaded and it's in my modules-2 gradle cache folder along with sources jar, main jar and pom.xml

      any ideas?

      posted in Support
      T
      tsaulic