From 93b470547a46797b0002d16fe2e4950c175b2f7d Mon Sep 17 00:00:00 2001 From: Mayur Ingle Date: Sat, 11 Apr 2026 18:47:27 +0530 Subject: [PATCH 1/2] commit update version --- .classpath | 32 ------- .idea/.gitignore | 12 +++ .project | 23 ----- README.md | 4 +- pom.xml | 2 +- system.properties | 2 +- target/classes/META-INF/MANIFEST.MF | 6 -- .../pom.properties | 7 -- .../pom.xml | 89 ------------------ .../pom.properties | 7 -- .../pom.xml | 89 ------------------ .../spring-configuration-metadata.json | 57 ----------- target/classes/application.properties | 10 -- ...BootQrCodeGeneratorReaderApplication.class | Bin 816 -> 0 bytes .../configuration/OpenApiConfiguration.class | Bin 2693 -> 0 bytes ...urationProperties$Properties$Contact.class | Bin 3402 -> 0 bytes ...piConfigurationProperties$Properties.class | Bin 4425 -> 0 bytes .../OpenApiConfigurationProperties.class | Bin 2887 -> 0 bytes .../iris/controller/QrCodeController.class | Bin 2570 -> 0 bytes ...to$QrCodeGenerationRequestDtoBuilder.class | Bin 2299 -> 0 bytes .../iris/dto/QrCodeGenerationRequestDto.class | Bin 2584 -> 0 bytes .../handler/GenericExceptionHandler.class | Bin 1829 -> 0 bytes .../ValidationFailureExceptionHandler.class | Bin 2666 -> 0 bytes .../onurdesk/iris/service/QrCodeService.class | Bin 4416 -> 0 bytes .../compile/default-compile/createdFiles.lst | 2 - .../compile/default-compile/inputFiles.lst | 8 -- .../default-testCompile/createdFiles.lst | 1 - .../default-testCompile/inputFiles.lst | 2 - ...tQrCodeGeneratorReaderApplicationTests.xml | 89 ------------------ ...urdesk.iris.service.QrCodeServiceTests.xml | 71 -------------- ...tQrCodeGeneratorReaderApplicationTests.txt | 4 - ...urdesk.iris.service.QrCodeServiceTests.txt | 4 - ...rCodeGeneratorReaderApplicationTests.class | Bin 614 -> 0 bytes .../iris/service/QrCodeServiceTests.class | Bin 9184 -> 0 bytes 34 files changed, 16 insertions(+), 505 deletions(-) delete mode 100644 .classpath create mode 100644 .idea/.gitignore delete mode 100644 .project delete mode 100644 target/classes/META-INF/MANIFEST.MF delete mode 100644 target/classes/META-INF/maven/com.hardik/spring-boot-qr-code-generator-reader/pom.properties delete mode 100644 target/classes/META-INF/maven/com.hardik/spring-boot-qr-code-generator-reader/pom.xml delete mode 100644 target/classes/META-INF/maven/com.onurdesk/spring-boot-qr-code-generator-reader/pom.properties delete mode 100644 target/classes/META-INF/maven/com.onurdesk/spring-boot-qr-code-generator-reader/pom.xml delete mode 100644 target/classes/META-INF/spring-configuration-metadata.json delete mode 100644 target/classes/application.properties delete mode 100644 target/classes/com/onurdesk/iris/SpringBootQrCodeGeneratorReaderApplication.class delete mode 100644 target/classes/com/onurdesk/iris/configuration/OpenApiConfiguration.class delete mode 100644 target/classes/com/onurdesk/iris/configuration/properties/OpenApiConfigurationProperties$Properties$Contact.class delete mode 100644 target/classes/com/onurdesk/iris/configuration/properties/OpenApiConfigurationProperties$Properties.class delete mode 100644 target/classes/com/onurdesk/iris/configuration/properties/OpenApiConfigurationProperties.class delete mode 100644 target/classes/com/onurdesk/iris/controller/QrCodeController.class delete mode 100644 target/classes/com/onurdesk/iris/dto/QrCodeGenerationRequestDto$QrCodeGenerationRequestDtoBuilder.class delete mode 100644 target/classes/com/onurdesk/iris/dto/QrCodeGenerationRequestDto.class delete mode 100644 target/classes/com/onurdesk/iris/exception/handler/GenericExceptionHandler.class delete mode 100644 target/classes/com/onurdesk/iris/exception/handler/ValidationFailureExceptionHandler.class delete mode 100644 target/classes/com/onurdesk/iris/service/QrCodeService.class delete mode 100644 target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst delete mode 100644 target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst delete mode 100644 target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst delete mode 100644 target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst delete mode 100644 target/surefire-reports/TEST-com.onurdesk.iris.SpringBootQrCodeGeneratorReaderApplicationTests.xml delete mode 100644 target/surefire-reports/TEST-com.onurdesk.iris.service.QrCodeServiceTests.xml delete mode 100644 target/surefire-reports/com.onurdesk.iris.SpringBootQrCodeGeneratorReaderApplicationTests.txt delete mode 100644 target/surefire-reports/com.onurdesk.iris.service.QrCodeServiceTests.txt delete mode 100644 target/test-classes/com/onurdesk/iris/SpringBootQrCodeGeneratorReaderApplicationTests.class delete mode 100644 target/test-classes/com/onurdesk/iris/service/QrCodeServiceTests.class diff --git a/.classpath b/.classpath deleted file mode 100644 index bec2d10..0000000 --- a/.classpath +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..c28cfda --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,12 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Ignored default folder with query files +/queries/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +/target/ +/.settings/ \ No newline at end of file diff --git a/.project b/.project deleted file mode 100644 index 8bfbd77..0000000 --- a/.project +++ /dev/null @@ -1,23 +0,0 @@ - - - spring-boot-qr-code-generator-reader - - - - - - org.eclipse.jdt.core.javabuilder - - - - - org.eclipse.m2e.core.maven2Builder - - - - - - org.eclipse.jdt.core.javanature - org.eclipse.m2e.core.maven2Nature - - diff --git a/README.md b/README.md index 729d165..5a762b5 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,9 @@ [![Java CI with Maven](https://github.com/thecoder8890/spring-boot-qr-code-generator-reader-api/actions/workflows/maven-ci.yml/badge.svg)](https://github.com/thecoder8890/spring-boot-qr-code-generator-reader-api/actions/workflows/maven-ci.yml) -## Application used [Java 17](https://onurdesk.com/what-are-preview-features-in-java-17/) and Spring Boot 3.5.0 | [Onurdesk](https://onurdesk.com/) +## Application used [Java 17](https://onurdesk.com/what-are-preview-features-in-java-17/) and Spring Boot 3.5.13 | [Onurdesk](https://onurdesk.com/) -###### Spring boot application exposing REST API endpoint to genrate QR-code representing custom message and another endpoint to read the decoded message, built using Java, [Spring Boot 3.5.0](https://spring.io/projects/spring-boot/) and [google's zxing library](https://opensource.google/projects/zxing). +###### Spring boot application exposing REST API endpoint to genrate QR-code representing custom message and another endpoint to read the decoded message, built using Java, [Spring Boot 3.5.13](https://spring.io/projects/spring-boot/) and [google's zxing library](https://opensource.google/projects/zxing).
Running Application diff --git a/pom.xml b/pom.xml index 6c354db..1ad4887 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ org.springframework.boot spring-boot-starter-parent - 3.5.0 + 3.5.13 com.onurdesk diff --git a/system.properties b/system.properties index a5a6d27..0dc726c 100644 --- a/system.properties +++ b/system.properties @@ -1 +1 @@ -java.runtime.version=15 \ No newline at end of file +java.runtime.version=17 \ No newline at end of file diff --git a/target/classes/META-INF/MANIFEST.MF b/target/classes/META-INF/MANIFEST.MF deleted file mode 100644 index 8f62f83..0000000 --- a/target/classes/META-INF/MANIFEST.MF +++ /dev/null @@ -1,6 +0,0 @@ -Manifest-Version: 1.0 -Build-Jdk-Spec: 15 -Implementation-Title: spring-boot-qr-code-generator-reader -Implementation-Version: 0.0.1-SNAPSHOT -Created-By: Maven Integration for Eclipse - diff --git a/target/classes/META-INF/maven/com.hardik/spring-boot-qr-code-generator-reader/pom.properties b/target/classes/META-INF/maven/com.hardik/spring-boot-qr-code-generator-reader/pom.properties deleted file mode 100644 index 78a5c3b..0000000 --- a/target/classes/META-INF/maven/com.hardik/spring-boot-qr-code-generator-reader/pom.properties +++ /dev/null @@ -1,7 +0,0 @@ -#Generated by Maven Integration for Eclipse -#Thu Jun 17 18:42:42 IST 2021 -m2e.projectLocation=C\:\\D-drive\\personal\\Git-Projects\\spring-boot-qr-code-generator-reader-api -m2e.projectName=spring-boot-qr-code-generator-reader -groupId=com.hardik -artifactId=spring-boot-qr-code-generator-reader -version=0.0.1-SNAPSHOT diff --git a/target/classes/META-INF/maven/com.hardik/spring-boot-qr-code-generator-reader/pom.xml b/target/classes/META-INF/maven/com.hardik/spring-boot-qr-code-generator-reader/pom.xml deleted file mode 100644 index caefa6e..0000000 --- a/target/classes/META-INF/maven/com.hardik/spring-boot-qr-code-generator-reader/pom.xml +++ /dev/null @@ -1,89 +0,0 @@ - - - 4.0.0 - - org.springframework.boot - spring-boot-starter-parent - 2.5.0 - - - com.hardik - spring-boot-qr-code-generator-reader - 0.0.1-SNAPSHOT - spring-boot-qr-code-generator-reader - Spring Boot Application exposing REST APi endpoints to generate QR code representing custom messages and another endpoint to read it. - - 15 - - - - org.springframework.boot - spring-boot-starter-web - - - org.springframework.boot - spring-boot-starter-validation - - - org.json - json - 20210307 - - - com.google.zxing - core - 3.3.2 - - - com.google.zxing - javase - 3.3.2 - - - org.springdoc - springdoc-openapi-ui - 1.5.8 - - - org.springframework.boot - spring-boot-devtools - runtime - true - - - org.projectlombok - lombok - true - - - org.springframework.boot - spring-boot-starter-test - test - - - org.springframework.boot - spring-boot-configuration-processor - true - - - - - - - org.springframework.boot - spring-boot-maven-plugin - - - - org.projectlombok - lombok - - - - - - - - diff --git a/target/classes/META-INF/maven/com.onurdesk/spring-boot-qr-code-generator-reader/pom.properties b/target/classes/META-INF/maven/com.onurdesk/spring-boot-qr-code-generator-reader/pom.properties deleted file mode 100644 index 4e9b267..0000000 --- a/target/classes/META-INF/maven/com.onurdesk/spring-boot-qr-code-generator-reader/pom.properties +++ /dev/null @@ -1,7 +0,0 @@ -#Generated by Maven Integration for Eclipse -#Thu Jun 17 18:45:20 IST 2021 -m2e.projectLocation=C\:\\D-drive\\personal\\Git-Projects\\spring-boot-qr-code-generator-reader-api -m2e.projectName=spring-boot-qr-code-generator-reader -groupId=com.onurdesk -artifactId=spring-boot-qr-code-generator-reader -version=0.0.1-SNAPSHOT diff --git a/target/classes/META-INF/maven/com.onurdesk/spring-boot-qr-code-generator-reader/pom.xml b/target/classes/META-INF/maven/com.onurdesk/spring-boot-qr-code-generator-reader/pom.xml deleted file mode 100644 index ac30b74..0000000 --- a/target/classes/META-INF/maven/com.onurdesk/spring-boot-qr-code-generator-reader/pom.xml +++ /dev/null @@ -1,89 +0,0 @@ - - - 4.0.0 - - org.springframework.boot - spring-boot-starter-parent - 2.5.0 - - - com.onurdesk - spring-boot-qr-code-generator-reader - 0.0.1-SNAPSHOT - spring-boot-qr-code-generator-reader - Spring Boot Application exposing REST APi endpoints to generate QR code representing custom messages and another endpoint to read it. - - 15 - - - - org.springframework.boot - spring-boot-starter-web - - - org.springframework.boot - spring-boot-starter-validation - - - org.json - json - 20210307 - - - com.google.zxing - core - 3.3.2 - - - com.google.zxing - javase - 3.3.2 - - - org.springdoc - springdoc-openapi-ui - 1.5.8 - - - org.springframework.boot - spring-boot-devtools - runtime - true - - - org.projectlombok - lombok - true - - - org.springframework.boot - spring-boot-starter-test - test - - - org.springframework.boot - spring-boot-configuration-processor - true - - - - - - - org.springframework.boot - spring-boot-maven-plugin - - - - org.projectlombok - lombok - - - - - - - - diff --git a/target/classes/META-INF/spring-configuration-metadata.json b/target/classes/META-INF/spring-configuration-metadata.json deleted file mode 100644 index a10f1df..0000000 --- a/target/classes/META-INF/spring-configuration-metadata.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "groups": [ - { - "name": "com.onurdesk.iris.swagger", - "type": "com.onurdesk.iris.configuration.properties.OpenApiConfigurationProperties", - "sourceType": "com.onurdesk.iris.configuration.properties.OpenApiConfigurationProperties" - }, - { - "name": "com.onurdesk.iris.swagger.properties", - "type": "com.onurdesk.iris.configuration.properties.OpenApiConfigurationProperties$Properties", - "sourceType": "com.onurdesk.iris.configuration.properties.OpenApiConfigurationProperties", - "sourceMethod": "getProperties()" - }, - { - "name": "com.onurdesk.iris.swagger.properties.contact", - "type": "com.onurdesk.iris.configuration.properties.OpenApiConfigurationProperties$Properties$Contact", - "sourceType": "com.onurdesk.iris.configuration.properties.OpenApiConfigurationProperties$Properties", - "sourceMethod": "getContact()" - } - ], - "properties": [ - { - "name": "com.onurdesk.iris.swagger.properties.api-version", - "type": "java.lang.String", - "sourceType": "com.onurdesk.iris.configuration.properties.OpenApiConfigurationProperties$Properties" - }, - { - "name": "com.onurdesk.iris.swagger.properties.contact.email", - "type": "java.lang.String", - "sourceType": "com.onurdesk.iris.configuration.properties.OpenApiConfigurationProperties$Properties$Contact" - }, - { - "name": "com.onurdesk.iris.swagger.properties.contact.name", - "type": "java.lang.String", - "sourceType": "com.onurdesk.iris.configuration.properties.OpenApiConfigurationProperties$Properties$Contact" - }, - { - "name": "com.onurdesk.iris.swagger.properties.contact.url", - "type": "java.lang.String", - "sourceType": "com.onurdesk.iris.configuration.properties.OpenApiConfigurationProperties$Properties$Contact" - }, - { - "name": "com.onurdesk.iris.swagger.properties.description", - "type": "java.lang.String", - "sourceType": "com.onurdesk.iris.configuration.properties.OpenApiConfigurationProperties$Properties" - }, - { - "name": "com.onurdesk.iris.swagger.properties.title", - "type": "java.lang.String", - "sourceType": "com.onurdesk.iris.configuration.properties.OpenApiConfigurationProperties$Properties" - } - ], - "hints": [], - "ignored": { - "properties": [] - } -} \ No newline at end of file diff --git a/target/classes/application.properties b/target/classes/application.properties deleted file mode 100644 index f3c324c..0000000 --- a/target/classes/application.properties +++ /dev/null @@ -1,10 +0,0 @@ -#Port -server.port=9090 - -#Open-Api -com.onurdesk.iris.swagger.properties.title=Iris -com.onurdesk.iris.swagger.properties.description=Spring Boot Application exposing REST APi endpoints to generate QR code representing custom messages and another endpoint to read/decode it. -com.onurdesk.iris.swagger.properties.api-version=1.0.0 -com.onurdesk.iris.swagger.properties.contact.name=Mayur Ingle -com.onurdesk.iris.swagger.properties.contact.email=inglemayur8890@gmail.com -com.onurdesk.iris.swagger.properties.contact.url=https://www.linkedin.com/in/mayuringle/ diff --git a/target/classes/com/onurdesk/iris/SpringBootQrCodeGeneratorReaderApplication.class b/target/classes/com/onurdesk/iris/SpringBootQrCodeGeneratorReaderApplication.class deleted file mode 100644 index 8f38ca1681dcb561fe9a925f0bcd68eff29ca2c0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 816 zcmbtSOK;Oa5dJnz>NE|sqz@>M1GhAX?u|=Ir4or=TpkSy2Tp5e>uziBM&mW`w>W_~ z^at>xDrVhE^&uC8CC_N*@y*OP^XKOGHGtQ6(L)O>5!!upuqv>5slFg$WWqRikc~|4fGR7H4CDJQC%G!i@t1~W z>O(8z{dgI2>a5q_y_`6EZnBD0lIunZHV5}updF?V*ockQ@2Vov^eMy&3}Tn6e5S~R z_noorFH9+L6#ox1p=zNFPq;f=HqeayiZZUVwZzT4JJtTe%|EEXqu0cNy{W4x)o)Gc z{2!Kd5C|67JFBcWg`Szx1fr~UzFuNI>oR`p&8f;eCb}kAH>x&>9^)kC*6fTwb*VHxaf5-ulcn4p^|~XO17Khy(4r- zj+V2uiGG|iU|Kj0OCWP>o&^RfGHfvkJV{L*pYX|+XT~syGX{n%yoX_djbn?UjYPm? zI9#dFDTM+rPAHbi21DAwS%E9cvxApTr6PTM|Ay^3fnD>;vKrXR-SX@VA0|dHYT+Et z3-sMlt_tS`lBubJPRh8230x59r}PaKR;9pM3g2<|9lPqd6?;AOm0Mu~M{v=?hqxrr z8y*60r~ZqZ%61nNuf`P%A8BG;0xa-?^aIwrrnze2V@+f1H*JGRS(wu3L89-=pyaDP zy*)I1#=UiCaP{p<8fi2!i%}DE_{_i!3pX{(vy&)~=DHo`da359s^-3B z;S1bmQl+*Cr2j`!n-!tM_{u_B$6zp1d8Z~d$6X8anxn^!4RiR$!h#0%5wz*YIu|k1%TBvA|HP=2we5Qg7jbQauR0S_3OE$(_+nahe(zxdR2xWR)xP z^;%K-8%|O0tl_Lza;gQ#S9;zs_JrGt9s5?-#uv-@*HJ(=v(?E33SGUl&|Ug|TW2H7 z^AmC0+!G|2d~;@xIvHVOkLzxzYOAB&zB9%ZYoOqN_-t^e@R zcCxZ_?K{;vrCJ%6K`d6CAkbG3vjt)oY4iqM=KbdpuR`1m`Ub?e1mD-O!EuwbS4g6V z*OoV~l0Y;v_#`}C9i|_%5%Mm6yd=g>$0JHpNUyJZ*gwHvA8Q~6xuOr-x zu#`VQhTm6aBV>Px=?Z*~$JFO|vpJ6ejPWQMXYZU~qq%_Z_VA16k@A)=S*C9K%^rNl9bGM@>^n0T0PTbx(uaGMHCbgeko_CX5Yp?!{TyAXc^ D*H|j9 diff --git a/target/classes/com/onurdesk/iris/configuration/properties/OpenApiConfigurationProperties$Properties$Contact.class b/target/classes/com/onurdesk/iris/configuration/properties/OpenApiConfigurationProperties$Properties$Contact.class deleted file mode 100644 index 59f9e79d774c663e254d802ca3fd0bbe53b2ae65..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3402 zcmcImTXWM!7(Hw2mP9GWi(ks{r6w&~JB&10Q` zPJcjo;h~*r=?o8@_Jz*$HS>s@_J)a~uAO9juoe-w8@p&%N!eHhe2|JhxQ$y}Ip(jvbUP)ou55-I++w&o!ru zDUp!Ss)hnuxaI`KV**RluVbT1Hw<*?=r+*NM&uOOp%?m>9$mcUiN7wFz&VV$XI=JFY$3*jTpxMQgc6 zU-Q#m)v7I7z9YwpQjrxXaPzg;Q%nlI!qS_u!!>VZ&hnX`(Du3Kf%%3TIve(sd)EmZ znsnNAy)bGk&gQ3U-o~=GUOH#HHk-{}A&U_->!YQZl6*+_bwXqfF!Pj{c>&?ImT^*g ztZ^?~vweZ?s11{X?}?PfWYiT+$s#8#o{0xWG{IsQ=!*4`+`GWeUZ1h*Nqp70`Kg&n z+Au|fd^>2=WZQ4DtHqd1DMpKp(2G6cUJG8sui9rFnYp9SKUzj*hcY;`b`YNTf>6i2 zz|<={P?)?ko)-q8Z`I>01_my3hZk72b>NLAb8-5wVMJ2YJB#+SIN zjK5CQ^#@ddh2#6j!fK}XL)*h{yl*o(p{MVV;j#~?n=!LiqoFA-l$i$H)cxH zvT*TU-R=Otp2BaQT`5&UF=5qe3r=XWR?R7wg*#ERg1`=R+!R=RWhqHrCM=b$K(qXl zQ0rJ0=-U>=PO;IkB5>&WP}Xc5NS?hJ9;JZ7H!liG8F>>#Z(aaEE+?-}j(Z^ZypJr7 zadeWn4By>@L%%@`{to?@Xw3)w*N6nKj}N2&2!)UEF-OElYyzK9R@t)O=kO^-x#T$C zLS7ssmRpoKl0@p@uju`mLIzvx`yzHT1|;mQM7%;e5bbOyD!h=0_f7|*UF}5sUr2NU z36;?y-a(PUJhF6$2!yRdRcl|O-*_^ zXr<>zKpY%#oT2GraPAKc{sdKdIP@1XKSIqu9QqTPnc=}l*c%Ng9GD&EUs)OX8$AW( z33fh!IZ{v_;q6Vtk+Mq2k+N1$B}RLK`~&nB)Pj}*^_6vk`pQN@mmnhn=>=mGq&%cS z*;M_-)qNv2w3(y({N_AKFL&cRoMOdi_#xxqGwQPZR;l7NB?aej7H24_nBm+6B@H!p z;^&lf_&9(`N(NED5KP_p7jNjuJjEUz27iWlihZ%zl@>RfYP>DDiu`m-D(?iXla;5+ zs7j~OO_gq0wds^fSEN%(%bsdu7xF8NG;CQh%C|f#F6Sy^%6OEZgSpBY(_`d@9zY*? zg#KGnf26F)iGq^M7&2+`R9{(*rkJm2kx@{ise_$UAcMyZ6Kk`WXL!%kS`~AcqLks0 za}gKlK^8}uz>Aa=K6^3Ee>Dp7x6qzZp)kloFt8Bf8R1)Fs-H2b>Ly?lqqM3Ln3jTV zA=|YCx3$1b^Pm~y?(*o%%Mi+N@#%YvVW9ogiBlGzgZU%~>Bdqp8zuP?!y%LX1s3?G chgjmXh#MTq+W3kyUsIEzbc=6`)oP>gKe}ejw*UYD diff --git a/target/classes/com/onurdesk/iris/configuration/properties/OpenApiConfigurationProperties$Properties.class b/target/classes/com/onurdesk/iris/configuration/properties/OpenApiConfigurationProperties$Properties.class deleted file mode 100644 index 3c410e726093a13a60d8444960e6ed7494953dce..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4425 zcmcInU31h_7=F$+*`(XFT`FG-RY4c*7hUQ%yP!e=sk8;#S_KtJx1kN)CQFj7qF#9A zc;$>&I?i}2GY%KZ2s%3B=#9?!n?!t0lHJX=YvH2IG@JLF^PK0rU*~<(zyJN^Hvq@* zaVJvf(4ZJlkrtRMyQ>A)sdG9dXvz?_7w%0(vgmp26%AQ@7X(P8kX5eu- zpE0ZUyyf|v&Tx9afhX{!fL=D8Q`c%{MPSE3f;oz1Y4D;1A24tbPZ7Li1#^)W+Xn^{ z=vWV#8iNLgByrl3tiIenV&IV6-ox!Do7%~xf`P+wshdko>V$$%8+ZoKQg5!rffl&T zQy*q3g~|QAffw*1tz9<#<#BhBK4&6NWKcv&!%>6xm${wD`^b8x#hO{ES?8_@9Bk*x zjsEImF?hwmahwp?wQ8v%bs?O4;b)dkC&GZ&)Fb<1XD-t=rajwcmaqXgz3N?c2f)07n~yNl;d&s?@0Uk4M>XDN#!V zwnc!Jx!w@gEG_hRgi1~sA*fuhncWehIi6)LU70egaYm@;XC|gjQT+*45zq2#71>kj ziW&J91-kOdlk|LpRS(?yz0AzIHLq-)wq+7Nxq1H_mBp3up0@npjOzy)t_nQoz3;G3w)IAEYmYH8Ej)3R~ydev$J ze>=fY?>vdAm}1Z{I-A55G!KMBfc`=hR#}0U9l81dSH;oF+kf4AOFX0yI|aBxtOd$#qIlCI)rp zGIfx0lUjEqE>n~z)ySGgp4`F=X6cF@_y%*lzA5DKIo{x02S1lT!#pL0=oP$4No7o*kLS^=>HnZdL+UPeYS8(oi@Vqz ziJku=)(gnYx&SHiUxYaRN2t8K9IA|rv^iNol6OOG*sRi0X>(kj=GL(b`ISu?mM8Hk z-x^7)+0s$vSQzB~Y-yPx*0aMmpdGq{=Pt|n;i4iJa!S0S%fLrVqeV4bV$8!$dQPn` zjTO`3Qo6CkOyI8m_Q5+7=@J{#fmK|>do)C4crH^)(cM>I(zp)#X9^3H6ug9|QKqCa zT)VJHDIEsoJLvZ~p)e>yXpEi^_qee+=JY)#hFS;IF-q%H3`-|qP2~F77_7B|oA@>h z+_J8AS&d>nPWxo1$jQ*iFz^}WGxjr%{DPN(^>sJOh^X%7Vn-$mqe2JD99qJ1__pa< eNZ-KWQ$fJd9(pMS8#T^!Q(EKueO$*!$o&Uz#qF;E diff --git a/target/classes/com/onurdesk/iris/configuration/properties/OpenApiConfigurationProperties.class b/target/classes/com/onurdesk/iris/configuration/properties/OpenApiConfigurationProperties.class deleted file mode 100644 index c41a36d5ec7474e5d521e78a3f2cdc05ad15d808..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2887 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 HOyR^YJPH?E diff --git a/target/classes/com/onurdesk/iris/dto/QrCodeGenerationRequestDto.class b/target/classes/com/onurdesk/iris/dto/QrCodeGenerationRequestDto.class deleted file mode 100644 index 12393d4ede156a304722964057cab634f2ecf3de..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2584 zcmbVO>r&fB6h3PV=3*KHNeQGRqJb1U5K%~a32E8@g}MdW07Itzx0V)rLDIU?8gQSW zkJHYS$xJ)b2k1j}`mHQ%u%VQCM%HT2Io~<^os0C>-@pG!M4wSHLn%hvj`D34)IwK8 zhqer5WV>3~ufrAPiggi)kZY-eZSiAGM0!=LsjEfHHR-t`>?cO)EOk>4qn;NskoqN~ zu9^H^AN5jShWfKKKv_ofH+9XZTTAT;M#CEi{D|8g56bqA4rNeYGT`rI>6Ssx_#%pU zS(v?{EDf8zTjj=Kgu7hd;(jc2R^fH(`g#Xc)Ps^`G+QKQUlCXqd)pbVG*P-mlp9B!Pe12lWT3}>1 z!jCGd=D9JPIB|qTNXO5C`PvtZ>tZJhBs3{Io#Xhp)^hsPib9|D6NGX z9}q74;W8;XpyQz#Ph(~<8acn23=2lz%yfqL|90|w7&)6lSCso5`otHFM(N+dKybvG zG+aKodICQ&EHQc>AAX-lus-oU`+z%#s9qbxfR|+8o*PN_*A3Z@b}>slkT9@?LBAiPw1Mjzq72X_JuA1CWiV#%lUJh8MPHyYiA-za0uQs>O>(h_#E4F!6E4+3ff zdU+|(U^~#nwLqU=3Y2RHn!Fb1i%Wq<+JUC81;V#U2S;z|-Cx@{8u|}FuTaz`O&$Qd zaUU-LsPOodGKJYw8Z6A6Qm!zTKBbX%^x+u&X~QbX0PN$YF=-o5D%`A0Ihxn(cwAX& xTE==P4b>c!auDYr$X!TanpU8cqSd(nOs#y0=QUjExGvVQGM{RgwDcAA{R2(qR`CD; diff --git a/target/classes/com/onurdesk/iris/exception/handler/GenericExceptionHandler.class b/target/classes/com/onurdesk/iris/exception/handler/GenericExceptionHandler.class deleted file mode 100644 index a43bcad4a759e3a7072e3a11694c8e893f59302f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1829 zcmbtUTXP#V6#irb;_luIw^IHZt+%lSPEoNignc2atfs&iK4?CW*8=|Bs|NbZXOqK z(Zi(zF5?QrOd6#-^&7g)!!>TjHc6C+(gzHe<`;Tl|6Qfxpk@mw;VMJU>Ry%%)2~d@ zGWT=O<6T_yaJ_){Fvl?G@{YT%EZ-R(i34q(`McJ3{Vfr9wTeYuS!oX$@+}^0iSHAN zp5Zn@AJg*MstyiU6B!1=P^2Dar?80kJ(LUh05=$J{tqCAu@=EHEDyK$FU>qgQWXy$ zQcv4D^0i7#AmV4fG&1(Z^S0<(NyOXbDhP$~?+Yc2Y}a2MZ1naij+zdrNhcdpiOnQx z3A0Tspq*mc#vN{?llz-v#EO`rZoGld3d5`;p$@91lSD+rO>K90D1$+C4EKiXGT86) z{5Yjy$cX0*XNP9xH4M?r^y%SLM$Hb5_@gw)FS+BD6^8PjY|4(Jp*2*W+8ai=w75c* zxUiKFKO?atV@YMMDy8XGpw5xEJ0mH2AX5W3Lw|u&G6|+tABIsW`x|{J+|SX7kwgC|XBvBP{8)K>Q56IFVxb-W%r!O%1s9ek!3r9Hdq+Bc( zr+XjgUgG=_-gd%Eyi-2H{Lfg(;778{!1+2y;Q-U1iyWs(x`-Lf;e6`5)Wh%lCQrD7 z&nSi*%D9UPAuN&YIB|-WWqLAL!RNGIA;Wv5SQS`B4QsSjcj7l-Z9>RmJypJ+D!Xhq RNPa+1p1v39E`B&M`6n>E4O##I diff --git a/target/classes/com/onurdesk/iris/exception/handler/ValidationFailureExceptionHandler.class b/target/classes/com/onurdesk/iris/exception/handler/ValidationFailureExceptionHandler.class deleted file mode 100644 index 1f09a71a70f1a8adc79a9163b9ab0fea2f0f12b4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2666 zcmcguYgZFj6x}xu17Ru{MVlhU2P!WaTB{-fERP^q9!d~vZEGjVC0v}$r1Jpz)}PdV zL21|O>gWE5{*ZG%-p0X`QD@kvfnlxXPu5U8hNMHYAGpE~u zsS%jzhb%H}IF0rMIy9U?N?_=Hj0H{;!JLw2G3z+C;|io0Kdgc8DN|omuEz-H(3!w_ z4HxhsO%97$7y1zB>|3Z=HdHT@z()f8$6$I3Ac-_CYUswt0%z!UR&E$9%aU|mqa+2+ z9iR(iAGA6+Jc(`t)Al2Gs=}Dbc`hMiH1*cOW;CS zz(A@m+6BX$H9Wb-6=7KRjzHHzl7Cmp1g>stxDynp#j~pwNMaQC5*X8v!MMPUX64@W zyo%04RXSKN)gYo7yU4z@FDgqe`{lfJ){MN#omAMlb;D7?y0#hfHWf$c!Qy`s zJtNRlK8`_DUsJX?DFxLI^GWI|5RtD0CjVVLj-pdzy5Xjt-pO+UZ5xe5)p3-j1T-0t zSe-0V4YOOL3Jwj!hciIN3IQA)WP$UCd%IgX=4^@Z@r2woMQ z4CuBsr%D#7$>EtY|F2$-4+Ln^t3GLZz#|TImpRGf8giF`=Fe$Ezhw{^3+suTNNZxY73Sn zof*?`UCAD`HIOhaW0oH>!C!=7_$kBd99KH;g7^5qYlxph@dI81G0=&5UbU(M7VwZO zfiJL#SZMqQqSOS|2KSIy8rsJP0?Rj}`#2lHZ%FTTl{YEMINFuaG)g4G+`O~>~zv5(0Jex%12EAax~!QfUtSU!g+Fk%#iP`MZ?x6@1p(gkdwM8PJ1Np9RH Icy+4vFH+4Mj{pDw diff --git a/target/classes/com/onurdesk/iris/service/QrCodeService.class b/target/classes/com/onurdesk/iris/service/QrCodeService.class deleted file mode 100644 index 4cdafb4ce94dde27b2afc1caa55f238fdb7c6de6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4416 zcmcIn>3P55Yy}O=!?tTCI&+Rt>oW(z5Xh5TZ zCKJtQ5olkLH>8!7ZrYkjtk_8<&~nCc9d%Biv8#Jw7h2I~AZB70OaaUD(^io89XGw? z%bdOH`59}~PFT4@Ryld;D{HEJH|At*frrwznsD<4HK%-A<^&$?>YfahI-XVW#ZU|n zVUK}!6AvRUuurd9vz(kv+j^zGPRs~2QA$eSR99UgCDC$KMLVtG!qSrM+o^E>kby@8 zo=)5WcRt5sQdc$NP=eW{M+H+pPPuel;#eN;QM+FX-4A@Ck z_kw{AfhTK}4O61OKJ2KR%o})I;OUwre3A29YkWQ7JE?HJbJO-?IDjX$_NN4nbxqdn zy35$1?u8g0!y&!nu)x7OJGMo0t%0KgM{0zI*&OryoK&+6ytd*98uiC<6HlXya7o!o zFU3p`?xdmQ>`-^D&9inuxG*n00=-)Kk_?pXujR7VicDq#Mj<7YOgL_;gwH9N&uc5X zwH5t1VZbu+3{DbQHO5EM1q@_nk*o{? zhT`tJBmSSqpn)M1XKwi(nK|FiXJwLM9j$b5WLf%iIuk6-p^8vey|0XM zDbsOs;GBthTp?U?GGo(`q*PZOwamLfNmm5|$17EpcGeNL3s>d4d;o)mbZOuc1doGGYna@Im^6H7=7>|qWoztfiLAXNKUa;qkkPf?4bMa#*9GFM`h8e#=Yukk zs*<){0C%da6v#FNPzDMnZeUg5sTu=@WoSV}c?96)*=r*+qZb4Y)v{OBTKb*Ax`~^3 zFG-Qe3`udZPAdMFpoxh(Oi4p^Phj7elB}7vp;o+~E&9^*#TY(_4;lEdiI3o;B_i9g zy+xbny|5of@fFw|26WzIjKUT@U5CkQ^w)wkdQ+Qf4Tz7M_=KJ}nwPSLVA;T@N`0@I zadqi9Nv1z!T@5Zikt8%22+2vuwWkZYgzeAEgdQ&9lU`D07o_j#=hDk2wd}BpqZrjruO*8oRKTwDY<>1O~pt#!+UUiJ9$h41BNN;4$r~ zF|XjJw%4(JOxbGLOI?zB@+2`Z$!&8^+Lfx{6Aah>k4Ze!bB^w?uZ43!q)bysHN5UU zFz7~A&7M1T2##X{2d?ipdI$`JL4P3ajK0=a(~NrV-z>t!t7sS7Xk^LPYbT6YOUNuf zdulC8>QFs*v?a<6CvdcOQw^M!K>0Es!IdM^UnpEEC6miJPEA9a z4O~L_tT@3=zNZBnG2FtYf!lgC*8&LZBQl$vV`pX%%n6s363)6d zOaD!tSZaK#XR3j>h^l)pC8{F7a2TKDX;%Lc z4ICV7+QN~=4Rm%i6>)5^c?;cq>g{MQqAxyB#B*<9;1=HgIyFQV?5Aw->=eUM9wj^Z zdyHfA@zA1kw2xX#7U{b$;!CtFh8OT*qug(C zcMDg28{ftEdEYE3pdCNpZ3BKtK|jKexmCyK-z66leeoB1ix@8ALj1+}WD(Q1F$-*B zp^*-}yopyEu!Y28-zIqE-oP>gkfDdU!KMzn9y-hY?i=tQ7O(QJh_%7yj^_CL`fuR_ z{Y8B2PVjr^2+&KD`>>za$9Z@=%1oW);cbwgSMV%e!E=x}RS}NFb~qCF34R(TErFlm z=k)0$e}92r(x*Xm;aB)IWnaN={06_R3dirlaI`g0Ks&d#bJ-ulpu7%ko<_wRy#9&* Wt-LSt|Ihd - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/TEST-com.onurdesk.iris.service.QrCodeServiceTests.xml b/target/surefire-reports/TEST-com.onurdesk.iris.service.QrCodeServiceTests.xml deleted file mode 100644 index 640653d..0000000 --- a/target/surefire-reports/TEST-com.onurdesk.iris.service.QrCodeServiceTests.xml +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/target/surefire-reports/com.onurdesk.iris.SpringBootQrCodeGeneratorReaderApplicationTests.txt b/target/surefire-reports/com.onurdesk.iris.SpringBootQrCodeGeneratorReaderApplicationTests.txt deleted file mode 100644 index 2f752d1..0000000 --- a/target/surefire-reports/com.onurdesk.iris.SpringBootQrCodeGeneratorReaderApplicationTests.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.onurdesk.iris.SpringBootQrCodeGeneratorReaderApplicationTests -------------------------------------------------------------------------------- -Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3.685 s -- in com.onurdesk.iris.SpringBootQrCodeGeneratorReaderApplicationTests diff --git a/target/surefire-reports/com.onurdesk.iris.service.QrCodeServiceTests.txt b/target/surefire-reports/com.onurdesk.iris.service.QrCodeServiceTests.txt deleted file mode 100644 index e9acdd9..0000000 --- a/target/surefire-reports/com.onurdesk.iris.service.QrCodeServiceTests.txt +++ /dev/null @@ -1,4 +0,0 @@ -------------------------------------------------------------------------------- -Test set: com.onurdesk.iris.service.QrCodeServiceTests -------------------------------------------------------------------------------- -Tests run: 8, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3.827 s -- in com.onurdesk.iris.service.QrCodeServiceTests diff --git a/target/test-classes/com/onurdesk/iris/SpringBootQrCodeGeneratorReaderApplicationTests.class b/target/test-classes/com/onurdesk/iris/SpringBootQrCodeGeneratorReaderApplicationTests.class deleted file mode 100644 index 48e08e5651b12b092d98a88dd023bfeed66d3b9b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 614 zcmbtRJ5R$f5I(nsLR)AlEJzHDJS4mz79LWm1WN>>t-3qOQLatw$Z>$b#e~Gb58y{3 z&Y?(^m=GSm^F6-1^XHGxw|4+Ihph%wpjwAo3zlG6Kxe8Rl}wbL$lGv=krS|dMw;A( zfa>1yIb#Q?Vzj+1ODIx~j2>a` zasf48C7>OU#+xDy(T-G@aHJcUNF`%s$@}wQ%{>s4`oX^^p9*M2Mmv0Vfl)Cx-5wO$ zQHo>Ai6{27Hm=;1b31{t6FDtd0LF|QTB$OU{t?`%F*JpZ@QVE6$A8q|$V)BYq#Ti# z`rTWV;*+s68M2bn@f0~SBb~+o diff --git a/target/test-classes/com/onurdesk/iris/service/QrCodeServiceTests.class b/target/test-classes/com/onurdesk/iris/service/QrCodeServiceTests.class deleted file mode 100644 index 48f270576d5ceb19b726b6c9caecaf4bb1f0183d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 9184 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 Date: Sat, 11 Apr 2026 18:52:02 +0530 Subject: [PATCH 2/2] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- .idea/.gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.idea/.gitignore b/.idea/.gitignore index c28cfda..045de36 100644 --- a/.idea/.gitignore +++ b/.idea/.gitignore @@ -8,5 +8,5 @@ # Datasource local storage ignored files /dataSources/ /dataSources.local.xml -/target/ -/.settings/ \ No newline at end of file +# Note: repo-root paths such as /target/ and /.settings/ must be added to +# the repository-root .gitignore; patterns in this file only apply under .idea/. \ No newline at end of file