Skip to content

Commit 4a15861

Browse files
committed
Java library
1 parent 4282fa6 commit 4a15861

File tree

2 files changed

+11
-18
lines changed

2 files changed

+11
-18
lines changed

build.gradle

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,29 @@
1-
/*
2-
* This file was generated by the Gradle 'init' task.
3-
*/
4-
51
plugins {
6-
id 'java'
7-
id 'java-library'
8-
id 'maven-publish'
2+
id "java-library"
3+
id "maven-publish"
94
}
105

116
repositories {
127
mavenLocal()
138
maven {
14-
url = uri('https://repo.maven.apache.org/maven2')
9+
url = uri("https://repo.maven.apache.org/maven2")
1510
}
1611
}
1712

1813
dependencies {
19-
testImplementation 'junit:junit:4.12'
14+
testImplementation "junit:junit:4.12"
2015
}
2116

22-
group = 'com.kosherjava'
23-
version = '2.1.0'
24-
sourceCompatibility = '8'
25-
targetCompatibility = '1.8'
17+
java {
18+
sourceCompatibility = JavaVersion.VERSION_1_8
19+
targetCompatibility = JavaVersion.VERSION_1_8
20+
}
2621

2722
publishing {
2823
publications {
2924
maven(MavenPublication) {
25+
group = "com.kosherjava"
26+
version = "2.1.0"
3027
from(components.java)
3128
}
3229
}

settings.gradle

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1 @@
1-
/*
2-
* This file was generated by the Gradle 'init' task.
3-
*/
4-
5-
rootProject.name = 'zmanim'
1+
rootProject.name = "zmanim"

0 commit comments

Comments
 (0)