- Sort Score
- Result 10 results
- Languages All
Results 161 - 170 of 481 for Kotlin (0.1 sec)
-
compat/maven-model-builder/src/test/resources/dag.txt
quarkus/extensions/panache/hibernate-orm-panache-kotlin/deployment/pom.xml quarkus/extensions/panache/hibernate-orm-panache-common/deployment/pom.xml quarkus/extensions/panache/panache-hibernate-common/deployment/pom.xml quarkus/extensions/panache/hibernate-orm-panache-kotlin/runtime/pom.xml quarkus/extensions/kotlin/deployment/pom.xml quarkus/test-framework/junit5-internal/pom.xml
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 224K bytes - Viewed (0) -
android-test-app/build.gradle.kts
@file:Suppress("UnstableApiUsage") plugins { id("com.android.application") id("kotlin-android") } android { compileSdk = 34 namespace = "okhttp.android.testapp" testBuildType = "release" defaultConfig { minSdk = 21 targetSdk = 34 testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" } compileOptions { targetCompatibility(JavaVersion.VERSION_11)
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Dec 23 14:46:51 UTC 2023 - 1.2K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/PartialTrigger.kt
* limitations under the License. */ package configurations import common.applyDefaultSettings import common.uuidPrefix import jetbrains.buildServer.configs.kotlin.DslContext import model.CIBuildModel class PartialTrigger<T : BaseGradleBuildType>(triggerName: String, triggerId: String, model: CIBuildModel, dependencies: Iterable<T>) : BaseGradleBuildType(init = {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Dec 05 00:08:14 UTC 2023 - 1.3K bytes - Viewed (0) -
okhttp-sse/build.gradle.kts
import com.vanniktech.maven.publish.JavadocJar import com.vanniktech.maven.publish.KotlinJvm plugins { kotlin("jvm") id("org.jetbrains.dokka") id("com.vanniktech.maven.publish.base") id("binary-compatibility-validator") } project.applyOsgi( "Export-Package: okhttp3.sse", "Automatic-Module-Name: okhttp3.sse", "Bundle-SymbolicName: com.squareup.okhttp3.sse" ) dependencies { api(projects.okhttp)
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Thu Jan 04 05:32:07 UTC 2024 - 754 bytes - Viewed (0) -
container-tests/build.gradle.kts
plugins { kotlin("jvm") } val platform = System.getProperty("okhttp.platform", "jdk9") val testJavaVersion = System.getProperty("test.java.version", "21").toInt() tasks.withType<Test> { useJUnitPlatform() onlyIf("By default not in CI") { System.getenv("CI") == null || (project.hasProperty("containerTests") && project.property("containerTests").toString().toBoolean()) } jvmArgs( "-Dokhttp.platform=$platform",
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Mar 17 14:46:34 UTC 2024 - 1.1K bytes - Viewed (0) -
samples/static-server/build.gradle.kts
plugins { kotlin("jvm") id("com.github.johnrengelman.shadow") } tasks.compileJava { options.isWarnings = false } tasks.jar { manifest { attributes("Main-Class" to "okhttp3.sample.SampleServer") } } dependencies { implementation(projects.mockwebserver) } tasks.shadowJar { mergeServiceFiles()
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Tue Feb 08 20:01:28 UTC 2022 - 316 bytes - Viewed (0) -
okhttp-urlconnection/README.md
OkHttp URLConnection ==================== This module integrates OkHttp with `Authenticator` and `CookieHandler` from `java.net`. This module is obsolete; prefer `okhttp-java-net-cookiejar`. ### Download ```kotlin testImplementation("com.squareup.okhttp3:okhttp-urlconnection:4.12.0")
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Dec 17 15:34:10 UTC 2023 - 293 bytes - Viewed (0) -
build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt
val littleproxy = "xyz.rogfam:littleproxy" val mina = "org.apache.mina:mina-core" val mockitoCore = "org.mockito:mockito-core" val mockitoKotlin = "com.nhaarman:mockito-kotlin" val mockitoKotlin2 = "com.nhaarman.mockitokotlin2:mockito-kotlin" val mockwebserver = "com.squareup.okhttp3:mockwebserver" val mySqlConnector = "mysql:mysql-connector-java" val netty = "io.netty:netty-all"
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Oct 29 08:06:17 UTC 2024 - 15.5K bytes - Viewed (0) -
build-logic/documentation/build.gradle.kts
plugins { id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin") id("gradlebuild.build-logic.groovy-dsl-gradle-plugin") } description = "Provides a plugin to generate Gradle's DSL reference, User Manual and Javadocs" dependencies { implementation("gradlebuild:basics") implementation("gradlebuild:module-identity") implementation(projects.buildUpdateUtils) implementation("com.github.javaparser:javaparser-core")
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jun 21 13:38:04 UTC 2024 - 1.2K bytes - Viewed (0) -
buildSrc/build.gradle.kts
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ plugins { `kotlin-dsl` } repositories { mavenCentral() } dependencies { implementation("biz.aQute.bnd:biz.aQute.bnd.gradle:6.4.0")
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Oct 18 20:40:57 UTC 2023 - 746 bytes - Viewed (0)