Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Taskeren committed Oct 15, 2022
1 parent 7808aac commit 9dd039f
Show file tree
Hide file tree
Showing 7 changed files with 2,784 additions and 2,819 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,8 @@

# Ignore Gradle build output directory
build
.idea
.idea

run

bin
2 changes: 0 additions & 2 deletions bin/.gitignore

This file was deleted.

16 changes: 11 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,29 @@ plugins {
`maven-publish`
}

version = "1.1"
version = "1.2"

repositories {
mavenCentral()
}

dependencies {
implementation("com.google.guava:guava:27.0.1-jre")
implementation("commons-io:commons-io:2.4")
testImplementation("junit:junit:4.12")
implementation("com.google.guava:guava:31.1-jre")
implementation("commons-io:commons-io:2.11.0")

implementation("org.jetbrains:annotations:23.0.0")

implementation("org.slf4j:slf4j-api:2.0.3")

testImplementation("junit:junit:4.13.2")
testImplementation("org.slf4j:slf4j-simple:2.0.3")
}

publishing {
publications {
create<MavenPublication>("maven") {
groupId = "com.github.taskeren"
artifactId = "tconfig"
artifactId = "config"
version = "${project.version}"

from(components["java"])
Expand Down
Loading

0 comments on commit 9dd039f

Please sign in to comment.