diff --git a/.github/workflows/devnet-bundle-release.yml b/.github/workflows/devnet-bundle-release.yml
index 128585e..273d217 100644
--- a/.github/workflows/devnet-bundle-release.yml
+++ b/.github/workflows/devnet-bundle-release.yml
@@ -28,3 +28,6 @@ jobs:
release_version: ${{ github.event.inputs.releaseVersion }}
next_dev_version: ${{ github.event.inputs.nextDevVersion }}
ms_teams_webhook_uri: ${{secrets.MS_TEAMS_WEBHOOK_URI}}
+ demo_user: ${{secrets.DEMO_USER}}
+ demo_user_pw: ${{secrets.DEMO_USER_PW}}
+ demo_url: ${{secrets.DEMO_URL}}
diff --git a/.vscode/extensions.json b/.vscode/extensions.json
new file mode 100644
index 0000000..67efcac
--- /dev/null
+++ b/.vscode/extensions.json
@@ -0,0 +1,8 @@
+{
+ "recommendations": [
+ "dbaeumer.vscode-eslint",
+ "Vue.volar",
+ "Esri.arcgis-jsapi-snippets",
+ "ctjdr.vscode-apprt-bundles"
+ ]
+}
\ No newline at end of file
diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 0000000..e8ab909
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,15 @@
+{
+ // Use IntelliSense to learn about possible attributes.
+ // Hover to view descriptions of existing attributes.
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "type": "chrome",
+ "request": "launch",
+ "name": "Launch Chrome against localhost",
+ "url": "http://localhost:9090",
+ "webRoot": "${workspaceFolder}/src/main"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
index 93297ba..d1643d5 100644
--- a/.vscode/tasks.json
+++ b/.vscode/tasks.json
@@ -3,33 +3,54 @@
"tasks": [
{
"label": "Initialize",
+ "detail": "Initialize map.apps for Developers project",
"type": "shell",
"command": "mvn initialize",
"group": "build"
},
{
- "label": "Run HTTP Server",
+ "label": "Run",
+ "detail": "Run map.apps for Developers development server",
"type": "shell",
- "command": "mvn jetty:run -Denv=dev '-Dlocal.configfile=./build.properties'",
- "group": "build"
+ "command": "mvn",
+ "args": ["clean", "compile", "-Denv=dev", "'-Dlocal.configfile=./build.properties'", "-Pinclude-mapapps-deps"],
+ "group": "build",
+ "isBackground": true
},
{
- "label": "Run stand-alone HTTP Server",
+ "label": "Run (Remote project mode)",
+ "detail": "Run map.apps for Developers development server in 'remote project' mode",
"type": "shell",
- "command": "mvn jetty:run -Denv=dev '-Dlocal.configfile=./build.properties' -Pinclude-mapapps-deps",
- "group": "build"
+ "command": "mvn",
+ "args": ["clean", "compile", "-Denv=dev", "'-Dlocal.configfile=./build.properties'"],
+ "group": "build",
+ "isBackground": true
},
{
"label": "Compress",
+ "detail": "Prepare bundles and apps for deployment on a map.apps instance",
"type": "shell",
- "command": "mvn install -P compress",
- "group": "build"
+ "command": "mvn",
+ "args": ["clean", "install", "-Pcompress"],
+ "group": "build",
+ "presentation": {
+ "reveal": "always",
+ "panel": "dedicated"
+ }
},
{
"label": "Clean",
"type": "shell",
"command": "mvn clean",
"group": "build"
+ },
+ {
+ "label": "Watch types",
+ "detail": "Start TypeScript compiler in watch mode",
+ "type": "npm",
+ "script": "watch-types",
+ "group": "build",
+ "problemMatcher": [],
}
]
}
diff --git a/RELEASE.md b/RELEASE.md
index f9ba788..e7a3ad9 100644
--- a/RELEASE.md
+++ b/RELEASE.md
@@ -1,4 +1,4 @@
✅ Tested for map.apps 4.18.0 / Linie 4
#### Release Notes
-- SNAPSHOT-Release
+- autogenerated SNAPSHOT-Release
diff --git a/build.properties b/build.properties
index e97229c..8f06767 100644
--- a/build.properties
+++ b/build.properties
@@ -1,5 +1,5 @@
#
-# Copyright (C) 2023 con terra GmbH (info@conterra.de)
+# Copyright (C) 2024 con terra GmbH (info@conterra.de)
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/gulpfile.js b/gulpfile.js
index 9d4b8c7..7b58279 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2023 con terra GmbH (info@conterra.de)
+ * Copyright (C) 2024 con terra GmbH (info@conterra.de)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/pom.xml b/pom.xml
index ad2b760..942dc9d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,7 +1,7 @@
+
-