Skip to content

Commit

Permalink
Merge pull request #21 from careem/support_run
Browse files Browse the repository at this point in the history
Add application plugin
  • Loading branch information
ahmedre authored Jul 4, 2023
2 parents f90793d + e852c3f commit ed0d6d7
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
buildscript {
dependencies {
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.20'
repositories {
mavenCentral()
}
}

apply plugin: 'org.jetbrains.kotlin.jvm'
plugins {
id 'org.jetbrains.kotlin.jvm' version "1.8.20"
id 'application'
}

application {
mainClass = 'com.careem.gradle.dependencies.DependencyTreeTldr'
}

configurations {
r8
Expand Down Expand Up @@ -88,11 +95,6 @@ artifacts {
archives file: binaryFile, name: 'binary', type: 'jar', builtBy: binaryJar, classifier: 'binary'
}

buildscript {
repositories {
mavenCentral()
}
}
repositories {
mavenCentral()
google()
Expand Down

0 comments on commit ed0d6d7

Please sign in to comment.