Skip to content

Commit

Permalink
Java library
Browse files Browse the repository at this point in the history
  • Loading branch information
pnemonic78 committed Jun 18, 2022
1 parent 4282fa6 commit 4a15861
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 18 deletions.
23 changes: 10 additions & 13 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,32 +1,29 @@
/*
* This file was generated by the Gradle 'init' task.
*/

plugins {
id 'java'
id 'java-library'
id 'maven-publish'
id "java-library"
id "maven-publish"
}

repositories {
mavenLocal()
maven {
url = uri('https://repo.maven.apache.org/maven2')
url = uri("https://repo.maven.apache.org/maven2")
}
}

dependencies {
testImplementation 'junit:junit:4.12'
testImplementation "junit:junit:4.12"
}

group = 'com.kosherjava'
version = '2.1.0'
sourceCompatibility = '8'
targetCompatibility = '1.8'
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}

publishing {
publications {
maven(MavenPublication) {
group = "com.kosherjava"
version = "2.1.0"
from(components.java)
}
}
Expand Down
6 changes: 1 addition & 5 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1 @@
/*
* This file was generated by the Gradle 'init' task.
*/

rootProject.name = 'zmanim'
rootProject.name = "zmanim"

0 comments on commit 4a15861

Please sign in to comment.