diff --git a/build.gradle b/build.gradle index 0ba9998..21fba1f 100644 --- a/build.gradle +++ b/build.gradle @@ -86,14 +86,7 @@ sonarqube { property "sonar.login", "admin" property "sonar.password", "0520" property "sonar.sources", "src" - property "sonar.language", "java" // 분석을 Java로 제한 + property "sonar.language", "java" property "sonar.sourceEncoding", "UTF-8" -// property "sonar.exclusions", "**/*Test*.*, **/Q*.JAVA" -// property "sonar.test.inclusions", "**/*Test.groovy, **/*Test.java" -// property "sonar.coverage.exclusions", "**/*Test*.*, **/Q*.java" -// property "sonar.java.junit.reportPaths", "${buildDir}/test-results" -// property "sonar.jacoco.reportPaths", "${buildDir}/jacoco/jacoco.exec" -// property "sonar.coverage.jacoco.xmlReportPaths", "build/reports/coverageReport/coverageReport.xml" // Test Coverage Report 생성한 경우 사용 -// property 'sonar.exclusions', 'com/xxx/**/*_.java,com/**/QMyEntity.java,....' } -} \ No newline at end of file +} diff --git a/src/main/resources/static/js/dashboard.js b/src/main/resources/static/js/dashboard.js index e5a00f5..cb9b2ec 100644 --- a/src/main/resources/static/js/dashboard.js +++ b/src/main/resources/static/js/dashboard.js @@ -1,3 +1,6 @@ +const currentDomain = window.location.origin +// const currentDomain = "http://localhost:8080" + const settingContainer = document.getElementById("settingContainer"); settingContainer.addEventListener("click", function (e) { window.location.href = "../html/setting-account.html"; @@ -19,8 +22,6 @@ menu04Container.addEventListener("click", function (e) { }); -// const currentDomain = window.location.origin -const currentDomain = "http://localhost:8080" // 사용자의 applicationTypeName값 let applicationTypeName; diff --git a/src/main/resources/static/js/personal-information.js b/src/main/resources/static/js/personal-information.js index a96d845..6d00fa1 100644 --- a/src/main/resources/static/js/personal-information.js +++ b/src/main/resources/static/js/personal-information.js @@ -1,4 +1,5 @@ -const currentDomain = "http://localhost:8080" +const currentDomain = window.location.origin +// const currentDomain = "http://localhost:8080" var imgElement = document.querySelector('.frame-icon59'); async function fetchMyInfo() { diff --git a/src/main/resources/static/js/record.js b/src/main/resources/static/js/record.js index b63059c..bbd14f7 100644 --- a/src/main/resources/static/js/record.js +++ b/src/main/resources/static/js/record.js @@ -1,5 +1,5 @@ -//const currentDomain = window.location.origin -const currentDomain = "http://localhost:8080" +const currentDomain = window.location.origin +// const currentDomain = "http://localhost:8080" const scorePattern = /^(?!-)(?!.*[a-zA-Z])(?!.*[!@#$%^&*()])(?!.*\d{5,})(?=.*\d)[^\s]+$/; async function fetchEvaluationItem() { diff --git a/src/main/resources/static/js/reset-password-auth.js b/src/main/resources/static/js/reset-password-auth.js index c895894..7f15cbb 100644 --- a/src/main/resources/static/js/reset-password-auth.js +++ b/src/main/resources/static/js/reset-password-auth.js @@ -1,5 +1,5 @@ -// const currentDomain = window.location.origin -const currentDomain = "http://localhost:8080" +const currentDomain = window.location.origin +// const currentDomain = "http://localhost:8080" // reset-password-auth.html 페이지의 JavaScript 부분 document.addEventListener("DOMContentLoaded", function () { diff --git a/src/main/resources/static/js/reset-password.js b/src/main/resources/static/js/reset-password.js index 16bc47b..f8cccdd 100644 --- a/src/main/resources/static/js/reset-password.js +++ b/src/main/resources/static/js/reset-password.js @@ -1,12 +1,12 @@ +const currentDomain = window.location.origin +// const currentDomain = "http://localhost:8080" + const emailInput = document.getElementById("email"); // 변경된 이메일 입력 요소 가져오기 const mergedEmailResult = document.getElementById("mergedEmail"); const sendEmail = document.getElementById("sendEmail"); emailInput.addEventListener("input", updateMergedEmail); -// const currentDomain = window.location.origin -const currentDomain = "http://localhost:8080" - let mail_result = 0 // 정규식 diff --git a/src/main/resources/static/js/setting-account.js b/src/main/resources/static/js/setting-account.js index 2055039..d18cd15 100644 --- a/src/main/resources/static/js/setting-account.js +++ b/src/main/resources/static/js/setting-account.js @@ -1,3 +1,6 @@ +const currentDomain = window.location.origin +// const currentDomain = "http://localhost:8080" + // dropdown const dropdown = document.querySelector(".dropdown"); const dropdownText = dropdown.querySelector(".text704"); @@ -6,11 +9,6 @@ const nameInput = document.getElementById("full-name") const emailInput = document.getElementById("email") var imgElement = document.querySelector('.frame-icon69'); - -// const currentDomain = window.location.origin -const currentDomain = "http://localhost:8080" - - document.addEventListener("DOMContentLoaded", function () { // application type 드롭 다운 데이터 처리 diff --git a/src/main/resources/static/js/sign-in.js b/src/main/resources/static/js/sign-in.js index b17d898..496853b 100644 --- a/src/main/resources/static/js/sign-in.js +++ b/src/main/resources/static/js/sign-in.js @@ -1,5 +1,5 @@ -// const currentDomain = window.location.origin -const currentDomain = "http://localhost:8080" +const currentDomain = window.location.origin +// const currentDomain = "http://localhost:8080" const emailInput = document.getElementById("email"); // 변경된 이메일 입력 요소 가져오기 const passwordInput = document.getElementById("password1"); diff --git a/src/main/resources/static/js/sign-up-email-auth.js b/src/main/resources/static/js/sign-up-email-auth.js index bc5b192..f0aca05 100644 --- a/src/main/resources/static/js/sign-up-email-auth.js +++ b/src/main/resources/static/js/sign-up-email-auth.js @@ -1,6 +1,5 @@ -// const currentDomain = window.location.origin -const currentDomain = "http://localhost:8080" - +const currentDomain = window.location.origin +// const currentDomain = "http://localhost:8080" const codeInput = document.getElementById("code"); const timerSpan = document.getElementById("timer"); diff --git a/src/main/resources/static/js/sign-up.js b/src/main/resources/static/js/sign-up.js index 7671162..d5eff09 100644 --- a/src/main/resources/static/js/sign-up.js +++ b/src/main/resources/static/js/sign-up.js @@ -1,3 +1,6 @@ +const currentDomain = window.location.origin +// const currentDomain = "http://localhost:8080" + const emailInput = document.getElementById("email"); // 변경된 이메일 입력 요소 가져오기 const passwordInput = document.getElementById("password1"); const passwordInput2 = document.getElementById("password2"); @@ -13,9 +16,6 @@ const dropdown = document.querySelector(".dropdown"); const dropdownText = dropdown.querySelector(".text704"); const dropdownContent = dropdown.querySelector(".dropdown-content"); -// const currentDomain = window.location.origin -const currentDomain = "http://localhost:8080" - let mail_result = 0 let passwordMachResult = false;