Fix Freezer's FLACs (and MP3s)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
530 B

import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
buildscript {
repositories {
gradlePluginPortal()
}
}
plugins {
kotlin("jvm") version "1.6.10"
application
id("com.github.johnrengelman.shadow") version "7.1.2"
id("java")
}
group = "net.toomuchram"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
implementation("org:jaudiotagger:2.0.3")
}
tasks.withType<KotlinCompile> {
kotlinOptions.jvmTarget = "1.8"
}
application {
mainClass.set("MainKt")
}