commit b2940f3b91de712ed2fde979bca19da192a66f27 Author: Andrzej Lopko Date: Mon Feb 2 14:05:42 2026 +0100 Test 1 diff --git a/.cicd-config.json b/.cicd-config.json new file mode 100644 index 0000000..5882b2a --- /dev/null +++ b/.cicd-config.json @@ -0,0 +1,17 @@ +{ + "mappings": [ + { + "name": "test", + "openProjectId": 20, + "giteaRepository": "andyhurricane/Fake-repo---test", + "jenkinsJob": "andy-prod", + "isDefault": true + }, + { + "name": "keycloak", + "openProjectId": 18, + "giteaRepository": "andy-prod/Keycloak-theme", + "jenkinsJob": "andy-prod" + } + ] +} \ No newline at end of file diff --git a/.cicd-time-tracking.json b/.cicd-time-tracking.json new file mode 100644 index 0000000..3553080 --- /dev/null +++ b/.cicd-time-tracking.json @@ -0,0 +1,76 @@ +{ + "entries": [ + { + "workPackageId": 202, + "startTime": "2026-01-14T17:20:54.299729400Z", + "endTime": "2026-01-14T17:20:57.469715800Z", + "durationSeconds": 3 + }, + { + "workPackageId": 202, + "startTime": "2026-01-14T17:20:59.217953Z", + "endTime": "2026-01-14T17:21:00.920562500Z", + "durationSeconds": 1 + }, + { + "workPackageId": 202, + "startTime": "2026-01-14T17:21:03.741890900Z", + "endTime": "2026-01-14T17:21:09.570165100Z", + "durationSeconds": 5 + }, + { + "workPackageId": 214, + "startTime": "2026-01-14T18:34:08.131243400Z", + "endTime": "2026-01-14T18:34:17.898814500Z", + "durationSeconds": 9 + }, + { + "workPackageId": 213, + "startTime": "2026-01-15T22:20:22.669993500Z", + "endTime": "2026-01-15T22:20:27.430327600Z", + "durationSeconds": 4 + }, + { + "workPackageId": 213, + "startTime": "2026-01-15T22:28:41.207611200Z", + "endTime": "2026-01-15T22:28:49.526002300Z", + "durationSeconds": 8 + }, + { + "workPackageId": 213, + "startTime": "2026-01-15T22:32:19.917453Z", + "endTime": "2026-01-15T22:32:29.521807300Z", + "durationSeconds": 9 + }, + { + "workPackageId": 214, + "startTime": "2026-01-15T22:56:44.950837500Z", + "endTime": "2026-01-15T22:56:50.560861400Z", + "durationSeconds": 5 + }, + { + "workPackageId": 214, + "startTime": "2026-01-15T23:02:30.012505800Z", + "endTime": "2026-01-15T23:02:36.114798700Z", + "durationSeconds": 6 + }, + { + "workPackageId": 213, + "startTime": "2026-01-16T12:57:49.418138300Z", + "endTime": "2026-01-16T12:59:22.412212900Z", + "durationSeconds": 92 + }, + { + "workPackageId": 253, + "startTime": "2026-01-23T13:10:48.679462300Z", + "endTime": "2026-01-23T13:10:54.668440300Z", + "durationSeconds": 5 + }, + { + "workPackageId": 213, + "startTime": "2026-01-24T07:50:32.969599Z", + "endTime": "2026-01-24T07:50:37.106105900Z", + "durationSeconds": 4 + } + ] +} \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f68d109 --- /dev/null +++ b/.gitignore @@ -0,0 +1,29 @@ +### IntelliJ IDEA ### +out/ +!**/src/main/**/out/ +!**/src/test/**/out/ + +### Eclipse ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache +bin/ +!**/src/main/**/bin/ +!**/src/test/**/bin/ + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ + +### VS Code ### +.vscode/ + +### Mac OS ### +.DS_Store \ No newline at end of file diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..a0ccf77 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,5 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Environment-dependent path to Maven home directory +/mavenHomeManager.xml diff --git a/.idea/cicd-plugin.xml b/.idea/cicd-plugin.xml new file mode 100644 index 0000000..d13fa80 --- /dev/null +++ b/.idea/cicd-plugin.xml @@ -0,0 +1,7 @@ + + + + + \ No newline at end of file diff --git a/.idea/dictionaries/project.xml b/.idea/dictionaries/project.xml new file mode 100644 index 0000000..4787784 --- /dev/null +++ b/.idea/dictionaries/project.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..31cb127 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..419f77d --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/untitled3.iml b/.idea/untitled3.iml new file mode 100644 index 0000000..d6ebd48 --- /dev/null +++ b/.idea/untitled3.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/src/Main.java b/src/Main.java new file mode 100644 index 0000000..1d9d4e3 --- /dev/null +++ b/src/Main.java @@ -0,0 +1,74 @@ +//TIP To Run code, press or +// click the icon in the gutter. +public class Main { + + +/* TODO OP: Test bez nadrzędnego rodzica + @type: Wydanie + @assignee: andy@andyhurricane.pl + @priority: High + @startDate: 2024-01-15 + @dueDate: 2024-01-30 + @CustomField2:user andy@andyhurricane.pl + @CustomField3:user:list andy@andyhurricane.pl + @CustomField4:option:list "Backend" + @CustomField5:option "Backend" + @subtask [Epika] Fix login validation + @assignee: andy@andyhurricane.pl + @priority: Critical + @CustomField2:user andy@andyhurricane.pl + @CustomField3:user:list andy@andyhurricane.pl + @CustomField4:option:list "Backend" + @CustomField5:option "Backend" + @subtask [Błąd] Add OAuth support + @assignee: andy@andyhurricane.pl + @CustomField2:user andy@andyhurricane.pl + @CustomField3:user:list andy@andyhurricane.pl + @CustomField4:option:list "Backend" + @CustomField5:option "Backend" +*/ +public static void main(String[] args) { + //TIP Press with your caret at the highlighted text + // to see how IntelliJ IDEA suggests fixing it. + System.out.printf("Hello and welcome!"); + + new Test().test(); + for (int i = 1; i <= 5; i++) { + //TIP Press to start debugging your code. We have set one breakpoint + // for you, but you can always add more by pressing . + System.out.println("i = " + i); + } + + System.out.printf("Hello and welcome!"); + } + + +/* TODO OP: Test z istniejącym rodzicem + @type: Epika + @parent: 213 + @assignee: andy@andyhurricane.pl + @priority: High + @startDate: 2024-01-15 + @dueDate: 2024-01-30 + @CustomField2:user andy@andyhurricane.pl + @CustomField3:user:list andy@andyhurricane.pl + @CustomField4:option:list 1,4 + @CustomField5:option 1 + @subtask [Zadanie] Fix login validation + @assignee: andy@andyhurricane.pl + @priority: Critical + @CustomField2:user andy@andyhurricane.pl + @CustomField3:user:list andy@andyhurricane.pl + @CustomField4:option:list "Frontend" + @CustomField5:option "Backend" + @subtask [Zadanie] Add OAuth support + @assignee: andy@andyhurricane.pl +*/ + + +public static void test() { + +} +} + + diff --git a/src/Test.java b/src/Test.java new file mode 100644 index 0000000..23b9823 --- /dev/null +++ b/src/Test.java @@ -0,0 +1,6 @@ +public class Test { + + public void test() { + System.out.printf("Hello and welcome!"); + } +} \ No newline at end of file diff --git a/untitled3.iml b/untitled3.iml new file mode 100644 index 0000000..c90834f --- /dev/null +++ b/untitled3.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file