From bed669e704d8caf290bae19d9e3b724d22008e29 Mon Sep 17 00:00:00 2001 From: Moshe Date: Thu, 11 Jan 2018 11:46:17 +0200 Subject: [PATCH] gradle project and ignore --- .gitignore | 42 +++++++++++++++++++++--- build.gradle | 12 +++---- gradle/wrapper/gradle-wrapper.properties | 2 +- 3 files changed, 44 insertions(+), 12 deletions(-) diff --git a/.gitignore b/.gitignore index 28c4c146..3641d356 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,39 @@ -target/ -.idea/ -zmanim.iml +# Created by .ignore support plugin (hsz.mobi) +### Java template +# Compiled class file +*.class + +# Log file +*.log + +# BlueJ files +*.ctxt + +# Mobile Tools for Java (J2ME) +.mtj.tmp/ + +# Package Files # +*.jar +*.war +*.ear +*.zip +*.tar.gz +*.rar + +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml +hs_err_pid* + +# IntelliJ +*.iml .gradle -build local.properties -*.class \ No newline at end of file +.idea/ +.idea/misc.xml +.idea/vcs.xml +.idea/workspace.xml +.idea/libraries +.DS_Store +build/ +captures/ +.externalNativeBuild +target/ diff --git a/build.gradle b/build.gradle index a295115e..a6b5a5e6 100644 --- a/build.gradle +++ b/build.gradle @@ -10,19 +10,19 @@ plugins { repositories { mavenLocal() - maven { - url = uri('https://repo.maven.apache.org/maven2') - } + mavenCentral() } dependencies { - testImplementation 'junit:junit:4.12' + testImplementation 'junit:junit:4.13.2' } group = 'com.kosherjava' version = '2.1.0' -sourceCompatibility = JavaVersion.VERSION_1_9 -targetCompatibility = JavaVersion.VERSION_1_9 +java { + sourceCompatibility = JavaVersion.VERSION_11 + targetCompatibility = JavaVersion.VERSION_11 +} publishing { publications { diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index a4f0001d..3ae1e2f1 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-6.4.1-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists