diff --git a/.github/workflows/pull_request_worklow.yml b/.github/workflows/pull_request_worklow.yml index b0b77ab8..ed9af0bd 100644 --- a/.github/workflows/pull_request_worklow.yml +++ b/.github/workflows/pull_request_worklow.yml @@ -7,11 +7,11 @@ jobs: - name: Check out Repository uses: actions/checkout@v4 - - name: Set up JDK 1.8 - uses: actions/setup-java@v4 + - name: Set up JDK + uses: actions/setup-java@v5 with: - java-version: 8.0.232 - distribution: adopt + distribution: 'adopt' + java-version: 11 - name: Run tests run: mvn test diff --git a/pom.xml b/pom.xml index ab8abaee..acc90bd2 100644 --- a/pom.xml +++ b/pom.xml @@ -107,8 +107,8 @@ 3.10.1 UTF-8 - 9 - 9 + 11 + 11 @@ -124,7 +124,7 @@ - 1.9 - 1.9 + 11 + 11 diff --git a/src/main/java/com/kosherjava/zmanim/ComprehensiveZmanimCalendar.java b/src/main/java/com/kosherjava/zmanim/ComprehensiveZmanimCalendar.java index 396215ae..e52e6db8 100644 --- a/src/main/java/com/kosherjava/zmanim/ComprehensiveZmanimCalendar.java +++ b/src/main/java/com/kosherjava/zmanim/ComprehensiveZmanimCalendar.java @@ -4356,4 +4356,68 @@ public Date getSamuchLeMinchaKetana16Point1Degrees() { public Date getSamuchLeMinchaKetana72Minutes() { return getSamuchLeMinchaKetana(getAlos72(), getTzais72(), true); } + + public Date getSofZmanShmaKolEliyahu() { + return null; + } + + public Date getSofZmanShmaFixedLocal() { + return null; + } + + public Date getSofZmanTfilaFixedLocal() { + return null; + } + + public Date getBainHasmashosRT13Point24Degrees() { + return null; + } + + public Date getBainHasmashosRT58Point5Minutes() { + return null; + } + + public Date getBainHasmashosRT13Point5MinutesBefore7Point083Degrees() { + return null; + } + + public Date getBainHasmashosRT2Stars() { + return null; + } + + public Date getBainHasmashosYereim18Minutes() { + return null; + } + + public Date getBainHasmashosYereim3Point05Degrees() { + return null; + } + + public Date getBainHasmashosYereim16Point875Minutes() { + return null; + } + + public Date getBainHasmashosYereim2Point8Degrees() { + return null; + } + + public Date getBainHasmashosYereim13Point5Minutes() { + return null; + } + + public Date getBainHasmashosYereim2Point1Degrees() { + return null; + } + + public Date getTzaisGeonim3Point65Degrees() { + return null; + } + + public Date getTzaisGeonim3Point676Degrees() { + return null; + } + + public Date getSofZmanTfilahAteretTorah() { + return null; + } } diff --git a/src/test/java/com/kosherjava/zmanim/hebrewcalendar/RegressionTestFileWriter.java b/src/test/java/com/kosherjava/zmanim/hebrewcalendar/RegressionTestFileWriter.java index 4c3b0162..613d8fd6 100644 --- a/src/test/java/com/kosherjava/zmanim/hebrewcalendar/RegressionTestFileWriter.java +++ b/src/test/java/com/kosherjava/zmanim/hebrewcalendar/RegressionTestFileWriter.java @@ -1,10 +1,12 @@ package com.kosherjava.zmanim.hebrewcalendar; -import com.kosherjava.zmanim.ComplexZmanimCalendar; -import com.kosherjava.zmanim.util.AstronomicalCalculator; +import com.kosherjava.zmanim.ComprehensiveZmanimCalendar; import com.kosherjava.zmanim.util.GeoLocation; -import java.io.*; +import java.io.BufferedWriter; +import java.io.File; +import java.io.FileWriter; +import java.io.IOException; import java.time.LocalDate; import java.util.*; @@ -17,7 +19,7 @@ public static void main(String[] args) throws IOException { JewishCalendar cal = new JewishCalendar(current); GregorianCalendar gregorian = new GregorianCalendar(current.getYear(), current.getMonthValue() - 1, current.getDayOfMonth()); JewishDate date = new JewishDate(current); - ComplexZmanimCalendar zcal = new ComplexZmanimCalendar(new GeoLocation("Lakewood, NJ", 40.096, -74.222, 29.02, TimeZone.getTimeZone("America/New_York"))); + ComprehensiveZmanimCalendar zcal = new ComprehensiveZmanimCalendar(new GeoLocation("Lakewood, NJ", 40.096, -74.222, 29.02, TimeZone.getTimeZone("America/New_York"))); List calendars = new ArrayList<>(); List zmanim = new ArrayList<>();