From b75cfe14df09be57a7d31c72b5f8d672fc2265c9 Mon Sep 17 00:00:00 2001 From: Kai Moritz Date: Mon, 6 Apr 2026 19:02:02 +0200 Subject: [PATCH] Transfomed HTML, that was missinterpred by the parser, into valid markdown --- src/site/markdown/configuration.md | 54 +++++++++++++++--------------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/src/site/markdown/configuration.md b/src/site/markdown/configuration.md index 6d541d6a..ffb5fae8 100644 --- a/src/site/markdown/configuration.md +++ b/src/site/markdown/configuration.md @@ -132,42 +132,42 @@ hibernate.connection.password= the plugin-configuration, to be sure to have a separate database for testing):

-
 
-<properties>
-  <hibernate.connection.driver_class>org.hsqldb.jdbcDriver</hibernate.connection.driver_class>
-  <hibernate.dialect>org.hibernate.dialect.HSQLDialect</hibernate.dialect>
-  <hibernate.connection.url><![CDATA[jdbc:hsqldb:res:org.my.path.production_db]]></hibernate.connection.url>
-  <hibernate.connection.username>sa</hibernate.connection.username>
-  <hibernate.connection.password></hibernate.connection.password>
-</properties>
+```
+
+  org.hsqldb.jdbcDriver
+  org.hibernate.dialect.HSQLDialect
+  
+  sa
+  
+
 
 ...
 
-<plugins>
+
 
   ...
 
-  <plugin>
-    <groupId>de.juplo</groupId>
-    <artifactId>hibernate-maven-plugin</artifactId>
-    <version>${project.version}</version>
-    <executions>
-      <execution>
-        <goals>
-          <goal>drop</goal>
-          <goal>create</goal>
-        </goals>
-      </execution>
-    </executions>
-    <configuration>
-      <url><![CDATA[jdbc:hsqldb:target/db/testdb;shutdown=true]]></url>
-    </configuration>
-  </plugin>
+  
+    de.juplo
+    hibernate-maven-plugin
+    ${project.version}
+    
+      
+        
+          drop
+          create
+        
+      
+    
+    
+      
+    
+  
 
-<plugins>
+
+```
 
-  

This way, you can reuse the same properties to provide a default-configurationthe, that is build into your application, and -- 2.39.5