Skip to content

Commit

Permalink
[docs] Force to use BOM for dependency management
Browse files Browse the repository at this point in the history
  • Loading branch information
valfirst committed Aug 5, 2024
1 parent 91166a0 commit 8a3320f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/modules/plugins/pages/plugin-db.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ system (DBMS) can understand.
.build.gradle
[source,gradle,subs="attributes+"]
----
implementation(group: 'org.vividus', name: 'vividus-plugin-db', version: '{current-version}')
implementation(group: 'org.vividus', name: 'vividus-plugin-db')
----

. Define your JDBC driver and add appropriate dependency. Let's take PostgreSQL as an example:
Expand Down
2 changes: 1 addition & 1 deletion docs/modules/plugins/pages/plugin-shell.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The plugin provides functionality to execute commands via https://en.wikipedia.o
.build.gradle
[source,gradle,subs="attributes+"]
----
implementation(group: 'org.vividus', name: 'vividus-plugin-shell', version: '{current-version}')
implementation(group: 'org.vividus', name: 'vividus-plugin-shell')
----

== Properties
Expand Down
4 changes: 2 additions & 2 deletions docs/modules/user-guides/pages/execute-sql-against-csv.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ As a prerequisite add the required DB plugin dependency to the project `build.gr

[source,gradle,subs="attributes+"]
----
implementation(group: 'org.vividus', name: 'vividus-plugin-db', version: '{current-version}')
implementation(group: 'org.vividus', name: 'vividus-plugin-db')
----

== Execute SQL against CSV xref:ROOT:glossary.adoc#_resource[resource]
Expand All @@ -18,7 +18,7 @@ implementation(group: 'org.vividus', name: 'vividus-plugin-db', version: '{curre
+
[source,gradle,subs="attributes+"]
----
implementation(group: 'org.vividus', name: 'vividus-plugin-csv', version: '{current-version}')
implementation(group: 'org.vividus', name: 'vividus-plugin-csv')
implementation(group: 'net.sourceforge.csvjdbc', name: 'csvjdbc', version: '1.0.41')
----

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ tests end. The test data can be created from SQL files located in the project.
+
[source,gradle,subs="attributes+"]
----
implementation(group: 'org.vividus', name: 'vividus-plugin-db', version: '{current-version}')
implementation(group: 'org.vividus', name: 'vividus-plugin-db')
implementation(group: 'com.h2database', name: 'h2', version: '2.3.230')
----

Expand Down

0 comments on commit 8a3320f

Please sign in to comment.