Skip to content

Commit

Permalink
fix jitpack build
Browse files Browse the repository at this point in the history
  • Loading branch information
MWGuy committed May 4, 2024
1 parent af45453 commit d189b9a
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 19 deletions.
26 changes: 26 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
apply plugin: 'java'
apply plugin: 'maven-publish'

group = "ru.kencomics"
version = "1.0"

repositories {
mavenCentral()
}

dependencies {
implementation("org.jetbrains:annotations:24.1.0")
}

java {
withSourcesJar()
withJavadocJar()
}

publishing {
publications {
maven(MavenPublication) {
from components.java
}
}
}
19 changes: 0 additions & 19 deletions build.gradle.kts

This file was deleted.

0 comments on commit d189b9a

Please sign in to comment.