diff options
author | Tharre <tharre3@gmail.com> | 2018-04-29 19:25:53 +0200 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2018-05-01 23:09:54 +0200 |
commit | acd6b64e494192f7c73032240029bfa53dccb362 (patch) | |
tree | 62450749e6992a9822fdc9989778c552b75b13c5 | |
parent | 6c9280bde87fffc3a4d7ad884b5a631ce3659367 (diff) | |
download | sepm-groupproject-acd6b64e494192f7c73032240029bfa53dccb362.tar.gz sepm-groupproject-acd6b64e494192f7c73032240029bfa53dccb362.tar.xz sepm-groupproject-acd6b64e494192f7c73032240029bfa53dccb362.zip |
Update IntelliJ configuration
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | .idea/.gitignore | 8 | ||||
-rw-r--r-- | .idea/dataSources.xml | 11 | ||||
-rw-r--r-- | .idea/sqldialects.xml | 6 |
4 files changed, 25 insertions, 3 deletions
@@ -83,6 +83,7 @@ buildNumber.properties ### Intellij ### .idea_modules/ *.iws +*.iml out/ ### Eclipse ### @@ -115,4 +116,4 @@ nbbuild/ dist/ nbdist/ nbactions.xml -.nb-gradle/
\ No newline at end of file +.nb-gradle/ diff --git a/.idea/.gitignore b/.idea/.gitignore index e99080c..26b9374 100644 --- a/.idea/.gitignore +++ b/.idea/.gitignore @@ -1,3 +1,7 @@ -workspace.xml -tasks.xml +dataSources.local.xml +dataSources/ libraries/ +sonarlint/ +tasks.xml +uiDesigner.xml +workspace.xml diff --git a/.idea/dataSources.xml b/.idea/dataSources.xml new file mode 100644 index 0000000..f8c1056 --- /dev/null +++ b/.idea/dataSources.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project version="4"> + <component name="DataSourceManagerImpl" format="xml" multifile-model="true"> + <data-source source="LOCAL" name="bev" uuid="61a88d33-7bb2-4a8d-b38f-9a1d90f0fe06"> + <driver-ref>h2.unified</driver-ref> + <synchronize>true</synchronize> + <jdbc-driver>org.h2.Driver</jdbc-driver> + <jdbc-url>jdbc:h2:~/bev</jdbc-url> + </data-source> + </component> +</project>
\ No newline at end of file diff --git a/.idea/sqldialects.xml b/.idea/sqldialects.xml new file mode 100644 index 0000000..7562c0f --- /dev/null +++ b/.idea/sqldialects.xml @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project version="4"> + <component name="SqlDialectMappings"> + <file url="file://$PROJECT_DIR$/src/main/resources/sql/database.sql" dialect="H2" /> + </component> +</project>
\ No newline at end of file |