diff --git a/.gitignore b/.gitignore
index 4e338ee..b0f32a9 100644
--- a/.gitignore
+++ b/.gitignore
@@ -38,3 +38,4 @@ build/
.DS_Store
ri_log
action.xml
+.idea/
diff --git a/.idea/workspace.xml b/.idea/workspace.xml
deleted file mode 100644
index 04e69d0..0000000
--- a/.idea/workspace.xml
+++ /dev/null
@@ -1,174 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1663575347472
-
-
- 1663575347472
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Jenkinsfile b/Jenkinsfile
index 7b04363..c1f9ad7 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -17,11 +17,10 @@ pipeline{
}
stage('Build'){
steps{
- sh 'mvn -Dmaven.test.failure.ignore=true install test'
+ sh 'mvn -Dmaven.test.failure.ignore=true install'
}
post{
success{
- junit 'target/surefire-reports/**/*.xml'
archiveArtifacts artifacts: 'target/*.jar, *.pom', fingerprint: true, followSymlinks: false, onlyIfSuccessful: true
}
}
diff --git a/pom.xml b/pom.xml
index 1ee1419..fb9ada4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -7,7 +7,15 @@
org.leolo
OSM-extract
1.0-SNAPSHOT
-
+
+ src/main/java
+ src/test/java
+
+
+ src/main/resources
+
+
+
18
18