File tree Expand file tree Collapse file tree 4 files changed +12
-9
lines changed
src/main/java/com/iemr/tm/controller/patientApp/master Expand file tree Collapse file tree 4 files changed +12
-9
lines changed Original file line number Diff line number Diff line change @@ -13,10 +13,10 @@ jobs:
1313 ref : ${{ github.event.pull_request.head.ref }}
1414 repository : ${{ github.event.pull_request.head.repo.full_name }}
1515
16- - name : Setup JDK 8
16+ - name : Setup JDK 17
1717 uses : actions/setup-java@v2
1818 with :
19- java-version : 8
19+ java-version : 17
2020 distribution : ' adopt'
2121 - name : Build with Maven
2222 run : mvn clean install
Original file line number Diff line number Diff line change @@ -22,10 +22,10 @@ jobs:
2222 - name : Checkout code
2323 uses : actions/checkout@v2
2424
25- - name : Setup JDK 8
25+ - name : Setup JDK 17
2626 uses : actions/setup-java@v2
2727 with :
28- java-version : 8
28+ java-version : 17
2929 distribution : ' adopt'
3030
3131 - name : Build with Maven
3535 run : mvn -B package --file pom.xml
3636
3737 - name : Upload WAR file as artifact
38- uses : actions/upload-artifact@v2
38+ uses : actions/upload-artifact@v3
3939 with :
4040 name : TM-API
4141 path : target/tmapi-v1.0.war
Original file line number Diff line number Diff line change @@ -37,10 +37,10 @@ jobs:
3737 - name : Initialize CodeQL
3838 uses : github/codeql-action/init@v2
3939
40- - name : Setup JDK 8
40+ - name : Setup JDK 17
4141 uses : actions/setup-java@v2
4242 with :
43- java-version : 8
43+ java-version : 17
4444 distribution : ' adopt'
4545
4646 - name : Build with Maven
Original file line number Diff line number Diff line change 4949
5050public class PatientAppCommonMasterController {
5151
52- private Logger logger = LoggerFactory .getLogger (CommonMasterController .class );
53- @ Autowired
52+ private Logger logger = LoggerFactory .getLogger (PatientAppCommonMasterController .class );
5453 private CommonPatientAppMasterService commonPatientAppMasterService ;
5554
55+ @ Autowired
56+ public void setCommonPatientAppMasterService (CommonPatientAppMasterService commonPatientAppMasterService ) {
57+ this .commonPatientAppMasterService = commonPatientAppMasterService ;
58+ }
5659 /**
5760 * @param visitCategoryID
5861 * @return nurse master data for the provided visitCategoryID
You can’t perform that action at this time.
0 commit comments