https://kotlinlang.org logo
l

Luigi Scarminio

05/31/2021, 1:27 PM
Hello, My company restricts access to certain URLs. And it seems that the URL for the Kotlin compiler is blocked. Can someone point me the URLs for Kotlin ecosystem that are needed? Including Kotlin JVM and Kotlin Native
1
s

Stephan Schroeder

05/31/2021, 1:49 PM
🤔 I don't even have a stand-alone version of the Kotlin compiler. One came with IntelliJ and each of my project has it's own version configured in the buildchain via maven/gradle. So all you should be access to the maven repository https://mvnrepository.com/artifact/org.jetbrains.kotlin/kotlin-stdlib this is the url to the available versions page, so the one you're looking for will differ a bit, I don't even know since I simply write
Copy code
id("org.jetbrains.kotlin.jvm") version "1.5.10"
in my build.gradle.kts file.
l

Luigi Scarminio

05/31/2021, 4:21 PM
g

gildor

06/01/2021, 9:11 AM
definitely not mvnrepository.com
it’s just a web site with search service
all Kotlin dependencies are hosted on maven central
or any package which you need
also probably (which should be now default UYRL for maven central, but not sure that it used by all tools) https://repo.maven.apache.org/maven2/