You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: COMMANDS.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -300,7 +300,7 @@ The optional parameter `--source directory-path-to-the-source-folder-containing-
300
300
301
301
#### Environment Variable
302
302
303
-
-`IMPORT_GIT_LOG_DATA_IF_SOURCE_IS_PRESENT` supports the values `none`, `aggregated`and `full` (default). With it, you can switch off git import (`none`), import aggregated data for a smaller memory footprint (`aggregated`) or import all git commits and the files that where changed with them (`full`=default) .
303
+
-`IMPORT_GIT_LOG_DATA_IF_SOURCE_IS_PRESENT` supports the values `none`, `aggregated`, `full`and `plugin` (default). With it, you can switch off git import (`none`), import aggregated data for a smaller memory footprint (`aggregated`), import all commits with git log in a simple way (`full`) or let a plugin take care of git data (`plugin`= `""`=default) .
Copy file name to clipboardExpand all lines: scripts/configuration/template-neo4jv4-jqassistant.yaml
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -33,6 +33,11 @@ jqassistant:
33
33
- group-id: org.jqassistant.plugin
34
34
artifact-id: jqassistant-npm-plugin
35
35
version: 2.0.0
36
+
- group-id: de.kontext-e.jqassistant.plugin
37
+
artifact-id: jqassistant.plugin.git
38
+
version: 2.1.0
39
+
40
+
36
41
# The store configuration
37
42
store:
38
43
# URI of the database to connect to. Supported URI schemes are 'file' for embedded databases and 'bolt' for connecting to a running Neo4j instance (3.x+), e.g.
Copy file name to clipboardExpand all lines: scripts/configuration/template-neo4jv5-jqassistant.yaml
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,11 @@ jqassistant:
33
33
- group-id: org.jqassistant.plugin
34
34
artifact-id: jqassistant-npm-plugin
35
35
version: 2.0.0
36
-
36
+
- group-id: de.kontext-e.jqassistant.plugin
37
+
artifact-id: jqassistant.plugin.git
38
+
version: 2.1.0
39
+
40
+
37
41
# The store configuration
38
42
store:
39
43
# URI of the database to connect to. Supported URI schemes are 'file' for embedded databases and 'bolt' for connecting to a running Neo4j instance (3.x+), e.g.
Copy file name to clipboardExpand all lines: scripts/importGit.sh
+15-10Lines changed: 15 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -14,14 +14,14 @@ set -o errexit -o pipefail
14
14
# Overrideable Defaults
15
15
SOURCE_DIRECTORY=${SOURCE_DIRECTORY:-"source"}# Get the source repository directory (defaults to "source")
16
16
IMPORT_DIRECTORY=${IMPORT_DIRECTORY:-"import"}
17
-
IMPORT_GIT_LOG_DATA_IF_SOURCE_IS_PRESENT=${IMPORT_GIT_LOG_DATA_IF_SOURCE_IS_PRESENT:-"full"}# Select how to import git log data. Options: "none", "aggregated", "full". Default="full".
17
+
IMPORT_GIT_LOG_DATA_IF_SOURCE_IS_PRESENT=${IMPORT_GIT_LOG_DATA_IF_SOURCE_IS_PRESENT:-"plugin"}# Select how to import git log data. Options: "none", "aggregated", "full" and "plugin". Default="plugin".
18
18
19
19
# Default and initial values for command line options
0 commit comments