diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml
new file mode 100644
index 0000000..919ce1f
--- /dev/null
+++ b/.idea/codeStyles/Project.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml
new file mode 100644
index 0000000..a55e7a1
--- /dev/null
+++ b/.idea/codeStyles/codeStyleConfig.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/compiler.xml b/.idea/compiler.xml
new file mode 100644
index 0000000..c86ed3f
--- /dev/null
+++ b/.idea/compiler.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/encodings.xml b/.idea/encodings.xml
new file mode 100644
index 0000000..dfc8d74
--- /dev/null
+++ b/.idea/encodings.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/jarRepositories.xml b/.idea/jarRepositories.xml
new file mode 100644
index 0000000..712ab9d
--- /dev/null
+++ b/.idea/jarRepositories.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
new file mode 100644
index 0000000..f2b7dc3
--- /dev/null
+++ b/.idea/misc.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/runConfigurations/backend__package_.xml b/.idea/runConfigurations/backend__package_.xml
new file mode 100644
index 0000000..2a8b7dc
--- /dev/null
+++ b/.idea/runConfigurations/backend__package_.xml
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index e7c0108..23f6efb 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -4,8 +4,9 @@
-
-
+
+
+
@@ -24,6 +25,9 @@
+
+
+
@@ -45,6 +49,7 @@
-
+
@@ -91,7 +96,15 @@
1766794364306
-
+
+
+ 1766794599689
+
+
+
+ 1766794599689
+
+
@@ -100,7 +113,8 @@
-
+
+
true
diff --git a/jenkinsfile b/jenkinsfile
index 69cb070..40cba20 100644
--- a/jenkinsfile
+++ b/jenkinsfile
@@ -1,19 +1,9 @@
pipeline {
agent any
stages {
- stage('Build') {
+ stage('Build backend') {
steps {
- bat 'echo build'
- }
- }
- stage('Test'){
- steps {
- bat 'echo test'
- }
- }
- stage('Deploy') {
- steps {
- bat 'echo publish'
+ bat '.\\backend\\mvnw.cmd -DskipTests=true package'
}
}
}